.stories-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.stories-category-link {
    font-size: 0.9rem;
    color: #374151;
    text-decoration: none;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
}

.stories-category-link:hover {
    border-color: #c7d2fe;
    color: #1f2937;
}

.stories-category-link.active {
    border-color: #1d4ed8;
    color: #1d4ed8;
    background: #eff6ff;
    font-weight: 600;
}

.stories-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-card {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.story-card__image {
    width: 200px;
    flex-shrink: 0;
}

.story-card__image img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.story-card__body {
    flex: 1;
}

.story-card__category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 0.4rem;
}

.story-card__title {
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
}

.story-card__title a {
    color: #111827;
    text-decoration: none;
}

.story-card__title a:hover {
    color: #1d4ed8;
}

.story-card__excerpt {
    color: #4b5563;
    margin-bottom: 0.75rem;
}

.story-card__meta {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.story-card__link {
    font-weight: 600;
    color: #1d4ed8;
    text-decoration: none;
}

.story-card__link:hover {
    text-decoration: underline;
}

.story-header {
    margin-bottom: 2rem;
}

.story-header__category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.story-header__title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.story-meta {
    color: #6b7280;
    font-size: 0.9rem;
}

.story-meta__line + .story-meta__line {
    margin-top: 0.2rem;
}

.story-featured {
    margin: 2rem 0;
}

.story-featured img {
    width: 100%;
    border-radius: 18px;
}

.story-content {
    max-width: 820px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #111827;
}

.story-content h2,
.story-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-content p {
    margin-bottom: 1.25rem;
}

.story-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.story-trust-note {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    color: #374151;
    font-size: 0.95rem;
}

.story-related {
    margin-top: 2.5rem;
}

.story-related__title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.story-related__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.story-related__list li {
    margin-bottom: 0.35rem;
}

.story-related__list a {
    color: #1d4ed8;
    text-decoration: none;
}

.story-related__list a:hover {
    text-decoration: underline;
}

.stories-pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.stories-pagination__link {
    text-decoration: none;
    color: #1f2937;
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
}

.stories-pagination__link.is-disabled {
    color: #9ca3af;
    pointer-events: none;
}

@media (max-width: 768px) {
    .story-card {
        flex-direction: column;
    }

    .story-card__image {
        width: 100%;
    }

    .story-header__title {
        font-size: 1.6rem;
    }
}
