/* ========================= */
/* HORAIRES SECTION */
/* ========================= */
.horaires-section {
    padding: var(--section-padding);
    background: var(--section-dark-bg);
}


/* ========================= */
/* CONTAINER */
/* ========================= */
.horaires-container {
    width: var(--container-width);
    max-width: 1150px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}


/* ========================= */
/* CONTENT LEFT */
/* ========================= */
.horaires-content {
    flex: 1;
    max-width: 620px;
}


/* ========================= */
/* INTRO */
/* ========================= */
.horaires-intro {
    margin-bottom: 42px;
}

.horaires-intro span {
    display: block;
    margin-bottom: 12px;
    color: var(--section-dark-hover);
    /*font-size: 0.85rem;*/
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.horaires-intro h2 {
    margin-bottom: 14px;
    color: var(--section-dark-text);
    font-family: var(--font-heading);
    /*font-size: clamp(2.2rem, 5vw, 3.4rem);*/
    line-height: 1.1;
    font-weight: 700;
}

.horaires-intro p {
    color: var(--section-dark-muted);
    font-family: var(--font-body);
    /*font-size: 1rem;*/
    line-height: 1.7;
}


/* ========================= */
/* CARD */
/* ========================= */
.horaires-card {
    display: block;
}


/* ========================= */
/* SINGLE HORAIRE */
/* ========================= */
.horaire-single {
    padding: 34px 30px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    text-align: center;
    transition: var(--transition-flows);
}

.horaire-single:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.horaire-single > span {
    display: block;
    margin-bottom: 18px;
    color: var(--section-dark-text);
    font-family: var(--font-heading);
    /*font-size: 1.15rem;*/
    font-weight: 700;
}

.horaire-single p {
    margin: 18px 0 0;
    color: var(--section-dark-muted);
    font-family: var(--font-body);
    /*font-size: 0.98rem;*/
    line-height: 1.6;
}


/* ========================= */
/* TIME */
/* ========================= */
.horaire-time {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    color: var(--section-dark-text);
    white-space: nowrap;
}

.horaire-time strong {
    color: var(--section-dark-text);
    font-family: var(--font-heading);
    /*font-size: clamp(2.4rem, 6vw, 4rem);*/
    line-height: 1;
    font-weight: 800;
}

.horaire-time em {
    color: var(--section-dark-hover);
    font-family: var(--font-body);
    /*font-size: 1rem;*/
    font-style: normal;
    font-weight: 700;
}


/* ========================= */
/* NOTE */
/* ========================= */
.horaires-note {
    margin: 24px 0 0;

    color: var(--section-dark-muted);
    font-family: var(--font-body);
    /*font-size: 0.98rem;*/
    line-height: 1.7;
}


/* ========================= */
/* IMAGE RIGHT */
/* ========================= */
.horaires-container::after {
    content: "";

    flex: 0 1 420px;
    height: clamp(320px, 42vw, 620px);

    border-radius: 30px;

    background:
        linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
        url("/images/yuski_chien.png") center / cover no-repeat;

    box-shadow: var(--shadow-soft);
}


/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 1000px) {
    .horaires-container {
        flex-direction: column;
        align-items: stretch;
        gap: 50px;
    }

    .horaires-content {
        max-width: none;
    }

    .horaires-container::after {
        width: 100%;
        max-width: 520px;
        height: clamp(280px, 60vw, 460px);

        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .horaire-single {
        padding: 28px 20px;
    }

    .horaire-time {
        gap: 8px;
    }

    .horaire-single:hover {
        transform: none;
    }
}