/* ============================================================
   Trei Surse — all-stories page specific styles
   Builds on top of css/main.css (.card, .story-card, .tag),
   css/homepage.css (shared chrome), css/story.css (.story-back)
   and css/topic.css (.story-list, .story-card .bias-bar).
   Adds only what's specific to this page: the header and the
   "story of the day" badge.
   ============================================================ */

/* ---- header ---- */
.stories-header {
    padding-bottom: 28px;
}

.stories-header__title {
    margin: 0 0 10px;
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.stories-header__meta {
    margin: 0;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* ---- story of the day badge ---- */
.story-card__badge {
    margin-bottom: 10px;
}

/* ---- load more ---- */
.stories-load-more {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.stories-load-more[hidden] {
    display: none;
}

/* ---- responsive ---- */
@media (max-width: 768px) {
    .stories-header__title {
        font-size: 1.6rem;
    }
}
