<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.orangerie-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.orangerie-title p {
    max-width: 600px;
}

.orangerie-details {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;

    margin-bottom: 2rem;
}

.orangerie-details img {
    width: 50%;
    object-fit: cover;
}

.orangerie-details-text {
    flex: 1;

    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.orangerie-details-text-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.orangerie-details-text-item p {
    max-width: 400px;
}

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

    .orangerie-details img {
        width: 100%;
    }

    .orangerie-details-text {
        width: 100%;
    }

    .orangerie-details-text-item p {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .orangerie-title p {
        max-width: 100%;
        padding: 0 1rem;
    }
}

.orangerie-content-details {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.orangerie-content-details img {
    width: 30%;
}  

.orangerie-content-details-texts {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

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

    .orangerie-content-details img {
        width: 100%;
    }

    .orangerie-content-details-texts {
        flex-direction: column;
    }

    .orangerie-content-details-texts {
        width: 100%;
    }
}</pre></body></html>