/* Stories Section */
.stories-section {
    background-color: #d4d2ca; /* Warm beige from wireframe */
    padding: 3rem 4rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stories-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    font-weight: 700;
    color: #191919;
    margin-bottom: 1.5rem;
    margin-top: 2.3rem;
    text-align: center;
}

/* 3-column grid */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

/* Each card */
.story-card {
    background: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.7rem 1.7rem 2rem;
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Image wrapper — square crop */
.story-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.story-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Text below image */
.story-info {
    display: flex;
    flex-direction: column;

}

.story-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0;
    line-height: 1.3;
}

.read-more {
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.875rem;
    color: #555;
    letter-spacing: 0.02em;
}

.read-more:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stories-section {
        padding: 3rem 1.5rem;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .stories-title {
        font-size: 2rem;
    }
}