/* ═══════════════════════════════════════════════════════════
   Chiefs Daily News Roundup — Post Styles
   ═══════════════════════════════════════════════════════════ */

.cdn-roundup {
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    color: #222;
    line-height: 1.6;
}

/* Intro paragraph */
.cdn-intro {
    font-size: 17px;
    color: #444;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 3px solid #E31837;
}

/* Individual story card */
.cdn-story {
    margin-bottom: 24px;
    padding: 16px 20px;
    background: #fafafa;
    border-left: 4px solid #E31837;
    border-radius: 0 6px 6px 0;
    transition: background 0.15s ease;
}

.cdn-story:hover {
    background: #f0f0f0;
}

/* Story title */
.cdn-story-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 8px 0;
    padding: 0;
    color: #111;
}

.cdn-story-num {
    color: #E31837;
    font-weight: 800;
}

.cdn-story-title a {
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}

.cdn-story-title a:hover {
    color: #E31837;
    border-bottom-color: #E31837;
}

/* Story description */
.cdn-story-desc {
    font-size: 15px;
    color: #555;
    margin: 0 0 8px 0;
    line-height: 1.55;
}

/* Meta line (source + time) */
.cdn-story-meta {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.cdn-source {
    font-weight: 600;
    color: #E31837;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cdn-time {
    color: #999;
}

/* Footer */
.cdn-footer {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 2px solid #eee;
    font-size: 14px;
    color: #888;
}

.cdn-footer a {
    color: #E31837;
    text-decoration: none;
    font-weight: 600;
}

.cdn-footer a:hover {
    text-decoration: underline;
}

/* ─── Mobile Responsive ─── */
@media (max-width: 600px) {
    .cdn-roundup {
        padding: 0 4px;
    }

    .cdn-story {
        padding: 12px 14px;
        margin-bottom: 18px;
    }

    .cdn-story-title {
        font-size: 16px;
    }

    .cdn-story-desc {
        font-size: 14px;
    }

    .cdn-intro {
        font-size: 15px;
    }
}
