

.horaires-section {
    padding: var(--section-padding);
    background: var(--section-dark-bg);
}

.horaires-container {
    width: var(--container-width);
    max-width: 1150px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.horaires-content {
    flex: 1;
    max-width: 620px;
}

.horaires-intro {
    margin-bottom: 42px;
}

.horaires-intro span {
    display: block;
    margin-bottom: 12px;
    color: var(--section-dark-hover);

    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);

    line-height: 1.1;
    font-weight: 700;
}

.horaires-intro p {
    color: var(--section-dark-muted);
    font-family: var(--font-body);

    line-height: 1.7;
}

.horaires-card {
    display: block;
}

.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-weight: 700;
}

.horaire-single p {
    margin: 18px 0 0;
    color: var(--section-dark-muted);
    font-family: var(--font-body);

    line-height: 1.6;
}

.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);

    line-height: 1;
    font-weight: 800;
}

.horaire-time em {
    color: var(--section-dark-hover);
    font-family: var(--font-body);

    font-style: normal;
    font-weight: 700;
}

.horaires-note {
    margin: 24px 0 0;

    color: var(--section-dark-muted);
    font-family: var(--font-body);

    line-height: 1.7;
}

.horaires-image {
    display: block;
    flex: 0 1 420px;
    height: clamp(320px, 42vw, 620px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.horaires-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Copyright RZU Informatique */
