/* Styles pour la section press dans la page story */

.story-press-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-press-section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.story-press-section-title h2 {
    text-align: center;
}

.story-press-section-title p {
    width: 60%;
    text-align: center;
}

.story-press-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.story-press-category {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-press-category-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.story-press-category ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.story-press-category li {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.story-press-michelin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.story-press-michelin a {
    text-align: center;
}

.story-press-michelin-logo {
    width: 70px;
    height: auto;
}

.story-press-michelin-description {
    width: 60%;
    text-align: center;
    margin: 0 auto;
}

/* Media queries pour le responsive */
@media (max-width: 992px) {
    .story-press-section-title p {
        width: 70%;
    }

    .story-press-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .story-press-section-title p {
        width: 100%;
    }

    .story-press-michelin-description {
        width: 100%;
    }

    .story-press-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-press-category {
        align-items: flex-start;
    }

    .story-press-category ul {
        width: 100%;
    }
}
