:root {
    --ftb-blue: #17135f;
    --ftb-navy: #0b093b;
    --ftb-red: #ed111c;
    --ftb-ink: #20232a;
    --ftb-muted: #667085;
    --ftb-light: #f4f5f8;
    --ftb-white: #fff;
    --ftb-radius: 16px;
    --ftb-shadow: 0 18px 50px rgba(18, 16, 76, .11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ftb-ink);
    font-family: Inter, Arial, sans-serif;
    background: #fff;
}

.ftb-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.ftb-home h1,
.ftb-home h2,
.ftb-home h3,
.ftb-header strong,
.ftb-page-head h1,
.ftb-footer h2,
.ftb-footer h3 {
    font-family: Montserrat, Arial, sans-serif;
}

/* Taille des titres du slider FTB */
.ftb-slider .ftb-hero h1 {
    font-size: clamp(32px, 3.7vw, 54px);
    line-height: 1.08;
    max-width: 700px;
}

.ftb-slider .ftb-hero__content {
    max-width: 760px;
}

@media (max-width: 900px) {
    .ftb-slider .ftb-hero h1 {
        font-size: clamp(30px, 6vw, 46px);
        max-width: 620px;
    }
}

@media (max-width: 600px) {
    .ftb-slider .ftb-hero h1 {
        font-size: 34px;
        line-height: 1.1;
    }
}
/* =========================================================
   ACCESSIBILITÉ
   ========================================================= */

.ftb-skip {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 9999;
    background: #fff;
    padding: 12px;
}

.ftb-skip:focus {
    top: 10px;
}


/* =========================================================
   TOPBAR
   ========================================================= */

.ftb-topbar {
    background: var(--ftb-navy);
    color: #d9daf0;
    font-size: 12px;
}

.ftb-topbar .ftb-container {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ftb-topbar .ftb-container > div {
    display: flex;
    gap: 24px;
}

.ftb-topbar a {
    color: #fff;
    text-decoration: none;
}


/* =========================================================
   HEADER
   ========================================================= */

.ftb-header {
    height: 92px;
    background: #fff;
    position: relative;
    z-index: 50;
    border-bottom: 1px solid #e9e9ef;
}

.ftb-header.is-sticky {
    position: fixed;
    inset: 0 0 auto;
    box-shadow: 0 8px 30px rgba(10, 8, 60, .12);
}

.ftb-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.ftb-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.ftb-brand__logo,
.custom-logo-link {
    display: flex;
}

.ftb-brand__logo img,
.custom-logo {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.ftb-brand__name {
    text-decoration: none;
    line-height: 1.05;
    text-transform: uppercase;
}

.ftb-brand__name strong {
    display: block;
    color: var(--ftb-blue);
    font-size: 14px;
}

.ftb-brand__name span {
    color: var(--ftb-red);
    font: 800 18px Montserrat;
}

.ftb-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.ftb-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 21px;
}

.ftb-menu li {
    margin: 0;
}

.ftb-menu a {
    font-size: 13px;
    font-weight: 700;
    color: var(--ftb-ink);
    text-decoration: none;
}

.ftb-menu a:hover {
    color: var(--ftb-red);
}

.ftb-header-cta {
    background: var(--ftb-red);
    color: #fff !important;
    padding: 12px 17px;
    border-radius: 7px;
    text-decoration: none;
    font: 700 13px Montserrat;
    white-space: nowrap;
}

.ftb-nav-toggle {
    display: none;
    border: 0;
    background: none;
    padding: 8px;
}

.ftb-nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ftb-blue);
    margin: 5px;
}


/* =========================================================
   HERO
   ========================================================= */

.ftb-hero {
    min-height: 650px;
    position: relative;
    display: grid;
    align-items: center;
    color: #fff;
    background: var(--ftb-navy) url('../images/hero-boxing.jpg') center/cover no-repeat;
}

.ftb-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(7, 6, 39, .96) 0%,
        rgba(12, 10, 60, .75) 43%,
        rgba(23, 19, 95, .08) 80%
    );
}

.ftb-hero__content {
    position: relative;
    z-index: 1;
    padding-block: 100px;
}

.ftb-kicker,
.ftb-eyebrow {
    color: #ff575f;
    text-transform: uppercase;
    font: 700 12px/1.4 Montserrat;
    letter-spacing: .16em;
}

.ftb-hero h1 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.04;
    max-width: 790px;
    margin: 16px 0 22px;
    color: #fff;
}

.ftb-hero p:not(.ftb-kicker) {
    font-size: 18px;
    line-height: 1.7;
    max-width: 620px;
}

.ftb-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.ftb-btn {
    display: inline-flex;
    padding: 15px 23px;
    border-radius: 8px;
    font: 700 14px Montserrat;
    text-decoration: none !important;
    transition: .2s;
}

.ftb-btn--red {
    background: var(--ftb-red);
    color: #fff;
}

.ftb-btn--ghost {
    border: 1px solid rgba(255, 255, 255, .6);
    color: #fff;
}

.ftb-btn:hover {
    transform: translateY(-2px);
}


/* =========================================================
   QUICK LINKS
   ========================================================= */

.ftb-quick {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: -42px;
    position: relative;
    z-index: 2;
    border-radius: var(--ftb-radius);
    overflow: hidden;
    box-shadow: var(--ftb-shadow);
}

.ftb-quick a {
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: #fff;
    text-decoration: none;
    border-right: 1px solid #e7e7ec;
    color: var(--ftb-ink);
}

.ftb-quick a:first-child {
    background: var(--ftb-red);
    color: #fff;
}

.ftb-quick strong {
    font: 700 17px Montserrat;
}

.ftb-quick span {
    font-size: 13px;
    opacity: .72;
    margin-top: 5px;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.ftb-section {
    padding-block: 92px;
}

.ftb-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 32px;
}

.ftb-heading span,
.ftb-page-head > span {
    color: var(--ftb-red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .12em;
}

.ftb-heading h2,
.ftb-about h2,
.ftb-contact h2 {
    font-size: clamp(30px, 3vw, 44px);
    color: var(--ftb-blue);
    margin: 5px 0;
}

.ftb-heading > a,
.ftb-link {
    color: var(--ftb-red);
    font-weight: 700;
    text-decoration: none;
}

.ftb-grid {
    display: grid;
    gap: 24px;
}

.ftb-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}


/* =========================================================
   CARDS
   ========================================================= */

.ftb-card {
    border-radius: var(--ftb-radius);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--ftb-shadow);
    margin: 0;
}

.ftb-card__image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.ftb-card__image img,
.ftb-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s;
}

.ftb-card:hover img,
.ftb-media:hover img {
    transform: scale(1.04);
}

.ftb-card__body {
    padding: 24px;
}

.ftb-card time {
    font-size: 12px;
    color: #777;
}

.ftb-card h2,
.ftb-card h3 {
    font: 700 18px/1.42 Montserrat;
    margin: 10px 0;
}

.ftb-card h2 a,
.ftb-card h3 a {
    color: var(--ftb-blue);
    text-decoration: none;
}

.ftb-card p {
    color: var(--ftb-muted);
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   ABOUT
   ========================================================= */

.ftb-about {
    padding-block: 92px;
    background: var(--ftb-light);
}

.ftb-about__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
}

.ftb-about p {
    line-height: 1.8;
}

.ftb-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ftb-stats div {
    background: #fff;
    border-radius: 12px;
    padding: 28px 15px;
    text-align: center;
    border-bottom: 4px solid var(--ftb-red);
}

.ftb-stats strong {
    display: block;
    color: var(--ftb-blue);
    font: 800 31px Montserrat;
}

.ftb-stats span {
    font-size: 12px;
}


/* =========================================================
   MEDIA
   ========================================================= */

.ftb-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--ftb-radius);
    background: var(--ftb-blue);
}

.ftb-media > span:last-child {
    position: absolute;
    inset: auto 0 0;
    padding: 50px 20px 18px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(transparent, rgba(0, 0, 0, .85));
}


/* =========================================================
   CONTACT
   ========================================================= */

.ftb-contact {
    padding-block: 82px;
    background: var(--ftb-blue);
    color: #fff;
}

.ftb-contact h2 {
    color: #fff;
}

.ftb-contact a {
    color: #fff;
}

.ftb-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.ftb-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ftb-social h3 {
    grid-column: 1 / -1;
}

.ftb-social a {
    border: 1px solid rgba(255, 255, 255, .22);
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
}


/* =========================================================
   CONTENT
   ========================================================= */

.ftb-content {
    padding: 70px 0 95px;
    min-height: 60vh;
}

.ftb-page-head {
    max-width: 900px;
    margin-bottom: 42px;
}

.ftb-page-head h1 {
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.08;
    color: var(--ftb-blue);
    margin: 10px 0;
}

.ftb-article {
    max-width: 900px;
}

.ftb-article__hero {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 38px;
}

.ftb-article__hero img {
    display: block;
    width: 100%;
    height: auto;
}

.ftb-prose {
    font-size: 17px;
    line-height: 1.85;
}

.ftb-prose h2 {
    color: var(--ftb-blue);
    font-family: Montserrat;
}

.ftb-pagination {
    margin-top: 40px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.ftb-footer {
    background: #09072f;
    color: #d4d5e4;
}

.ftb-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr 1fr .8fr;
    gap: 45px;
    padding-block: 65px;
}

.ftb-footer h2,
.ftb-footer h3 {
    color: #fff;
}

.ftb-footer h2 {
    font-size: 20px;
}

.ftb-footer h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.ftb-footer a {
    color: #d4d5e4;
    text-decoration: none;
}

.ftb-footer ul {
    list-style: none;
    padding: 0;
}

.ftb-footer li {
    margin: 8px 0;
}

.ftb-footer__brand .ftb-brand__logo img,
.ftb-footer__brand .custom-logo {
    width: 76px;
    height: 76px;
}

.ftb-footer__social {
    display: grid;
    gap: 8px;
}

.ftb-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 20px 0;
    font-size: 12px;
}

.ftb-footer__bottom .ftb-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.rtl .ftb-home,
.rtl .ftb-content {
    font-family: Cairo, Arial, sans-serif;
}


/* =========================================================
   SLIDER
   ========================================================= */

.ftb-languages ul {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ftb-languages li {
    margin: 0;
}

.ftb-languages li + li:before {
    content: '|';
    margin-inline-end: 8px;
    opacity: .55;
}

.ftb-languages .current-lang a {
    color: #ff646b;
    font-weight: 700;
}

.ftb-language-placeholder i {
    font-style: normal;
    margin-inline: 6px;
    opacity: .55;
}

.ftb-slider {
    position: relative;
    min-height: 650px;
    background: var(--ftb-navy);
    overflow: hidden;
}

.ftb-slider__track {
    position: relative;
    min-height: 650px;
}

.ftb-slider .ftb-hero {
    position: absolute;
    inset: 0;
    background-image: none;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.025);
    transition: opacity .75s ease, transform 7s ease, visibility .75s;
}

.ftb-slider .ftb-hero.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}

.ftb-slider__arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    background: rgba(8, 6, 46, .35);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: .2s;
}

.ftb-slider__arrow:hover,
.ftb-slider__arrow:focus {
    background: var(--ftb-red);
    border-color: var(--ftb-red);
}

.ftb-slider__prev {
    left: 24px;
}

.ftb-slider__next {
    right: 24px;
}

.ftb-slider__dots {
    position: absolute;
    z-index: 4;
    bottom: 68px;
    left: 50%;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.ftb-slider__dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: .2s;
}

.ftb-slider__dots button.is-active {
    width: 30px;
    border-radius: 5px;
    background: var(--ftb-red);
}


/* =========================================================
   TROUVER UN CLUB
   ========================================================= */

.ftb-club-finder {
    background: #f5f7fb;
    min-height: 70vh;
}

.ftb-club-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        120deg,
        #073f79 0%,
        #075296 58%,
        #083e74 100%
    );
    color: #fff;
}

.ftb-club-hero:before {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    right: 12%;
    top: -300px;
    border: 80px solid rgba(255, 255, 255, .05);
}

.ftb-club-hero__inner {
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.ftb-club-hero__eyebrow {
    display: block;
    color: #ff315f;
    text-transform: uppercase;
    letter-spacing: .16em;
    font: 800 11px Montserrat;
    margin-bottom: 7px;
}

.ftb-club-hero h1 {
    margin: 0;
    color: #fff;
    font: 800 clamp(34px, 4vw, 56px)/1.05 Montserrat;
}

.ftb-club-hero p {
    max-width: 680px;
    margin: 12px 0 0;
    color: #dbeaff;
    font-size: 16px;
}

.ftb-club-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    border-radius: 999px;
    background: #ed0750;
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
    white-space: nowrap;
}

.ftb-club-hero__back span {
    font-size: 20px;
    line-height: 1;
}

.ftb-club-shell {
    padding: 42px 0 82px;
}

.ftb-club-alert {
    display: grid;
    gap: 4px;
    margin-bottom: 22px;
    padding: 17px 20px;
    border: 1px solid #f3bac6;
    border-radius: 12px;
    background: #fff3f6;
    color: #73162a;
}

.ftb-club-alert small {
    opacity: .75;
}

.ftb-club-workspace {
    display: grid;
    grid-template-columns: minmax(300px, 34%) 1fr;
    gap: 18px;
    align-items: stretch;
}

.ftb-club-filters,
.ftb-club-map-wrap {
    background: #fff;
    border: 1px solid #dfe5ec;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(20, 52, 87, .07);
}

.ftb-club-filters {
    padding: 24px;
}

.ftb-club-filter-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 2px solid #ed0750;
}

.ftb-club-filter-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #eef5fc;
    color: #075296;
    font-size: 22px;
    font-weight: 800;
}

.ftb-club-filter-head span,
.ftb-club-list-head > div > span,
.ftb-club-map-kicker {
    display: block;
    color: #ed0750;
    text-transform: uppercase;
    letter-spacing: .11em;
    font-size: 10px;
    font-weight: 800;
}

.ftb-club-filter-head h2 {
    font: 800 19px Montserrat;
    color: #073f79;
    margin: 3px 0 0;
}

.ftb-club-field {
    display: grid;
    gap: 7px;
    margin: 0 0 16px;
}

.ftb-club-field label {
    color: #073f79;
    font-size: 12px;
    font-weight: 800;
}

.ftb-club-field select,
.ftb-club-field input {
    width: 100%;
    height: 45px;
    border: 1px solid #d6dde5;
    border-radius: 8px;
    background: #fff;
    padding: 0 13px;
    font: 500 13px Inter;
    color: #26374a;
    outline: none;
}

.ftb-club-field select:focus,
.ftb-club-field input:focus {
    border-color: #0a5ca6;
    box-shadow: 0 0 0 3px rgba(10, 92, 166, .1);
}

.ftb-club-btn {
    width: 100%;
    height: 45px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font: 800 12px Montserrat;
    margin-top: 6px;
}

.ftb-club-btn--primary {
    background: #ed0750;
    color: #fff;
}

.ftb-club-btn--secondary {
    background: #075296;
    color: #fff;
}


/* =========================================================
   CARTE LEAFLET
   ========================================================= */

.ftb-club-map-wrap {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 515px;
}

.ftb-club-map-toolbar {
    min-height: 72px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #e4e9ef;
}

.ftb-club-map-toolbar strong {
    display: block;
    color: #073f79;
    font: 800 17px Montserrat;
    margin-top: 2px;
}

.ftb-club-live-count {
    font-size: 12px;
    color: #5d6d7d;
}

.ftb-club-live-count b {
    display: inline-grid;
    place-items: center;
    min-width: 28px;
    height: 28px;
    margin-right: 6px;
    padding: 0 8px;
    border-radius: 999px;
    background: #075296;
    color: #fff;
}


/*
 * IMPORTANT :
 * Le conteneur doit avoir une hauteur réelle,
 * sinon Leaflet ne peut pas dessiner correctement.
 */
.ftb-club-map {
    width: 100%;
    min-height: 405px;
    height: 405px;
    flex: 1;
    position: relative;
    background: #dbeaf1;
    z-index: 1;
    overflow: hidden;
}

#ftb-club-map {
    width: 100%;
    min-height: 405px;
    height: 405px;
    position: relative;
    display: block;
}


/*
 * Leaflet
 */
#ftb-club-map.leaflet-container {
    width: 100%;
    min-height: 405px;
    height: 405px;
    position: relative;
    overflow: hidden;
    background: #dbeaf1;
    font-family: Inter, Arial, sans-serif;
}


/*
 * TRÈS IMPORTANT :
 * certains thèmes WordPress appliquent
 * max-width:100% sur toutes les images.
 * Cela casse les tuiles Leaflet.
 */
#ftb-club-map img {
    max-width: none !important;
}

#ftb-club-map img.leaflet-tile {
    width: 256px !important;
    height: 256px !important;
    max-width: none !important;
    max-height: none !important;
}


/*
 * Tuiles OpenStreetMap
 */
#ftb-club-map .leaflet-tile {
    width: 256px !important;
    height: 256px !important;
    max-width: none !important;
    max-height: none !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#ftb-club-map .leaflet-tile-pane {
    opacity: 1 !important;
    visibility: visible !important;
}


/*
 * Les éléments Leaflet sont positionnés
 * absolument par la librairie.
 */
#ftb-club-map .leaflet-pane,
#ftb-club-map .leaflet-tile,
#ftb-club-map .leaflet-marker-icon,
#ftb-club-map .leaflet-marker-shadow,
#ftb-club-map .leaflet-pane svg,
#ftb-club-map .leaflet-pane canvas {
    position: absolute;
}


/*
 * Marqueurs
 */
#ftb-club-map .leaflet-marker-icon,
#ftb-club-map .leaflet-marker-shadow {
    max-width: none !important;
    max-height: none !important;
}


/*
 * Contrôles Leaflet
 */
#ftb-club-map .leaflet-control {
    z-index: 800;
}

#ftb-club-map .leaflet-control-zoom {
    border: none;
    box-shadow: 0 4px 16px rgba(10, 35, 70, .18);
}

#ftb-club-map .leaflet-control-zoom a {
    color: #073f79;
    background: #fff;
}


/*
 * Attribution OpenStreetMap
 */
#ftb-club-map .leaflet-control-attribution {
    font-size: 9px;
}


/*
 * Popups
 */
.ftb-map-popup {
    display: grid;
    gap: 4px;
    min-width: 160px;
}

.ftb-map-popup strong {
    color: #073f79;
    font: 800 13px Montserrat;
}

.ftb-map-popup span {
    display: block;
    color: #68798a;
    font-size: 11px;
}

.ftb-map-popup a {
    color: #ed0750;
    text-decoration: none;
    font-weight: 700;
}


/*
 * Ancien circleMarker éventuel.
 */
.leaflet-interactive {
    stroke: #fff;
}


/*
 * Note sous la carte
 */
.ftb-club-map-note {
    padding: 9px 15px;
    background: #f7fafc;
    color: #66798b;
    font-size: 10px;
    border-top: 1px solid #e2e7ec;
}


/* =========================================================
   LISTE DES CLUBS
   ========================================================= */

.ftb-club-list-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin: 38px 0 18px;
}

.ftb-club-list-head h2 {
    margin: 4px 0 0;
    color: #073f79;
    font: 800 28px Montserrat;
}

.ftb-club-count {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c7a89;
    font-size: 12px;
}

.ftb-club-count strong {
    display: grid;
    place-items: center;
    min-width: 43px;
    height: 34px;
    padding: 0 10px;
    border-radius: 7px;
    background: #073f79;
    color: #fff;
    font: 800 14px Montserrat;
}

.ftb-club-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ftb-club-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #dde4eb;
    border-radius: 11px;
    box-shadow: 0 7px 23px rgba(24, 57, 92, .06);
    transition: transform .2s, box-shadow .2s;
}

.ftb-club-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(24, 57, 92, .12);
}

.ftb-club-card[hidden] {
    display: none !important;
}

.ftb-club-card__top {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 14px;
    background: #075296;
    color: #fff;
}

.ftb-club-card__top span {
    font: 800 11px Montserrat;
}

.ftb-club-card__top small {
    padding: 4px 7px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .14);
    font-size: 9px;
}

.ftb-club-card__body {
    padding: 17px;
}

.ftb-club-card__brand {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid #edf0f4;
}

.ftb-club-card__logo {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid #e4e9ef;
    border-radius: 10px;
    background: #f8fafc;
    padding: 7px;
}

.ftb-club-card__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ftb-club-card h3 {
    margin: 0;
    color: #073f79;
    font: 800 14px/1.35 Montserrat;
    text-transform: uppercase;
}

.ftb-club-card__brand p {
    margin: 5px 0 0;
    color: #7b8793;
    font-size: 10px;
}

.ftb-club-meta {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.ftb-club-meta li {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    color: #5d6975;
    font-size: 11px;
    line-height: 1.45;
}

.ftb-club-meta li > span {
    color: #ed0750;
    font-size: 11px;
    padding-top: 1px;
}

.ftb-club-meta a {
    color: #075296;
    text-decoration: none;
    font-weight: 700;
}

.ftb-club-empty {
    padding: 34px;
    margin-bottom: 18px;
    text-align: center;
    border: 1px dashed #cbd5df;
    border-radius: 12px;
    background: #fff;
}

.ftb-club-empty strong,
.ftb-club-empty span {
    display: block;
}

.ftb-club-empty strong {
    color: #073f79;
    font: 800 17px Montserrat;
}

.ftb-club-empty span {
    margin-top: 6px;
    color: #7b8793;
    font-size: 12px;
}


/* =========================================================
   PAGES PREMIUM
   ========================================================= */

.ftb-page-shell {
    background: #f7f9fc;
    min-height: 65vh;
}

.ftb-page-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 76px;
    background: linear-gradient(
        120deg,
        #08062f 0%,
        #0b1d50 58%,
        #0b4e8a 100%
    );
    color: #fff;
}

.ftb-page-hero:after {
    content: "";
    position: absolute;
    right: -90px;
    top: -170px;
    width: 470px;
    height: 470px;
    border: 90px solid rgba(255, 255, 255, .045);
    border-radius: 50%;
}

.ftb-page-hero--red {
    background: linear-gradient(
        120deg,
        #08062f 0%,
        #4b0a27 58%,
        #a4083f 100%
    );
}

.ftb-page-hero .ftb-container {
    position: relative;
    z-index: 1;
}

.ftb-page-hero h1 {
    max-width: 850px;
    margin: 7px 0 10px;
    color: #fff;
    font: 800 clamp(40px, 5vw, 66px)/1.04 Montserrat;
}

.ftb-page-hero p {
    max-width: 760px;
    margin: 0;
    color: #dce7f6;
    font-size: 17px;
    line-height: 1.75;
}

.ftb-page-hero .ftb-eyebrow {
    color: #ff315f;
}


/* =========================================================
   SERVICES
   ========================================================= */

.ftb-services-band {
    padding: 62px 0;
    background: #0a0a38;
    color: #fff;
}

.ftb-services-band__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, .95fr);
    gap: 70px;
    align-items: center;
}

.ftb-services-band h2 {
    margin: 8px 0 12px;
    color: #fff;
    font: 800 clamp(30px, 3.5vw, 46px)/1.1 Montserrat;
}

.ftb-services-band p {
    max-width: 610px;
    margin: 0;
    color: #cdd5ed;
}

.ftb-service-actions {
    display: grid;
    gap: 10px;
}

.ftb-service-actions > a {
    display: grid;
    grid-template-columns: 42px 1fr 30px;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    text-decoration: none;
    transition: .2s;
}

.ftb-service-actions > a:hover {
    transform: translateX(4px);
    background: #ed0750;
    border-color: #ed0750;
}

.ftb-service-actions b {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .1);
    font: 800 12px Montserrat;
}

.ftb-service-actions span {
    display: grid;
    gap: 3px;
}

.ftb-service-actions strong {
    font: 800 15px Montserrat;
}

.ftb-service-actions small {
    color: #cfd6e9;
    font-size: 11px;
}

.ftb-service-actions i {
    font-style: normal;
    font-size: 24px;
    text-align: right;
}


/* =========================================================
   FEDERATION
   ========================================================= */

.ftb-federation-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 70px;
    align-items: center;
}

.ftb-federation-intro h2 {
    margin: 7px 0 18px;
    color: #090737;
    font: 800 clamp(30px, 4vw, 48px)/1.1 Montserrat;
}

.ftb-federation-intro p {
    color: #5c6876;
    line-height: 1.8;
}

.ftb-federation-panel {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 34px;
    border-radius: 18px;
    background: linear-gradient(155deg, #0b4e8a, #090737 70%);
    box-shadow: 0 20px 55px rgba(9, 7, 55, .18);
    color: #fff;
}

.ftb-federation-panel strong {
    margin: auto 0;
    font: 800 86px/1 Montserrat;
    color: rgba(255, 255, 255, .14);
}

.ftb-federation-panel span {
    padding: 11px 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    font: 700 13px Montserrat;
}

.ftb-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.ftb-values-grid article {
    padding: 28px;
    border-radius: 14px;
    background: #fff;
}

.ftb-values-grid b {
    color: #ed0750;
    font: 800 13px Montserrat;
}

.ftb-values-grid h3 {
    margin: 18px 0 10px;
    color: #090737;
    font: 800 22px Montserrat;
}

.ftb-values-grid p {
    margin: 0;
    color: #64707d;
    line-height: 1.7;
}

.ftb-service-card {
    padding: 28px;
    border: 1px solid #e3e8ee;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(20, 52, 87, .05);
}

.ftb-service-card > span {
    color: #ed0750;
    text-transform: uppercase;
    letter-spacing: .11em;
    font: 800 10px Montserrat;
}

.ftb-service-card h3 {
    margin: 14px 0 9px;
    color: #090737;
    font: 800 20px Montserrat;
}

.ftb-service-card p {
    margin: 0;
    color: #697583;
    line-height: 1.65;
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.ftb-contact-page {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 55px;
}

.ftb-contact-cards {
    display: grid;
    gap: 14px;
}

.ftb-contact-cards article {
    padding: 23px 25px;
    border: 1px solid #dfe5ec;
    border-radius: 12px;
    background: #fff;
}

.ftb-contact-cards span {
    display: block;
    margin-bottom: 8px;
    color: #ed0750;
    text-transform: uppercase;
    letter-spacing: .1em;
    font: 800 10px Montserrat;
}

.ftb-contact-cards strong,
.ftb-contact-cards a {
    color: #0b1d50;
    text-decoration: none;
    font: 700 16px/1.5 Montserrat;
}

.ftb-contact-message {
    padding: 36px;
    border-radius: 16px;
    background: #0a0a38;
    color: #fff;
}

.ftb-contact-message h2 {
    margin: 8px 0 14px;
    color: #fff;
    font: 800 32px Montserrat;
}

.ftb-contact-message p {
    margin: 0 0 24px;
    color: #d1d8ea;
    line-height: 1.75;
}


/* =========================================================
   DOCUMENTS
   ========================================================= */

.ftb-doc-list {
    display: grid;
    gap: 13px;
}

.ftb-doc-card {
    display: grid;
    grid-template-columns: 60px 1fr 38px;
    gap: 18px;
    align-items: center;
    padding: 20px;
    border: 1px solid #e1e6ec;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 7px 22px rgba(20, 52, 87, .05);
}

.ftb-doc-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 11px;
    background: #fff0f4;
    color: #ed0750;
    font: 800 11px Montserrat;
}

.ftb-doc-card time {
    color: #8793a0;
    font-size: 10px;
}

.ftb-doc-card h2 {
    margin: 5px 0 6px;
    font: 800 17px Montserrat;
}

.ftb-doc-card h2 a {
    color: #0b1d50;
    text-decoration: none;
}

.ftb-doc-card p {
    margin: 0;
    color: #697583;
    font-size: 12px;
}

.ftb-doc-arrow {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eef3f9;
    color: #0b4e8a;
    text-decoration: none;
    font-size: 20px;
}


/* =========================================================
   MEDIA ARCHIVE
   ========================================================= */

.ftb-media-archive {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ftb-media--large {
    min-height: 315px;
}

.ftb-media--large span small {
    display: block;
    margin-bottom: 4px;
    color: #ffb3c6;
    font-size: 9px;
}

.ftb-news-archive .ftb-card__body h2 {
    margin: 8px 0 10px;
    font: 800 18px/1.35 Montserrat;
}

.ftb-news-archive .ftb-card__body h2 a {
    color: #090737;
    text-decoration: none;
}

.ftb-pagination {
    margin-top: 32px;
}

.ftb-pagination .nav-links {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.ftb-pagination .page-numbers {
    min-width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0 10px;
    border-radius: 7px;
    background: #fff;
    border: 1px solid #dfe5ec;
    color: #0b4e8a;
    text-decoration: none;
    font-weight: 700;
}

.ftb-pagination .current {
    background: #ed0750;
    border-color: #ed0750;
    color: #fff;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .ftb-brand__name {
        display: none;
    }

    .ftb-nav-toggle {
        display: block;
    }

    .ftb-nav {
        display: none;
        position: absolute;
        top: 92px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 24px 20px;
        box-shadow: 0 18px 30px rgba(10, 8, 60, .14);
    }

    .ftb-nav.is-open {
        display: flex;
        align-items: stretch;
        flex-direction: column;
    }

    .ftb-menu {
        align-items: stretch;
        flex-direction: column;
    }

    .ftb-header-cta {
        text-align: center;
    }

    .ftb-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 1020px) {

    .ftb-club-workspace {
        grid-template-columns: 1fr;
    }

    .ftb-club-filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 18px;
    }

    .ftb-club-filter-head {
        grid-column: 1 / -1;
    }

    .ftb-club-field {
        margin: 0;
    }

    .ftb-club-btn {
        margin: 0;
    }

    .ftb-club-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ftb-club-map-wrap {
        min-height: 470px;
    }

    .ftb-club-map,
    #ftb-club-map,
    #ftb-club-map.leaflet-container {
        height: 400px;
        min-height: 400px;
    }
}


@media (max-width: 900px) {

    .ftb-services-band__grid,
    .ftb-federation-intro,
    .ftb-contact-page {
        grid-template-columns: 1fr;
    }

    .ftb-values-grid,
    .ftb-media-archive {
        grid-template-columns: 1fr 1fr;
    }

    .ftb-services-band__grid {
        gap: 35px;
    }
}


@media (max-width: 800px) {

    .ftb-topbar .ftb-container > span {
        display: none;
    }

    .ftb-topbar .ftb-container {
        justify-content: center;
    }

    .ftb-quick,
    .ftb-grid--3,
    .ftb-about__grid,
    .ftb-contact__grid {
        grid-template-columns: 1fr;
    }

    .ftb-quick {
        margin-top: 0;
        width: 100%;
        border-radius: 0;
    }

    .ftb-heading {
        align-items: start;
        gap: 15px;
        flex-direction: column;
    }

    .ftb-stats {
        grid-template-columns: 1fr 1fr;
    }

    .ftb-hero {
        min-height: 570px;
        background-position: 64% center;
    }

    .ftb-hero__overlay {
        background: rgba(7, 6, 39, .78);
    }

    .ftb-section,
    .ftb-about,
    .ftb-contact {
        padding-block: 62px;
    }

    .ftb-footer__grid {
        grid-template-columns: 1fr;
    }

    .ftb-footer__bottom .ftb-container {
        flex-direction: column;
    }

    .ftb-social {
        grid-template-columns: 1fr;
    }

    .ftb-slider,
    .ftb-slider__track {
        min-height: 570px;
    }

    .ftb-slider__arrow {
        width: 40px;
        height: 40px;
    }

    .ftb-slider__prev {
        left: 10px;
    }

    .ftb-slider__next {
        right: 10px;
    }

    .ftb-slider__dots {
        bottom: 24px;
    }
}


@media (max-width: 700px) {

    .ftb-club-hero__inner {
        min-height: 230px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        padding-block: 34px;
    }

    .ftb-club-hero__back {
        align-self: flex-start;
    }

    .ftb-club-shell {
        padding-top: 22px;
    }

    .ftb-club-filters {
        display: block;
    }

    .ftb-club-field {
        margin-bottom: 14px;
    }

    .ftb-club-btn {
        margin-top: 7px;
    }

    .ftb-club-map-wrap {
        min-height: 420px;
    }

    .ftb-club-map,
    #ftb-club-map,
    #ftb-club-map.leaflet-container {
        min-height: 330px;
        height: 330px;
    }

    .ftb-club-map-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .ftb-club-grid {
        grid-template-columns: 1fr;
    }

    .ftb-club-list-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .ftb-club-list-head h2 {
        font-size: 24px;
    }
}


@media (max-width: 620px) {

    .ftb-page-hero {
        padding: 58px 0;
    }

    .ftb-values-grid,
    .ftb-media-archive {
        grid-template-columns: 1fr;
    }

    .ftb-doc-card {
        grid-template-columns: 50px 1fr;
    }

    .ftb-doc-arrow {
        display: none;
    }

    .ftb-service-actions > a {
        grid-template-columns: 38px 1fr 24px;
    }

    .ftb-federation-panel {
        min-height: 310px;
    }
}


@media (prefers-reduced-motion: reduce) {

    .ftb-slider .ftb-hero {
        transition: none;
    }
}
/* =========================================================
   E-LICENCE FTB
   ========================================================= */

.ftb-elicense {
    background: #f6f8fc;
}

.ftb-elicense-hero {
    padding: 75px 0;
    background:
        linear-gradient(
            120deg,
            #07062f 0%,
            #073f79 55%,
            #075dab 100%
        );
    color: #fff;
}

.ftb-elicense-eyebrow,
.ftb-elicense-kicker {
    display: block;
    color: #ff315f;
    text-transform: uppercase;
    letter-spacing: .14em;
    font: 800 11px Montserrat, Arial, sans-serif;
}

.ftb-elicense-hero h1 {
    margin: 8px 0 14px;
    color: #fff;
    font: 800 clamp(42px, 5vw, 68px)/1.05 Montserrat, Arial, sans-serif;
}

.ftb-elicense-hero p {
    max-width: 760px;
    margin: 0;
    color: #dbe8f7;
    font-size: 17px;
    line-height: 1.7;
}


/* Sections */

.ftb-elicense-section {
    padding: 75px 0;
}

.ftb-elicense-section-heading {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.ftb-elicense-number {
    display: grid;
    place-items: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #ed111c;
    color: #fff;
    font: 800 16px Montserrat, Arial, sans-serif;
}

.ftb-elicense-section-heading h2 {
    margin: 5px 0 0;
    color: #073f79;
    font: 800 clamp(27px, 3vw, 40px)/1.15 Montserrat, Arial, sans-serif;
}


/* Accès Club */

.ftb-elicense-access {
    padding-top: 55px;
}

.ftb-elicense-access-box {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 24px;
    padding: 42px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #dfe6ee;
    box-shadow: 0 15px 45px rgba(13, 55, 100, .08);
}

.ftb-elicense-access-content h2 {
    max-width: 760px;
    margin: 7px 0 14px;
    color: #073f79;
    font: 800 clamp(26px, 3vw, 39px)/1.15 Montserrat, Arial, sans-serif;
}

.ftb-elicense-access-content p {
    max-width: 800px;
    color: #657587;
    line-height: 1.75;
    margin: 0 0 25px;
}


/* Boutons */

.ftb-elicense-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 50px;
    padding: 0 23px;
    border-radius: 9px;
    text-decoration: none !important;
    font: 800 12px Montserrat, Arial, sans-serif;
    transition: .2s;
}

.ftb-elicense-btn:hover {
    transform: translateY(-2px);
}

.ftb-elicense-btn--red {
    background: #ed111c;
    color: #fff;
}

.ftb-elicense-btn--blue {
    background: #075296;
    color: #fff;
}

.ftb-elicense-btn--white {
    background: #fff;
    color: #073f79;
}


/* Présentation */

.ftb-elicense-presentation {
    background: #fff;
}

.ftb-elicense-description {
    max-width: 850px;
    margin-bottom: 35px;
    color: #657587;
    font-size: 16px;
    line-height: 1.8;
}

.ftb-elicense-description p {
    margin: 0 0 12px;
}

.ftb-elicense-tools {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 22px;
}

.ftb-elicense-tool-card {
    padding: 30px;
    border: 1px solid #dfe6ee;
    border-radius: 16px;
    background: #f9fbfd;
}

.ftb-elicense-tool-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}

.ftb-elicense-tool-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #eaf3fc;
    color: #075296;
    font: 800 13px Montserrat, Arial, sans-serif;
}

.ftb-elicense-tool-head > div > span {
    color: #ed111c;
    text-transform: uppercase;
    letter-spacing: .1em;
    font: 800 10px Montserrat, Arial, sans-serif;
}

.ftb-elicense-tool-head h3 {
    margin: 4px 0 0;
    color: #073f79;
    font: 800 20px Montserrat, Arial, sans-serif;
}

.ftb-elicense-tool-card > p {
    color: #657587;
    line-height: 1.7;
}


/* Vidéo */

.ftb-elicense-video {
    position: relative;
    overflow: hidden;
    margin-top: 22px;
    padding-top: 56.25%;
    border-radius: 13px;
    background: #080a16;
}

.ftb-elicense-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.ftb-elicense-video-placeholder {
    min-height: 300px;
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 13px;
    background:
        linear-gradient(
            135deg,
            #090737,
            #075296
        );
    color: #fff;
    text-align: center;
}

.ftb-elicense-video-placeholder > span {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #ed111c;
    font-size: 25px;
}

.ftb-elicense-video-placeholder strong {
    margin-top: 10px;
    font: 800 18px Montserrat, Arial, sans-serif;
}

.ftb-elicense-video-placeholder small {
    opacity: .7;
}


/* Guide */

.ftb-elicense-guide-list {
    padding: 0;
    margin: 22px 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.ftb-elicense-guide-list li {
    position: relative;
    padding-left: 27px;
    color: #536476;
    font-size: 13px;
}

.ftb-elicense-guide-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e5f6ed;
    color: #119858;
    font-size: 10px;
    font-weight: 900;
}

.ftb-elicense-coming {
    display: inline-block;
    padding: 12px 15px;
    border-radius: 8px;
    background: #edf2f7;
    color: #718096;
    font-size: 12px;
    font-weight: 700;
}


/* Assistance */

.ftb-elicense-assistance {
    padding: 75px 0;
    background: #090737;
}

.ftb-elicense-assistance-box {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: center;
}

.ftb-elicense-assistance .ftb-elicense-section-heading {
    margin-bottom: 13px;
}

.ftb-elicense-assistance h2 {
    color: #fff;
}

.ftb-elicense-assistance p {
    max-width: 720px;
    margin: 0;
    color: #cad4e7;
    line-height: 1.75;
}

.ftb-elicense-contact {
    display: grid;
    gap: 10px;
    padding: 28px;
    border-radius: 15px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
}

.ftb-elicense-contact strong {
    margin-bottom: 5px;
    color: #fff;
    font: 800 16px Montserrat, Arial, sans-serif;
}

.ftb-elicense-contact > a:not(.ftb-elicense-btn) {
    color: #dce7f6;
    text-decoration: none;
    font-size: 13px;
}

.ftb-elicense-contact .ftb-elicense-btn {
    margin-top: 12px;
}


/* Responsive */

@media (max-width: 900px) {

    .ftb-elicense-tools,
    .ftb-elicense-assistance-box {
        grid-template-columns: 1fr;
    }

    .ftb-elicense-assistance-box {
        gap: 35px;
    }
}

@media (max-width: 650px) {

    .ftb-elicense-hero {
        padding: 55px 0;
    }

    .ftb-elicense-section {
        padding: 55px 0;
    }

    .ftb-elicense-access-box {
        grid-template-columns: 1fr;
        padding: 27px;
    }

    .ftb-elicense-section-heading {
        flex-direction: column;
    }

    .ftb-elicense-tool-card {
        padding: 22px;
    }

    .ftb-elicense-video-placeholder {
        min-height: 230px;
    }
}
/* Contact Form 7 - FTB */

.ftb-contact-form {
    margin-top: 28px;
}

.ftb-contact-form .wpcf7 p {
    margin: 0 0 18px;
}

.ftb-contact-form .wpcf7 label {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.ftb-contact-form .wpcf7 input[type="text"],
.ftb-contact-form .wpcf7 input[type="email"],
.ftb-contact-form .wpcf7 input[type="tel"],
.ftb-contact-form .wpcf7 textarea {
    width: 100%;
    box-sizing: border-box;

    margin-top: 8px;
    padding: 14px 16px;

    border: 1px solid rgba(255,255,255,.22);
    border-radius: 9px;

    background: rgba(255,255,255,.09);
    color: #fff;

    font-size: 14px;
    outline: none;
}

.ftb-contact-form .wpcf7 input::placeholder,
.ftb-contact-form .wpcf7 textarea::placeholder {
    color: rgba(255,255,255,.55);
}

.ftb-contact-form .wpcf7 input:focus,
.ftb-contact-form .wpcf7 textarea:focus {
    border-color: #ed111c;
    background: rgba(255,255,255,.13);
}

.ftb-contact-form .wpcf7 textarea {
    min-height: 130px;
    resize: vertical;
}

.ftb-contact-form .wpcf7 input[type="submit"] {
    min-height: 50px;
    padding: 0 28px;

    border: 0;
    border-radius: 8px;

    background: #ed111c;
    color: #fff;

    font-weight: 700;
    cursor: pointer;

    transition: .2s ease;
}

.ftb-contact-form .wpcf7 input[type="submit"]:hover {
    background: #c90d17;
    transform: translateY(-1px);
}

.ftb-contact-form .wpcf7-not-valid-tip {
    color: #ff8b8b;
    font-size: 12px;
}

.ftb-contact-form .wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 12px 15px !important;

    border-radius: 8px;
    color: #fff;
}

/* =========================================================
   CONTENU WORDPRESS / ELEMENTOR
   Permet aux constructeurs visuels de gérer toute la largeur
   sans être enfermés dans les wrappers des templates historiques.
   ========================================================= */
.ftb-builder-content {
    width: 100%;
    margin: 0;
    padding: 0;
}

.ftb-builder-content > .elementor,
.ftb-builder-content > .elementor-location-single,
.ftb-builder-content > .elementor-location-archive {
    width: 100%;
}
