/* ============================================================
   EDN Trending Stories — stylesheet
   Matches the Eswatini Daily News "TOP NEWS" numbered grid
   ============================================================ */

:root {
    --edn-accent:   #1a3c6e;   /* EDN navy blue */
    --edn-text:     #111111;
    --edn-muted:    #555555;
    --edn-cat:      #1a3c6e;
    --edn-border:   #e0e0e0;
    --edn-tab-bg:   #f5f5f5;
    --edn-tab-act:  #1a3c6e;
    --edn-num:      #1a3c6e;
    --edn-radius:   4px;
    --edn-thumb-w:  120px;
    --edn-thumb-h:  80px;
}

/* ── Wrapper ─────────────────────────────────────────────── */
.edn-trending-wrap {
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 32px;
}

/* ── Header row ──────────────────────────────────────────── */
.edn-trending-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--edn-accent);
    padding-bottom: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.edn-trending-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--edn-accent);
}

/* ── Period tabs ─────────────────────────────────────────── */
.edn-trending-tabs {
    display: flex;
    gap: 4px;
}

.edn-tab {
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--edn-tab-bg);
    color: var(--edn-muted);
    border: 1px solid var(--edn-border);
    border-radius: var(--edn-radius);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.edn-tab:hover {
    background: #dce6f5;
    color: var(--edn-accent);
}

.edn-tab--active {
    background: var(--edn-tab-act);
    color: #ffffff;
    border-color: var(--edn-tab-act);
}

/* ── Two-column grid ─────────────────────────────────────── */
.edn-trending-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
}

/* vertical divider between columns */
.edn-trending-grid::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 1px;
    background: var(--edn-border);
}

/* ── Single story row ────────────────────────────────────── */
.edn-story {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--edn-border);
    box-sizing: border-box;
}

/* remove right border on last two items */
.edn-story:nth-last-child(-n+2) {
    border-bottom: none;
}

.edn-story__left {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

/* ── Story number ────────────────────────────────────────── */
.edn-story__num {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    color: var(--edn-num);
    opacity: 0.18;
    min-width: 28px;
    flex-shrink: 0;
    font-family: Georgia, serif;
}

/* ── Category tags ───────────────────────────────────────── */
.edn-story__meta {
    flex: 1;
    min-width: 0;
}

.edn-story__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 4px;
}

.edn-story__cat {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--edn-cat);
    text-decoration: none;
    padding: 1px 0;
}

.edn-story__cat::before {
    content: '▸ ';
}

.edn-story__cat:hover {
    text-decoration: underline;
}

/* ── Story title ─────────────────────────────────────────── */
.edn-story__title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    color: var(--edn-text);
}

.edn-story__title a {
    color: inherit;
    text-decoration: none;
}

.edn-story__title a:hover {
    color: var(--edn-accent);
    text-decoration: underline;
}

/* ── Thumbnail ───────────────────────────────────────────── */
.edn-story__thumb-link {
    flex-shrink: 0;
}

.edn-story__thumb {
    width: var(--edn-thumb-w);
    height: var(--edn-thumb-h);
    object-fit: cover;
    border-radius: var(--edn-radius);
    display: block;
}

/* ── Loading overlay ─────────────────────────────────────── */
.edn-trending-grid.edn-loading {
    opacity: 0.45;
    pointer-events: none;
    transition: opacity 0.2s;
}

/* ── Responsive — single column on mobile ────────────────── */
@media ( max-width: 767px ) {
    .edn-trending-grid {
        grid-template-columns: 1fr;
    }
    .edn-trending-grid::after {
        display: none;
    }
    .edn-story:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--edn-border);
    }
    .edn-story:last-child {
        border-bottom: none;
    }
    .edn-story__num {
        font-size: 28px;
    }
    .edn-story__thumb {
        width: 90px;
        height: 64px;
    }
}
