/* ============================================
   MasterClass Landing Page — Styles
   Fichier séparé du monolithe style.css
   Chargé uniquement sur template-landing-course.php
   ============================================ */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    --mc-black: #000000;
    --mc-white: #ffffff;
    --mc-green: #00FF5F;
    --mc-gray-card: #222222;
    --mc-gray-light: #f0f0f0;

    --mc-font-label: 'DM Mono', monospace;
    --mc-font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;

    --mc-radius-card: 32px;
    --mc-radius-pill: 120px;
    --mc-radius-quote: 16px;

    --mc-section-px: 40px;
    --mc-section-py: 80px;
    --mc-max-width: 1360px;
}

/* ============================================
   LANDING PAGE BODY RESET
   ============================================ */
.mc-landing {
    font-family: var(--mc-font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   CUSTOM HEADER (template-landing-course.php)
   ============================================ */
.mc-header {
    background: var(--mc-black);
    padding: 16px 24px;
}
.mc-header__inner {
    max-width: calc(var(--mc-max-width) + var(--mc-section-px) * 2);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mc-header__cta-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mc-green);
    color: var(--mc-black);
    font-family: var(--mc-font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.4px;
    height: 40px;
    padding: 0 24px;
    border-radius: var(--mc-radius-pill);
    transition: transform 0.2s;
}
.mc-header__cta:hover .mc-header__cta-pill {
    transform: scale(1.03);
}

/* ============================================
   HERO (mc-hero)
   ============================================ */
.mc-hero {
    background: var(--mc-black);
    color: var(--mc-white);
    padding: 60px var(--mc-section-px) 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mc-hero__inner {
    max-width: var(--mc-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}
.mc-hero__label {
    font-family: var(--mc-font-label);
    font-size: 24px;
    font-weight: 500;
    color: var(--mc-green);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.mc-hero__hook {
    font-family: var(--mc-font-body);
    font-size: clamp(40px, 7vw, 100px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -3.6676px;
    max-width: 1280px;
    text-align: center;
}
.mc-hero__description {
    font-family: var(--mc-font-body);
    font-size: 22px;
    font-weight: 400;
    color: var(--mc-white);
    opacity: 0.8;
    line-height: 1.25;
    max-width: 800px;
    text-align: center;
}
.mc-hero__cta {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}
.btn-cta-hero {
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: transform 0.2s;
}
.btn-cta-hero:hover { transform: scale(1.03); }
.btn-cta-hero__pill {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mc-green);
    color: var(--mc-black);
    font-family: var(--mc-font-body);
    font-weight: 500;
    font-size: 18.338px;
    letter-spacing: -0.4585px;
    height: 73px;
    padding: 0 48px;
    border-radius: var(--mc-radius-pill);
}
.btn-cta-hero__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 73px;
    height: 73px;
    background: var(--mc-white);
    border-radius: 50%;
}
.mc-hero__proof {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mc-hero__avatars {
    display: flex;
}
.mc-hero__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #444;
    border: 2px solid var(--mc-black);
    margin-right: -12px;
    object-fit: cover;
}
.mc-hero__avatar:last-child {
    margin-right: 0;
}
.mc-hero__proof-text {
    font-family: var(--mc-font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--mc-white);
}

/* ============================================
   STATS (inside hero)
   ============================================ */
.mc-stats {
    padding: 60px 0 40px;
}
.mc-stats__grid {
    max-width: var(--mc-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.mc-stats__item {
    border-top: 1px solid var(--mc-white);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mc-stats__number {
    font-family: var(--mc-font-body);
    font-size: 60px;
    font-weight: 400;
    letter-spacing: -1.3054px;
    line-height: 1;
}
.mc-stats__label {
    font-family: var(--mc-font-body);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1.48;
}

/* ============================================
   VIDEO (mc-video)
   ============================================ */
.mc-video {
    background: var(--mc-white);
    padding: 80px var(--mc-section-px) 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mc-video__inner {
    max-width: var(--mc-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.mc-video__thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 1180 / 600;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    background: var(--mc-black);
}
.mc-video__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mc-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 3px solid var(--mc-white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.mc-video__play svg {
    margin-left: 4px;
}
.mc-video__info {
    display: flex;
    gap: 110px;
    align-items: flex-start;
}
.mc-video__title {
    font-family: var(--mc-font-body);
    font-size: 44px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1.32px;
    width: 400px;
    flex-shrink: 0;
}
.mc-video__description {
    font-family: var(--mc-font-body);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.48;
    letter-spacing: -0.5px;
    flex: 1;
}

/* ============================================
   DISCLAIMER (mc-disclaimer)
   ============================================ */
.mc-disclaimer {
    background: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px var(--mc-section-px);
}
.mc-disclaimer__inner {
    max-width: var(--mc-max-width);
    margin: 0 auto;
}
.mc-disclaimer__text {
    font-family: var(--mc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--mc-white);
    text-align: center;
    margin: 0;
}
.mc-disclaimer__text strong {
    font-weight: 700;
}

/* ============================================
   PITCH (mc-pitch)
   ============================================ */
.mc-pitch {
    background: var(--mc-white);
    padding: var(--mc-section-py) var(--mc-section-px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mc-pitch__inner {
    max-width: var(--mc-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.mc-pitch__card {
    border-radius: var(--mc-radius-card);
    overflow: hidden;
}
.mc-pitch__card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.mc-pitch__card:first-child .mc-pitch__card-grid {
    height: 680px;
}
.mc-pitch__card:last-child .mc-pitch__card-grid {
    height: 698px;
}
.mc-pitch__content {
    background: var(--mc-black);
    color: var(--mc-white);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.mc-pitch__content--problem {
    justify-content: center;
}
.mc-pitch__group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    flex-shrink: 0;
    width: 100%;
}
.mc-pitch__label {
    font-family: var(--mc-font-label);
    font-size: 20px;
    font-weight: 500;
    color: var(--mc-green);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1;
}
.mc-pitch__title {
    font-family: var(--mc-font-body);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1.32px;
}
.mc-pitch__bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mc-pitch__bullet {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.mc-pitch__bullet-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-top: 3px;
}
.mc-pitch__bullet-text {
    font-family: var(--mc-font-body);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1.48;
}
.mc-pitch__text {
    font-family: var(--mc-font-body);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1.48;
}
.mc-pitch__quote {
    background: var(--mc-green);
    color: var(--mc-black);
    padding: 16px;
    border-radius: var(--mc-radius-quote);
    font-family: var(--mc-font-body);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.48;
}
.mc-pitch__disclaimer {
    font-family: var(--mc-font-body);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1.48;
}
.mc-pitch__image {
    position: relative;
    overflow: hidden;
}
.mc-pitch__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}
.mc-pitch__card--reverse .mc-pitch__content {
    order: 2;
    justify-content: center;
    height: 100%;
}
.mc-pitch__card--reverse .mc-pitch__image {
    order: 1;
}

/* ============================================
   PROGRAMME (mc-programme)
   ============================================ */
.mc-programme {
    background: var(--mc-black);
    color: var(--mc-white);
    padding: 48px var(--mc-section-px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mc-programme__inner {
    max-width: var(--mc-max-width);
    margin: 0 auto;
}
.mc-programme__header {
    margin-bottom: 40px;
}
.mc-programme__label {
    font-family: var(--mc-font-label);
    font-size: 20px;
    font-weight: 500;
    color: var(--mc-green);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 12px;
}
.mc-programme__title {
    font-family: var(--mc-font-body);
    font-size: clamp(32px, 4.5vw, 60px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 12px;
}
.mc-programme__subtitle {
    font-family: var(--mc-font-body);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1.4;
}
.mc-programme__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.mc-programme__card {
    width: calc((100% - 40px) / 3);
    background: var(--mc-gray-card);
    color: var(--mc-white);
    border-radius: 24px;
    padding: 24px;
    position: relative;
}
.mc-programme__card-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--mc-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mc-black);
}
.mc-programme__card-icon svg {
    fill: none;
}
.mc-programme__card-label {
    font-family: var(--mc-font-label);
    font-size: 14px;
    font-weight: 500;
    color: var(--mc-green);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}
.mc-programme__card-title {
    font-family: var(--mc-font-body);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.72px;
    line-height: 1.2;
    margin-bottom: 8px;
}
.mc-programme__card-text {
    font-family: var(--mc-font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.3px;
    line-height: 1.4;
}
.mc-programme__card--green {
    background: var(--mc-green);
    color: var(--mc-black);
}
.mc-programme__card--green .mc-programme__card-label {
    color: var(--mc-black);
}
.mc-programme__card--green .mc-programme__card-icon {
    background: var(--mc-white);
    color: var(--mc-black);
}
.mc-programme__card--white {
    background: var(--mc-white);
    color: var(--mc-black);
}
.mc-programme__card--white .mc-programme__card-label {
    color: var(--mc-black);
}
.mc-programme__card--white .mc-programme__card-icon {
    background: var(--mc-black);
    color: var(--mc-white);
}

/* ============================================
   FAQ (mc-faq)
   ============================================ */
.mc-faq {
    background: var(--mc-white);
    color: var(--mc-black);
    padding: var(--mc-section-py) var(--mc-section-px);
    min-height: auto;
}
.mc-faq__inner {
    max-width: var(--mc-max-width);
    margin: 0 auto;
}
.mc-faq__header {
    margin-bottom: 60px;
}
.mc-faq__label {
    font-family: var(--mc-font-label);
    font-size: 20px;
    font-weight: 500;
    color: var(--mc-black);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}
.mc-faq__title {
    font-family: var(--mc-font-body);
    font-size: clamp(36px, 7vw, 100px);
    font-weight: 400;
    letter-spacing: -3.8436px;
    line-height: 0.99;
}
.mc-faq__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.mc-faq__item {
    border-top: 1px solid var(--mc-black);
    padding-top: 24px;
}
.mc-faq__question {
    width: 100%;
    background: none;
    border: none;
    color: var(--mc-black);
    font-family: var(--mc-font-body);
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 400;
    letter-spacing: -1.3054px;
    line-height: 0.99;
    text-align: left;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 110px;
}
.mc-faq__question:hover { opacity: 0.7; }
.mc-faq__question-text {
    flex: 1;
}
.mc-faq__chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    margin-top: 4px;
}
.mc-faq__item.active .mc-faq__chevron {
    transform: rotate(180deg);
}
.mc-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mc-faq__answer-inner {
    padding-top: 24px;
    padding-bottom: 8px;
    font-family: var(--mc-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    max-width: 800px;
}
.mc-faq__item.active .mc-faq__answer {
    max-height: 300px;
}

/* ============================================
   CTA FINAL (mc-cta)
   ============================================ */
.mc-cta {
    background: var(--mc-green);
    color: var(--mc-black);
    padding: var(--mc-section-py) 37px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mc-cta__inner {
    max-width: var(--mc-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mc-cta__label {
    font-family: var(--mc-font-label);
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}
.mc-cta__title {
    font-family: var(--mc-font-body);
    font-size: clamp(40px, 7vw, 100px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -3.6676px;
    margin-bottom: 40px;
}
.mc-cta__text {
    font-family: var(--mc-font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    max-width: 946px;
    margin: 0 auto 40px;
    text-align: center;
}
.btn-cta-final {
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: transform 0.2s;
}
.btn-cta-final:hover { transform: scale(1.03); }
.btn-cta-final__pill {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mc-black);
    color: var(--mc-white);
    font-family: var(--mc-font-body);
    font-weight: 500;
    font-size: 18.338px;
    letter-spacing: -0.4585px;
    height: 67px;
    padding: 0 44px;
    border-radius: 110px;
}
.btn-cta-final__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 67px;
    height: 67px;
    background: var(--mc-white);
    border-radius: 50%;
}
.mc-cta__disclaimer {
    font-family: var(--mc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    max-width: 946px;
    margin-top: 40px;
    text-align: center;
}

/* ============================================
   FOOTER CUSTOM (template-landing-course.php)
   ============================================ */
.mc-footer {
    background: var(--mc-black);
    color: var(--mc-white);
    padding: 24px;
}
.mc-footer__inner {
    max-width: calc(var(--mc-max-width) + var(--mc-section-px) * 2);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mc-footer__logo {
    font-family: var(--mc-font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--mc-white);
    text-decoration: none;
}
.mc-footer__logo span {
    color: var(--mc-green);
}
.mc-footer__copy {
    font-family: var(--mc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--mc-white);
    text-align: right;
}

/* ============================================
   RESPONSIVE — MOBILE (<768px)
   ============================================ */
@media (max-width: 767px) {
    .mc-video,
    .mc-pitch,
    .mc-programme,
    .mc-faq,
    .mc-cta {
        min-height: auto;
    }

    /* Hero */
    .mc-hero {
        padding: 40px 16px;
        min-height: 100vh;
        min-height: 100dvh;
    }
    .mc-hero__inner {
        gap: 24px;
    }
    .mc-hero__label {
        font-size: 16px;
    }
    .mc-hero__hook {
        font-size: 48px;
        letter-spacing: -1.5px;
    }
    .mc-hero__description {
        font-size: 14px;
        opacity: 0.6;
    }
    .btn-cta-hero__pill {
        font-size: 14px;
        height: 56px;
        padding: 0 28px;
    }
    .btn-cta-hero__circle {
        width: 56px;
        height: 56px;
    }
    .mc-hero__proof {
        flex-direction: column;
        gap: 8px;
    }
    .mc-hero__avatar {
        width: 32px;
        height: 32px;
    }
    .mc-hero__proof-text {
        font-size: 12px;
        text-align: center;
    }

    /* Stats — hidden on mobile */
    .mc-stats {
        display: none;
    }

    /* Scroll fade-in (mobile only) */
    .scroll-reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .scroll-reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
    .mc-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .mc-stats__number {
        font-size: 40px;
    }
    .mc-stats__label {
        font-size: 14px;
    }

    /* Video */
    .mc-video {
        padding: 40px 16px;
    }
    .mc-video__thumbnail {
        aspect-ratio: auto;
        height: 208px;
        border-radius: 16px;
    }
    .mc-video__play {
        width: 48px;
        height: 48px;
    }
    .mc-video__play svg {
        width: 18px;
        height: 18px;
    }
    .mc-video__info {
        flex-direction: column;
        gap: 12px;
    }
    .mc-video__title {
        width: 100%;
        font-size: 32px;
    }
    .mc-video__description {
        font-size: 14px;
    }

    /* Pitch */
    .mc-pitch {
        padding: 40px 16px;
    }
    .mc-pitch__inner {
        gap: 40px;
    }
    .mc-pitch__card-grid {
        grid-template-columns: 1fr;
        height: auto !important;
    }
    .mc-pitch__content {
        padding: 24px;
    }
    .mc-pitch__title {
        font-size: 24px;
    }
    .mc-pitch__bullet-text,
    .mc-pitch__text,
    .mc-pitch__quote,
    .mc-pitch__disclaimer {
        font-size: 14px;
    }
    .mc-pitch__image {
        min-height: 250px;
        height: 250px;
    }
    .mc-pitch__card--reverse .mc-pitch__content { order: 1; }
    .mc-pitch__card--reverse .mc-pitch__image { order: 2; }

    /* Programme */
    .mc-programme {
        padding: 40px 16px;
    }
    .mc-programme__header {
        margin-bottom: 24px;
    }
    .mc-programme__title {
        font-size: 32px;
    }
    .mc-programme__subtitle {
        font-size: 14px;
    }
    .mc-programme__grid {
        gap: 12px;
    }
    .mc-programme__card {
        width: 100%;
        padding: 20px;
        border-radius: 16px;
    }
    .mc-programme__card-title {
        font-size: 20px;
    }
    .mc-programme__card-text {
        font-size: 13px;
    }
    .mc-programme__card-icon {
        width: 44px;
        height: 44px;
    }
    .mc-programme__card-icon svg {
        width: 20px;
        height: 20px;
    }

    /* FAQ */
    .mc-faq {
        padding: 40px 16px;
    }
    .mc-faq__header {
        margin-bottom: 32px;
    }
    .mc-faq__title {
        font-size: 48px;
        letter-spacing: -1.5px;
    }
    .mc-faq__label {
        font-size: 16px;
    }
    .mc-faq__list {
        gap: 16px;
    }
    .mc-faq__question {
        font-size: 20px;
        gap: 20px;
        letter-spacing: -0.5px;
    }
    .mc-faq__chevron {
        width: 20px;
        height: 20px;
    }
    .mc-faq__answer-inner {
        font-size: 14px;
        line-height: 1.5;
    }

    /* CTA — full screen mobile */
    .mc-cta {
        padding: 32px 16px;
        min-height: 100vh;
        min-height: 100dvh;
    }
    .mc-cta__label {
        font-size: 16px;
    }
    .mc-cta__title {
        font-size: 48px;
        letter-spacing: -1.5px;
    }
    .mc-cta__text {
        font-size: 14px;
    }
    .btn-cta-final__pill {
        font-size: 14px;
        height: 56px;
        padding: 0 28px;
    }
    .btn-cta-final__circle {
        width: 56px;
        height: 56px;
    }
    .mc-cta__disclaimer {
        font-size: 12px;
    }

    /* Footer */
    .mc-footer__inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .mc-footer__copy {
        text-align: center;
        font-size: 12px;
    }

    /* Header */
    .mc-header__cta-pill {
        font-size: 12px;
        height: 36px;
        padding: 0 16px;
    }
}

/* ============================================
   RESPONSIVE — TABLET (768px - 1023px)
   ============================================ */
@media (min-width: 768px) and (max-width: 1023px) {
    .mc-stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .mc-pitch__card-grid {
        grid-template-columns: 1fr 1fr;
    }
    .mc-programme__card {
        width: calc((100% - 40px) / 2);
    }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .mc-programme__card {
        width: calc((100% - 80px) / 3);
    }
}
