/* ============================================
   News List Page Styles
   ============================================ */

.page-title-section {
    margin-top: 65px;
    padding: 60px 0;
    background: var(--bg-gray);
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

.news-filter-section {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-gray);
}

.news-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.filter-tab.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
}

.news-list-section {
    padding: 80px 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.news-card-content {
    padding: 25px;
}

.news-meta {
    margin-bottom: 15px;
}

.news-date {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-read-more {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.news-card:hover .news-read-more {
    gap: 12px;
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

