/* Crew Page Styles */
.story-section {
    padding: 6rem 0 7rem;
    background: var(--dark-gray);
}

.story-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.story-portrait {
    display: block;
    width: min(100%, 420px);
    max-width: 420px;
    margin: 0 auto 2rem;
    border-radius: 18px;
    object-fit: cover;
}

.story-quote {
    font-size: 1.6rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2rem;
}

.story-body {
    column-count: 3;
    column-gap: 2.5rem;
}

.story-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 1.25rem;
    break-inside: avoid;
}

.story-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A9980;
    margin: 1.5rem 0 0.75rem;
    break-after: avoid;
    break-inside: avoid;
}

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

/* Responsive */
@media (max-width: 968px) {
    .story-body {
        column-count: 1;
    }
}

@media (max-width: 640px) {
    .story-quote {
        font-size: 1.3rem;
    }
}

