.stories-page-main {
    min-height: 70vh;
    padding: 28px 0 56px;
}
.stories-list {
    display: grid;
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 20px 32px;
    gap: 24px;
}
.stories-list > h1 {
    grid-column: 1 / -1;
    margin: 0;
    color: #061a35;
}
.story-list-card {
    overflow: hidden;
    border: 1px solid rgba(15, 38, 62, .11);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 38, 62, .07);
}
.story-list-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.story-list-card h2,
.story-list-card p,
.story-list-card a {
    margin-right: 18px;
    margin-left: 18px;
}
.story-list-card h2 {
    color: #061a35;
    font-size: 20px;
    line-height: 1.25;
}
.story-list-card p {
    line-height: 1.55;
}
.story-list-card a {
    display: inline-block;
    margin-bottom: 20px;
    color: #0f263e;
    font-weight: 800;
    text-decoration: none;
}
.story-detail {
    max-width: 820px;
    margin: 0 auto;
    padding: 18px 20px 44px;
}
.story-detail__image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    object-fit: cover;
}
.story-detail > p {
    margin: 20px 0 6px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
}
.story-detail > h1 {
    margin: 0 0 20px;
    color: #061a35;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
}
.story-detail__body {
    color: #26384d;
    font-size: 16px;
    line-height: 1.75;
}
.story-detail__body p {
    margin: 0 0 16px;
}
.story-detail__topics,
.story-detail__geo {
    margin: 28px 0;
}
.story-detail__topics h2,
.story-detail__geo h2,
.story-detail__geo h3 {
    color: #061a35;
}
.story-detail__topics h2,
.story-detail__geo h2 {
    font-size: 20px;
}
.story-detail__geo h3 {
    margin: 20px 0 6px;
    font-size: 17px;
}
.story-detail__geo p {
    margin: 0 0 12px;
    line-height: 1.65;
}
.story-detail__topics span {
    display: inline-block;
    margin: 0 7px 7px 0;
    padding: 7px 10px;
    border: 1px solid rgba(15, 38, 62, .12);
    border-radius: 999px;
    background: #fff;
}
.story-detail-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 10px;
    margin-top: 38px;
}
.story-detail-nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 14px;
    border-radius: 11px;
    background: #061a35;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}
.story-detail-nav__prev {
    justify-self: start;
}
.story-detail-nav a.story-detail-nav__home {
    justify-self: center;
    background: var(--orange);
}
.story-detail-nav__next {
    justify-self: end;
}
@media (min-width: 761px) {
    .stories-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 760px) {
    .stories-page-main {
        padding-top: 18px;
    }
    .stories-list,
    .story-detail {
        padding-right: 16px;
        padding-left: 16px;
    }
    .stories-list {
        grid-template-columns: 1fr;
        padding-top: 10px;
    }
    .story-detail {
        padding-top: 10px;
        padding-bottom: 36px;
    }
    .story-detail-nav {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 6px;
    }
    .story-detail-nav a {
        min-height: 48px;
        justify-content: center;
        padding: 6px 8px;
        text-align: center;
    }
}
