.news-portal {
    max-width: 80rem;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.news-back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #C8102E;
    text-decoration: none;
}

.news-back-link:hover {
    text-decoration: underline;
}

.news-portal-title {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.news-search-form {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    width: 100%;
}

.news-search-field {
    position: relative;
    flex: 1;
    min-width: 0;
}

.news-search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 0.85rem;
    pointer-events: none;
}

.news-search-input {
    width: 100%;
    padding: 0.6rem 0.75rem 0.6rem 2.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background: #fff;
}

.news-search-input:focus {
    outline: none;
    border-color: #C8102E;
    box-shadow: 0 0 0 2px rgba(200, 16, 46, 0.12);
}

.news-search-btn {
    flex-shrink: 0;
    padding: 0.6rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
}

.news-search-btn:hover {
    border-color: #C8102E;
    color: #C8102E;
}

.news-search-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    color: #6b7280;
    text-decoration: none;
    flex-shrink: 0;
}

.news-search-clear:hover {
    color: #C8102E;
    background: #fef2f2;
}

.news-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.news-category-tab {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4b5563;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    text-decoration: none;
    transition: all 0.15s;
}

.news-category-tab:hover {
    border-color: #C8102E;
    color: #C8102E;
}

.news-category-tab--active {
    background: #C8102E;
    border-color: #C8102E;
    color: #fff;
}

.news-results-meta {
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0 0 1rem;
}

.news-portal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .news-portal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .news-portal-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .news-portal-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.news-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s;
    height: 100%;
}

.news-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.news-card-cover-img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
}

.news-card-cover {
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card-cover--gradient {
    color: #fff;
    font-size: 1.875rem;
    font-weight: 700;
}

.news-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #C8102E;
    margin-bottom: 0.35rem;
}

.news-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.news-card-excerpt {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-date {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: auto;
}

.news-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 2rem;
}

.news-pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.5rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    background: #fff;
    transition: border-color 0.15s, color 0.15s;
}

.news-pagination-btn:hover {
    border-color: #C8102E;
    color: #C8102E;
}

.news-pagination-btn--active {
    background: #C8102E;
    border-color: #C8102E;
    color: #fff;
}

.news-empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #fff;
    border-radius: 0.75rem;
    border: 1.5px dashed #e5e7eb;
}

.news-empty-state > i {
    font-size: 2rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.news-empty-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem;
}

.news-empty-text {
    font-size: 0.9rem;
    color: #6b7280;
    max-width: 28rem;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.news-empty-link {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #C8102E;
    text-decoration: none;
}

.news-empty-link:hover {
    text-decoration: underline;
}
