/* Convention News Hero Section */
.news-hero {
    position: relative;
    min-height: 45vh;
    background-color: #000065;
    background-image: url('../images/convention_news_hero.jpg'); /* Expected path for your hero background */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 120px 20px 60px; /* Accounts for fixed header */
}

.news-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.news-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.news-hero .hero-content h1 {
    font-size: 2.5rem;
    margin: 0;
    font-family: "Archivo Black", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* News Section Layout */
.news-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 15px;
}

.header-left .eyebrow {
    display: block;
    color: #9e2c74; /* Maroon */
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.header-left h2 {
    margin: 0;
    color: #000;
    font-size: 2.2rem;
    font-weight: bold;
}

.header-right .view-all-link {
    display: flex;
    align-items: center;
    color: #000065; /* Navy */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.header-right .view-all-link .material-symbols-outlined {
    margin-left: 5px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.header-right .view-all-link:hover {
    color: #9e2c74;
}

.header-right .view-all-link:hover .material-symbols-outlined {
    transform: translateX(4px);
}

/* Card Grid Architecture */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* News Card */
.news-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Top Visual Container */
.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #e0e0e0;
    flex-shrink: 0;
    overflow: hidden;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cat-maroon { background-color: #9e2c74; }
.cat-navy { background-color: #000065; }
.cat-gold { background-color: #d4af37; color: #000; }

/* Content Body */
.card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.timestamp {
    display: block;
    color: #9e2c74;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-title {
    margin: 0 0 12px 0;
    font-size: 1.3rem;
    font-weight: bold;
    color: #222;
    line-height: 1.3;
}

.card-snippet {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer Action */
.read-more {
    display: inline-flex;
    align-items: center;
    color: #000065;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto;
}

.read-more .material-symbols-outlined {
    font-size: 1.1rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #9e2c74;
}

.read-more:hover .material-symbols-outlined {
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .news-hero {
        min-height: 40vh;
    }
}