/* News & Events Page Stylings */
.news-hero {
    height: 60vh !important;
}

/* Barrier Section Transition */
.barrier-section {
    background: #fff;
    padding: 100px 0 60px 0;
    text-align: center;
}

.barrier-wrapper h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

.barrier-line {
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    margin: 0 auto;
}

.news-page-section {
    padding: 100px 0;
    background:
        linear-gradient(135deg, rgba(230, 30, 36, 0.3) 0%, rgba(183, 28, 28, 0.4) 100%),
        url('../../images/stadium_background.webp') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.news-grid-container {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr;
    gap: 60px;
}

.section-title {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 5px solid var(--primary-red);
    padding-left: 15px;
}

/* 1. Featured Latest Update */
.featured-news-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 50px;
}

.featured-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.featured-image {
    height: 450px;
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    padding: 40px;
}

.featured-content h3 {
    font-size: 36px;
    margin: 15px 0;
    color: var(--dark-gray);
    line-height: 1.2;
}

.featured-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* 2. Archive Grid - Premium News Cards */
.news-articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.premium-news-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.premium-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-author {
    font-size: 13px;
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.news-card-body h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-gray);
    line-height: 1.4;
}

.read-more-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

/* Events Sidebar */
.glass-event-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.event-type-tag {
    background: var(--primary-red);
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
}

.glass-event-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.event-details p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Pagination */
.premium-pagination {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-link {
    padding: 12px 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 700;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.news-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-red);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 12px;
    z-index: 5;
}

.editorial-cta {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    color: white;
    text-align: center;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.editorial-cta h3 {
    margin-bottom: 10px;
    font-weight: 800;
}

/* Responsive */
@media (max-width: 1200px) {
    .news-grid-container {
        grid-template-columns: 1.8fr 1.2fr;
    }
}

@media (max-width: 992px) {
    .news-grid-container {
        grid-template-columns: 1fr;
    }

    .featured-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .news-articles-grid {
        grid-template-columns: 1fr;
    }

    .featured-content h3 {
        font-size: 28px;
    }
}