/* css/components/About/StorySection.css */

.about-story-section {
    background-color: var(--koeleman-background);
    padding: 4rem 0;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    .about-story-section {
        padding: 6rem 0;
    }
}

.story-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .story-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

.story-text h2 {
    color: var(--koeleman-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1rem;
}
