﻿.kitcontent-section {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: auto; /* centrer horizontalement */
    background-color: var(--black);
    color: var(--white);
    margin-top: -1px;
}

/* === Mobile par défaut (<768px) === */
.kitcontent-section {
    justify-content: center; /* centre horizontalement */
    padding: 1rem; /* un peu de marge intérieure */
}

.kitcontent-section__content {
}

.kitcard {
    border: none;
    color: #fff;
    display: flex;
    gap: 1.5em;
    height: 100%;
    border-radius: 0;
    background-color: transparent;
}

/* === Responsive mobile (<768px) === */
@media (max-width: 767.98px) {
    .kitcontent-section {
        justify-content: center; /* on centre le contenu */
        text-align: left; /* paragraphes centrés */
        padding: 2em 2em;
    }
}

@media (min-width: 1400px) {
    .kitcontent-section__content {
        max-width: 1120px; /* optionnel : pour ne pas dépasser une taille raisonnable */
    }
}

@media (max-width: 992px) {
    .kitcontent-section {
    }
}
