/* Import premium fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Source+Sans+3:wght@300;400;600&display=swap');

/* Header */
.news-header {
    background-color: #1a1a1a;
    padding: 60px 40px 50px 40px;
    text-align: center;
    border-bottom: 1px solid #D4AF37;
}

.news-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: white;
    margin-bottom: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.news-header p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    color: #888;
    margin: 0 auto;
    max-width: 550px;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Grid */
.news-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    justify-content: flex-start;
    background-color: #fafafa;
}

/* Hero card — first article gets full width */
.news-card:first-child {
    flex: 0 0 100%;
    max-width: 100%;
    flex-direction: row;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #e4e4e4;
}

.news-card:first-child .news-card-image {
    width: 55%;
    height: 420px;
    flex-shrink: 0;
}

.news-card:first-child .news-card-content {
    padding: 50px;
    justify-content: center;
}

.news-card:first-child .news-card-title {
    font-size: 32px;
    -webkit-line-clamp: 4;
    line-height: 1.25;
}

.news-card:first-child .news-card-summary {
    font-size: 15px;
    -webkit-line-clamp: 4;
    line-height: 1.7;
}

/* Regular cards */
.news-card {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    background-color: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e4e4e4;
    border-right: 1px solid #e4e4e4;
}

.news-card:hover {
    background-color: #f5f5f5;
    transform: none;
    box-shadow: none;
}

/* Card image */
.news-card-image {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.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.04);
}

.news-card-no-image {
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-card-no-image p {
    font-family: 'Cormorant Garamond', serif;
    color: #D4AF37;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
}

/* Source badge */
.news-card-source {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #D4AF37;
    color: white;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 0;
}

/* Card content */
.news-card-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    border: none;
    padding: 0;
    transition: color 0.2s;
}

.news-card:hover .news-card-title {
    color: #D4AF37;
}

.news-card-summary {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    color: #777;
    line-height: 1.65;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    font-weight: 300;
}

/* Card footer */
.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    margin-top: auto;
}

.news-card-date {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    color: #bbb;
    letter-spacing: 0.3px;
}

.news-card-read {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #D4AF37;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Empty state */
.news-empty {
    width: 100%;
    text-align: center;
    padding: 80px;
    font-family: 'Source Sans 3', sans-serif;
    color: #888;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 992px) {
    .news-card:first-child {
        flex-direction: column;
    }

    .news-card:first-child .news-card-image {
        width: 100%;
        height: 280px;
    }

    .news-card:first-child .news-card-content {
        padding: 30px;
    }

    .news-card:first-child .news-card-title {
        font-size: 26px;
    }

    .news-card {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .news-header {
        padding: 40px 20px 35px 20px;
    }

    .news-header h1 {
        font-size: 38px;
        letter-spacing: 3px;
    }

    .news-card {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .news-card-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .news-header h1 {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .news-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .news-card-image {
        height: 200px;
    }

    .news-card-title {
        font-size: 18px;
    }
}