/* Styles pour la section des articles de blog dans la page story */

.story-articles-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story-articles-title {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 2rem;
}

.story-articles {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.story-article-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-article-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.story-article-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-article-excerpt {
    max-width: 100%;
    line-height: 1.6;
}

.story-article-link {
    align-self: flex-start;
}

/* Media queries pour le responsive */
@media (max-width: 992px) {
    .story-articles {
        flex-direction: column;
    }

    .story-article-image {
        height: 250px;
    }
}
