.story {
    padding: 5rem 2rem;
}

.story-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
}

.story-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.story-content h2 {
    margin-bottom: 1.5rem;
}

.story-content p {
    line-height: 1.8;
    color: #555;
}

.member-links h4 {
    margin-bottom: 1rem;
}

.member-links a {
    color: var(--gold-color);
    text-decoration: none;
    transition: .3s;
}

.member-links a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {

    .story-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .story-image {
        max-width: 280px;
        margin: auto;
    }

}