/* ── Single Story Page ── */

.single-story__fixed-header {
    text-align: center;
    padding: 30px 20px 10px;
}

.single-story__fixed-header h2 {
    color: #1f497d;
}

.single-story__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.single-story__title {
    color: #1f497d;
    margin-bottom: 24px;
}

/* Full-width media */
.single-story__video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 30px;
}

.single-story__video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.single-story__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin-bottom: 30px;
}

.single-story__content {
    color: #1f497d;
    line-height: 1.7;
    margin-bottom: 60px;
}

/* ── Related Stories ── */

.single-story__related {
   /* background-color: #56afe9; */
    padding: 40px 20px;
    text-align: center;
}

.single-story__related-heading {
    color: #1f497d;
    margin-bottom: 30px;
}

.single-story__related-grid {
    display: grid;
    grid-template-columns: repeat( 3, 1fr );
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 30px;
    text-align: left;
}

.single-story__related-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.single-story__related-media .single-story__video-wrapper {
    border-radius: 0;
    margin-bottom: 0;
}

.single-story__related-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.single-story__related-content {
    padding: 16px;
    color: #1f497d;
}

.single-story__related-excerpt {
    margin-bottom: 12px;
    line-height: 1.5;
}

.single-story__related-link {
    color: #1f497d;
    font-weight: bold;
    text-decoration: none;
}

.single-story__related-link:hover {
    text-decoration: underline;
}

/* Explore link */
.single-story__explore {
    margin-top: 10px;
}

.single-story__explore-link {
    color: #1f497d;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.single-story__explore-link:hover {
    text-decoration: underline;
}

/* ── Responsive ── */

@media ( max-width: 768px ) {
    .single-story__related-grid {
        grid-template-columns: 1fr;
    }
}

@media ( max-width: 1024px ) and ( min-width: 769px ) {
    .single-story__related-grid {
        grid-template-columns: repeat( 2, 1fr );
    }
}