﻿/* THREE COLUMN GRID */
.editorial-news-layout-3col {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.7fr;
    gap: 24px;
    align-items: stretch;
}

/* FEATURED NEWS */
.editorial-lead-story {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,.08);
    transition: transform .2s ease;
}

    .editorial-lead-story:hover {
        transform: translateY(-4px);
    }

.editorial-lead-media img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.editorial-featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e50914;
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 600;
}

.editorial-lead-content {
    padding: 20px;
}

.editorial-lead-title {
    font-size: 22px;
    font-weight: 700;
    margin: 12px 0;
    color: #111;
}

.editorial-lead-summary {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* SIDE STORIES */
.editorial-side-stories {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.editorial-story-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 12px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
    transition: background .2s ease;
}

    .editorial-story-item:hover {
        background: #f9fafb;
    }

.editorial-story-image img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.editorial-story-title {
    font-size: 15px;
    font-weight: 600;
    margin: 4px 0;
}

.editorial-story-summary {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

/* BLANK COLUMN */
.editorial-blank-column {
    min-height: 100%;
    background: transparent;
}

.editorial-digest-panel {
    background: #0f172a;
    border-radius: 8px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    padding: 24px;
}

.editorial-digest-panel h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.editorial-digest-panel p {
    color: rgba(255,255,255,.76);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.editorial-digest-count {
    border-top: 1px solid rgba(255,255,255,.18);
    border-bottom: 1px solid rgba(255,255,255,.18);
    display: grid;
    gap: 2px;
    padding: 16px 0;
}

.editorial-digest-count strong {
    color: #38bdf8;
    font-size: 34px;
    line-height: 1;
}

.editorial-digest-count span {
    color: rgba(255,255,255,.7);
    font-size: 13px;
}

/* GENERAL */
.editorial-section-title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
}

.editorial-section-description {
    font-size: 14px;
    color: #555;
    max-width: 720px;
}

.editorial-divider {
    height: 1px;
    background: #ccc;
    margin: 20px 0;
}
