/* ==========================================
   3-COLUMN NEWSPAPER LAYOUT
   ========================================== */

/* LEFT COLUMN: Hero Article (50%) */
.news-hero-card {
    background: #fff;
    margin-bottom: 20px;
    padding: 0;
}

.hero-img-container {
    width: 100%;
    height: 380px;
    overflow: hidden;
    margin-bottom: 10px;
}

.hero-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-hero-card:hover .hero-img-container img {
    transform: scale(1.03);
}

.hero-title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0 0 8px 0;
    color: #1a1a1a;
}

.hero-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.hero-title a:hover {
    color: #DC143C;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* MIDDLE COLUMN: Secondary Stories (25%) */
.news-secondary-card {
    background: #fafafa;
    margin-bottom: 18px;
    padding: 12px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.news-secondary-card:hover {
    background: #f0f0f0;
}

.secondary-img-container {
    width: 100%;
    height: 160px;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 3px;
}

.secondary-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-secondary-card:hover .secondary-img-container img {
    transform: scale(1.05);
}

.secondary-title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0;
    color: #2C3E50;
}

.secondary-title a {
    color: #2C3E50;
    text-decoration: none;
}

.secondary-title a:hover {
    color: #DC143C;
}

/* RIGHT COLUMN: List Items (25%) */
.news-list-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
}

.news-list-item:last-child {
    border-bottom: none;
}

.list-img-thumb {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    overflow: hidden;
    margin-right: 12px;
    border-radius: 3px;
}

.list-img-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-list-item:hover .list-img-thumb img {
    transform: scale(1.1);
}

.list-content {
    flex: 1;
}

.list-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: #333;
}

.list-title a {
    color: #333;
    text-decoration: none;
}

.list-title a:hover {
    color: #DC143C;
}

/* Responsive Adjustments for 3-Column Layout */
@media (max-width: 991px) {
    .hero-img-container {
        height: 300px;
    }

    .hero-title {
        font-size: 24px;
    }

    .secondary-img-container {
        height: 140px;
    }
}

@media (max-width: 767px) {
    .news-hero-card {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
    }

    .hero-img-container {
        height: auto;
        aspect-ratio: 1 / 1;
        margin-bottom: 0;
    }

    .hero-title {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 40px 15px 15px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
        margin: 0;
        font-size: 20px;
    }

    .hero-title a {
        color: white !important;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    }

    .hero-description {
        display: none;
    }
}

.news-secondary-card {
    margin-bottom: 15px;
}

.secondary-img-container {
    height: 180px;
}