/* ============================================================
   Pan Stories — Stylesheet
   Palette:
     --mint:    #ccfecc  (bg, hat)
     --green:   #007236  (accent, nav, boots)
     --mid:     #5ab87a  (pants, secondary)
     --page:    #f9fdf9  (content area off-white)
     --text:    #1a1a1a  (body text)
     --muted:   #4a5a4a  (secondary text)
   Fonts: Lora (serif, stories), Outfit (sans, UI)
   ============================================================ */

:root {
    --mint:       #ccfecc;
    --green:      #007236;
    --green-dark: #005528;
    --green-mid:  #5ab87a;
    --page:       #f9fdf9;
    --text:       #1a1a1a;
    --muted:      #4a5a4a;
    --border:     #c2e8c2;
    --shadow:     rgba(0, 114, 54, 0.12);
    --radius:     8px;
    --radius-lg:  16px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--mint);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
    background: var(--green);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: 72px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-wrap {
    background: var(--mint);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px var(--green-mid);
}

.logo-wrap svg,
.logo-wrap .logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.brand-name {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.72rem;
    color: var(--mint);
    font-weight: 300;
    letter-spacing: 0.04em;
    opacity: 0.85;
}

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    color: var(--mint);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.45rem 1rem;
    border-radius: var(--radius);
    transition: background 0.15s, color 0.15s;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.nav-link:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    text-decoration: none;
}

.nav-link.active {
    background: rgba(255,255,255,0.18);
    color: #fff;
}

.nav-members {
    background: var(--mint);
    color: var(--green);
    font-weight: 600;
    margin-left: 0.5rem;
}

.nav-members:hover {
    background: #fff;
    color: var(--green-dark);
}

.nav-members.active {
    background: #fff;
    color: var(--green-dark);
}

/* ── Main Content Area ────────────────────────────────────── */
.site-main {
    flex: 1;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* ── Hero (index page) ────────────────────────────────────── */
.hero {
    text-align: center;
    padding: 4rem 2rem 3rem;
}

.hero-title {
    font-family: 'Lora', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: background 0.15s, transform 0.1s;
    text-decoration: none;
    box-shadow: 0 4px 16px var(--shadow);
}

.hero-cta:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    text-decoration: none;
}

/* ── Story Cards / Grid ───────────────────────────────────── */
.section-title {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.story-card {
    background: var(--page);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: box-shadow 0.15s, transform 0.1s, border-color 0.15s;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.story-card:hover {
    box-shadow: 0 6px 24px var(--shadow);
    transform: translateY(-2px);
    border-color: var(--green-mid);
}

.story-card-title {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.story-card-meta {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.story-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green);
    margin-top: auto;
    text-decoration: none;
    transition: gap 0.15s;
}

.story-card-link:hover {
    gap: 0.5rem;
    text-decoration: none;
}

.story-card-link::after { content: '→'; }

/* ── Story Reader ─────────────────────────────────────────── */
.story-wrap {
    background: var(--page);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 3rem clamp(1.5rem, 5vw, 4rem);
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 4px 24px var(--shadow);
}

.story-back {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    transition: color 0.15s, gap 0.15s;
    text-decoration: none;
}

.story-back::before { content: '←'; }

.story-back:hover {
    color: var(--green);
    gap: 0.5rem;
    text-decoration: none;
}

/* Story typography — Lora for readability */
.story-body {
    font-family: 'Lora', serif;
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text);
}

.story-body h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.story-body h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--green-dark);
    margin: 2.5rem 0 0.75rem;
}

.story-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--muted);
    margin: 2rem 0 0.5rem;
}

.story-body p {
    margin-bottom: 0.5em;
    margin-top: 0em;
    text-indent: 2em;
} 

.story-body em { font-style: italic; }
.story-body strong { font-weight: 700; }

.story-body hr {
    border: none;
    border-top: 2px solid var(--border);
    margin: 2.5rem auto;
    width: 60%;
}

.story-body blockquote {
    border-left: 4px solid var(--green-mid);
    padding: 0.75rem 1.25rem;
    margin: 1.5rem 0;
    background: var(--mint);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--muted);
    font-style: italic;
}

.story-body a { color: var(--green); }

/* ── Members Page ─────────────────────────────────────────── */
.members-banner {
    background: var(--green);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.members-banner h1 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.members-banner p {
    opacity: 0.88;
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
    font-weight: 300;
}

.patreon-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #ff424d;
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    transition: background 0.15s, transform 0.1s;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(255,66,77,0.3);
}

.patreon-btn:hover {
    background: #e0323d;
    transform: translateY(-1px);
    text-decoration: none;
}

/* ── Admin Panel ──────────────────────────────────────────── */
.admin-wrap {
    max-width: 680px;
    margin: 0 auto;
}

.admin-wrap h1 {
    font-family: 'Lora', serif;
    font-size: 1.6rem;
    color: var(--green-dark);
    margin-bottom: 2rem;
}

.admin-section {
    background: var(--page);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.admin-section h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    padding: 0.6rem 0.9rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    background: #fff;
    color: var(--text);
    transition: border-color 0.15s;
}

.form-control:focus {
    outline: none;
    border-color: var(--green);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.15s, transform 0.1s;
    text-decoration: none;
}

.btn-primary {
    background: var(--green);
    color: #fff;
}

.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-danger {
    background: #dc3545;
    color: #fff;
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
}

.btn-danger:hover { background: #b02a37; }

.story-list-admin {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.story-list-admin li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0.75rem;
    background: var(--mint);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.story-list-admin .story-name {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: var(--text);
}

.story-list-admin .story-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.alert {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── Empty State ──────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--muted);
}

.empty-state p { font-size: 1rem; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
    background: var(--green-dark);
    color: var(--mint);
    text-align: center;
    padding: 1.5rem 2rem;
    margin-top: auto;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-copy { font-size: 0.85rem; opacity: 0.9; }
.footer-sub  { font-size: 0.75rem; opacity: 0.55; font-style: italic; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 640px) {
    .header-inner { padding: 0 1rem; }
    .brand-tagline { display: none; }
    .brand-name { font-size: 1rem; }
    .site-main { padding: 1.5rem 1rem; }
    .story-wrap { padding: 1.5rem 1.25rem; }
    .hero { padding: 2rem 0 1.5rem; }

    .site-nav { gap: 0; }
    .nav-link { padding: 0.4rem 0.6rem; font-size: 0.82rem; }
}

/* ── Chapter Features ─────────────────────────────────────── */
.chapter-badge {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
}

.chapter-header {
    margin-bottom: 1.5rem;
}

.chapter-story-title {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.chapter-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.chapter-progress {
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.chapter-progress-bar {
    height: 100%;
    background: var(--green);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Chapter navigation bar */
.chapter-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.chapter-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--mint);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, transform 0.1s;
    min-width: 130px;
}

.chapter-nav-btn:hover {
    background: var(--page);
    border-color: var(--green-mid);
    transform: translateY(-1px);
    text-decoration: none;
}

.chapter-finished {
    opacity: 0.7;
    cursor: default;
}

.chapter-finished:hover {
    transform: none;
}

.chapter-nav-arrow {
    font-size: 1.1rem;
    color: var(--green);
    flex-shrink: 0;
}

.chapter-nav-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.chapter-nav-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    font-weight: 500;
}

.chapter-nav-chapter {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    font-family: 'Lora', serif;
}

.chapter-next {
    flex-direction: row-reverse;
    text-align: right;
    margin-left: auto;
}

/* Chapter dot indicators */
.chapter-nav-dots {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
}

.chapter-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: 1.5px solid var(--green-mid);
    display: block;
    transition: background 0.15s, transform 0.1s;
    flex-shrink: 0;
}

.chapter-dot:hover {
    background: var(--green-mid);
    transform: scale(1.2);
}

.chapter-dot.active {
    background: var(--green);
    border-color: var(--green);
    transform: scale(1.2);
}

@media (max-width: 640px) {
    .chapter-nav {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .chapter-nav-btn { min-width: 110px; padding: 0.6rem 0.9rem; }
    .chapter-nav-dots { order: -1; width: 100%; }
    /* Hide dots if there are many chapters on mobile */
    .chapter-dot:nth-child(n+13) { display: none; }
}

/* ── Tags ─────────────────────────────────────────────────── */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.tag-badge {
    display: inline-block;
    background: var(--mint);
    color: var(--green-dark);
    border: 1.5px solid var(--green-mid);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    padding: 0.18rem 0.55rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

a.tag-badge:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    text-decoration: none;
}

/* Story reader — tags shown above content */
.story-wrap .tag-list {
    margin-bottom: 1.5rem;
}

/* Tag filter bar on stories page */
.stories-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stories-header .section-title {
    margin-bottom: 0;
    border-bottom: none;
}

.tag-filter-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.tag-filter-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 0.25rem;
}

.tag-filter-btn {
    background: var(--page);
    color: var(--muted);
    border: 1.5px solid var(--border);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: lowercase;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    font-family: inherit;
}

.tag-filter-btn:hover {
    background: var(--mint);
    border-color: var(--green-mid);
    color: var(--green-dark);
}

.tag-filter-btn.active {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

/* Story body images */
.story-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 1.5rem auto;
    display: block;
    box-shadow: 0 2px 12px var(--shadow);
}

@media (max-width: 640px) {
    .stories-header { flex-direction: column; }
    .tag-filter-bar { width: 100%; }
}

/* ── Member Tiers ─────────────────────────────────────────── */
.tier-section {
    margin-bottom: 3rem;
}

.tier-badge {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.55rem;
    border-radius: 50px;
    margin-left: 0.6rem;
    vertical-align: middle;
    font-family: 'Outfit', sans-serif;
}

.tier-locked {
    opacity: 0.85;
}

.tier-locked-msg {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: var(--mint);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.tier-locked-msg a {
    color: var(--green);
    font-weight: 600;
}

/* ── Tag Filter (multi-select AND, shared by stories + members) ── */
.filter-wrap {
    background: var(--page);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    margin-bottom: 1.75rem;
}

.filter-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.tag-clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 0.25rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
}

.tag-clear-btn:hover {
    border-color: #dc3545;
    color: #dc3545;
    background: #fee2e2;
}

/* Override old flat filter bar — now inside filter-wrap */
.filter-wrap .tag-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    max-height: 160px;
    overflow-y: auto;
    padding-right: 0.25rem;
}

/* Scrollbar styling for filter bar */
.filter-wrap .tag-filter-bar::-webkit-scrollbar { width: 4px; }
.filter-wrap .tag-filter-bar::-webkit-scrollbar-track { background: transparent; }
.filter-wrap .tag-filter-bar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* Multi-select style — outline when inactive, filled when active */
.filter-wrap .tag-filter-btn {
    background: transparent;
    color: var(--green-dark);
    border: 1.5px solid var(--green-mid);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: lowercase;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.12s, color 0.12s, border-color 0.12s, transform 0.1s;
    font-family: inherit;
}

.filter-wrap .tag-filter-btn:hover {
    background: var(--mint);
    border-color: var(--green);
}

.filter-wrap .tag-filter-btn.active {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    transform: scale(1.05);
}

.filter-summary {
    margin-top: 0.6rem;
    font-size: 0.82rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
}

/* Admin move form inline */
.story-actions form select {
    height: 28px;
}

/* ── News ─────────────────────────────────────────────────── */
.home-news {
    margin-bottom: 2.5rem;
}

.news-featured {
    background: var(--page);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    border-left: 4px solid var(--green);
}

.news-featured-date,
.news-post-date {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.news-post-date {
    margin-bottom: 0.75rem;
}

.news-featured-title {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.news-featured-title a {
    color: inherit;
    text-decoration: none;
}

.news-featured-title a:hover {
    color: var(--green);
    text-decoration: none;
}

.news-featured-teaser {
    font-family: 'Lora', serif;
    color: var(--text);
    font-size: 0.975rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* News listing page */
.news-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news-list-item {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}

.news-list-date {
    font-size: 0.8rem;
    color: var(--muted);
    flex-shrink: 0;
    font-weight: 500;
    min-width: 110px;
}

.news-list-title {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--green-dark);
    font-weight: 600;
    text-decoration: none;
}

.news-list-title:hover {
    color: var(--green);
    text-decoration: none;
}

@media (max-width: 640px) {
    .news-list-item { flex-direction: column; gap: 0.2rem; }
    .news-featured { padding: 1.25rem; }
}
