/* ========================================
   SECTION « NOTRE HISTOIRE »
   ======================================== */
.history-section {
    background-color: var(--color-background-cream);
    padding: var(--space-5xl) 0;
}

.history-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-4xl);
    align-items: center;
}

/* ── Colonne texte ── */
.history-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    max-width: 32rem;
}

.history-subtitle {
    color: var(--color-gold);
}

.history-title {
    color: var(--color-primary-darker);
}

.history-text {
    color: var(--color-text-muted);
}

.history-actions {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    margin-top: var(--space-md);
}

.history-actions .btn-link {
    color: var(--color-primary-darker);
}

/* ── Colonne image (image unique déjà composée) ── */
.history-img {
    display: block;
    width: 100%;
    height: auto;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .history-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5xl);
    }

    .history-content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .history-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-lg);
    }
}
