/* ============================================================
   PRESTATION — Team Building Barcelone
   Feuille de styles extraite de prestation.php
   ============================================================ */

/* ---------- Base & reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: Inter, sans-serif;
    background: #fafaf8;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
a {
    color: inherit;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Utilitaires images ---------- */
.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.abs-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- Layout ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section {
    padding: 84px 40px;
}
.section--intro {
    padding: 80px 40px;
}
.section--light {
    background: #fafaf8;
}
.section--white {
    background: #fff;
}
.section--dark {
    background: #0f1f06;
    color: #fff;
}
.section--bordered {
    border-top: 1px solid #e8edd8;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
}
.two-col--center {
    align-items: center;
}
.two-col--start {
    align-items: start;
}

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

/* ---------- En-têtes de section ---------- */
.section-head {
    text-align: center;
    margin-bottom: 48px;
}
.section-head--lg {
    margin-bottom: 52px;
}

.eyebrow {
    display: inline-block;
    background: #f0f7e8;
    color: #3d6b1a;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.eyebrow--dark {
    background: rgba(133, 189, 74, 0.12);
    color: #85bd4a;
}

.section-title {
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
    color: #000;
}
.em-green {
    color: #85bd4a;
    font-style: italic;
}

/* ---------- Boutons ---------- */
.btn--white {
    background: #fff;
    color: #0f1f06;
    padding: 16px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn--white:hover {
    background: #f0f7e8;
}
.btn-arrow {
    display: inline-flex;
    width: 24px;
    height: 24px;
    background: #85bd4a;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
}

.btn--outline-light {
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 15px 26px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
}
.btn--outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.btn-green {
    display: inline-block;
    background: #85bd4a;
    color: #fff;
    padding: 14px 32px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}
.btn-green:hover {
    background: #6fa832;
}
.btn-green--devis {
    padding: 15px 28px;
}

.btn--outline-green {
    border: 2px solid rgba(133, 189, 74, 0.35);
    color: #c8e6a0;
    padding: 15px 24px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}
.btn--outline-green:hover {
    border-color: #85bd4a;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 660px;
    display: flex;
    background: #0f1f06;
}
.hero-wash {
    position: absolute;
    inset: 0;
    background: linear-gradient(98deg, rgba(18, 42, 8, 0.97) 0%, rgba(44, 92, 24, 0.9) 26%, rgba(90, 138, 48, 0.55) 46%, rgba(133, 189, 74, 0.12) 64%, rgba(133, 189, 74, 0) 80%);
}
.hero-wash-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 24, 4, 0.55) 0%, transparent 38%);
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.hero-breadcrumb {
    padding-top: 32px;
    font-size: 13px;
    color: #c8e6a0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.crumb {
    color: #c8e6a0;
    text-decoration: none;
}
.crumb:hover {
    text-decoration: underline;
}
.crumb-sep {
    color: rgba(200, 230, 160, 0.5);
}
.crumb-current {
    color: #fff;
}

.hero-bottom {
    /* padding-bottom: 56px; */
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-text {
    max-width: 620px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 7px 16px;
    border-radius: 20px;
    margin-bottom: 26px;
}
.hero-badge-txt {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}
.hero-title {
    font-family: "Unbounded", sans-serif;
    font-size: clamp(40px, 5.2vw, 72px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 22px;
    color: #fff;
}
.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin-bottom: 34px;
    font-weight: 300;
    text-wrap: pretty;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0px;
}

.hero-card {
    background: rgba(15, 31, 6, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 22px 24px;
    min-width: 230px;
}
.hero-avatars {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}
.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(15, 31, 6, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.hero-avatars .avatar + .avatar {
    margin-left: -12px;
}
.avatar--1 {
    background: linear-gradient(135deg, #9ccc5f, #6fa832);
}
.avatar--2 {
    background: linear-gradient(135deg, #7fb060, #4d6e35);
}
.avatar--3 {
    background: linear-gradient(135deg, #b8d990, #85bd4a);
}
.avatar--plus {
    background: #85bd4a;
    font-size: 16px;
}

.hero-rating {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.hero-rating-score {
    font-family: "Unbounded", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}
.hero-rating-stars {
    color: #f5b70a;
    font-size: 14px;
    letter-spacing: 1px;
}
.hero-rating-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-top: 4px;
}

/* ============================================================
   INTRO
   ============================================================ */
.intro-title {
    font-size: clamp(28px, 3vw, 38px);
    margin-bottom: 22px;
}
.intro-p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
    text-wrap: pretty;
}
.intro-p:last-child {
    margin-bottom: 0;
}

.intro-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 12px;
}
.mosaic-cell {
    border-radius: 12px;
    overflow: hidden;
}
.mosaic-tall {
    grid-row: span 2;
}

/* ============================================================
   ACTIVITÉS
   ============================================================ */
.acts-title {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    margin-bottom: 14px;
    color: #fff;
}
.acts-sub {
    font-size: 16px;
    color: #8ab070;
    max-width: 560px;
    margin: 0 auto;
    text-wrap: pretty;
}
.acts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

/* Carte activité (base partagée + survol) */
.act-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.act-card img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.act-card:hover img {
    transform: scale(1.06);
}
.act-card .act-ov {
    transition: background 0.4s ease;
}
.act-card:hover .act-ov {
    background: linear-gradient(to top, rgba(5, 20, 2, 0.95) 0%, rgba(5, 20, 2, 0.35) 55%, rgba(5, 20, 2, 0.05) 100%) !important;
}
.act-card .act-desc {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.45s ease,
        opacity 0.35s ease;
}
.act-card:hover .act-desc {
    max-height: 140px;
    opacity: 1;
}

.act-card--format {
    height: 380px;
    border-radius: 14px;
}
.act-card--tile {
    height: 300px;
    border-radius: 16px;
    display: block;
    text-decoration: none;
}

.act-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 20, 2, 0.9) 0%, rgba(5, 20, 2, 0.25) 55%, transparent 100%);
}
.act-ov--tile {
    background: linear-gradient(to top, rgba(5, 20, 2, 0.92) 0%, rgba(5, 20, 2, 0.3) 55%, transparent 100%);
}

.act-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(133, 189, 74, 0.3);
    color: #85bd4a;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.act-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 26px 24px;
}
.act-title {
    font-family: "Unbounded", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
}
.act-desc-p {
    font-size: 13px;
    color: #c5e0a3;
    line-height: 1.65;
    margin-bottom: 10px;
}
.act-meta {
    font-size: 12px;
    color: #85bd4a;
    font-weight: 600;
}
.acts-cta {
    text-align: center;
    margin-top: 36px;
}

/* ============================================================
   PROGRAMME TYPE
   ============================================================ */
.programme-sticky {
    position: sticky;
    top: 100px;
}
.programme-title {
    font-size: clamp(28px, 3vw, 38px);
    margin-bottom: 20px;
}
.programme-intro {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 28px;
    text-wrap: pretty;
}
.programme-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    height: 280px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.timeline-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    align-items: start;
}
.timeline-time {
    text-align: right;
    padding-top: 1px;
}
.timeline-hour {
    font-family: "Unbounded", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #0f1f06;
    letter-spacing: -0.3px;
}
.timeline-content {
    position: relative;
    border-left: 1.5px solid #dbe6cb;
    padding-left: 28px;
    padding-bottom: 36px;
}
.timeline-dot {
    position: absolute;
    left: -6.5px;
    top: 5px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #85bd4a;
    box-shadow: 0 0 0 4px #fafaf8;
}
.timeline-title {
    font-family: "Unbounded", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 7px;
    line-height: 1.3;
}
.timeline-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    text-wrap: pretty;
}

/* ============================================================
   LIEUX
   ============================================================ */
.lieux-title {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    margin-bottom: 14px;
}
.lieux-sub {
    font-size: 16px;
    color: #6b7280;
    max-width: 540px;
    margin: 0 auto;
    text-wrap: pretty;
}

/* Carte lieu (survol image partagé) */
.lieu-card img {
    transition: transform 0.6s ease;
}
.lieu-card:hover img {
    transform: scale(1.05);
}

.place-card {
    background: #fafaf8;
    border: 1.5px solid #e8edd8;
    border-radius: 14px;
    overflow: hidden;
}
.place-card:hover {
    box-shadow: 0 12px 40px rgba(15, 31, 6, 0.1);
    border-color: #c8e6a0;
}
.place-img-wrap {
    height: 220px;
    overflow: hidden;
}
.place-body {
    padding: 24px;
}
.place-kicker {
    font-size: 11px;
    font-weight: 700;
    color: #85bd4a;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.place-title {
    font-family: "Unbounded", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.place-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
    text-wrap: pretty;
}

/* ============================================================
   BANDE STATS
   ============================================================ */
.stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #85bd4a;
    color: #fff;
}
.stat {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stat:last-child {
    border-right: none;
}
.stat-num {
    font-family: "Unbounded", sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 6px;
}

/* ============================================================
   CAS CLIENT
   ============================================================ */
.cas-title {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    color: #fff;
}
.cas-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 40px;
}
.cas-media {
    border-radius: 16px;
    overflow: hidden;
    height: 440px;
    position: relative;
}
.cas-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(5, 15, 2, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(133, 189, 74, 0.3);
    border-radius: 10px;
    padding: 14px 18px;
}
.cas-badge-top {
    font-size: 11px;
    color: #85bd4a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cas-badge-sub {
    font-size: 13px;
    color: #c5e0a3;
    margin-top: 3px;
}
.cas-block {
    margin-bottom: 28px;
}
.cas-label {
    font-size: 11px;
    color: #85bd4a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.cas-text {
    font-size: 15px;
    color: #a8c98a;
    line-height: 1.75;
    text-wrap: pretty;
}
.cas-result {
    background: rgba(133, 189, 74, 0.1);
    border-left: 3px solid #85bd4a;
    border-radius: 0 10px 10px 0;
    padding: 20px 24px;
}
.cas-quote {
    font-size: 15px;
    color: #fff;
    line-height: 1.7;
    font-style: italic;
}
.cas-author {
    font-size: 13px;
    color: #7fb060;
    margin-top: 12px;
}

/* ============================================================
   BUDGET
   ============================================================ */
.budget-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 48px;
}
.budget-title {
    font-size: clamp(26px, 3vw, 38px);
}
.budget-intro {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    text-wrap: pretty;
}
.budget-tiers {
    margin-bottom: 24px;
}

.tier {
    background: #fafaf8;
    border: 1.5px solid #e8edd8;
    border-radius: 14px;
    padding: 32px;
}
.tier:hover {
    border-color: #c8e6a0;
    box-shadow: 0 8px 28px rgba(15, 31, 6, 0.06);
}
.tier--featured {
    background: #0f1f06;
    border: 1.5px solid #0f1f06;
    position: relative;
    color: #fff;
}
.tier--featured:hover {
    border-color: #0f1f06;
    box-shadow: none;
}
.tier-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: #85bd4a;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
}
.tier-kicker {
    font-size: 11px;
    font-weight: 700;
    color: #85bd4a;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.tier-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}
.tier-price {
    font-family: "Unbounded", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #0f1f06;
}
.tier-price--light {
    color: #fff;
}
.tier-price-dim {
    color: #d3dcc7;
}
.tier-price-dim--dark {
    color: #3d5a28;
}
.tier-price-note {
    font-size: 13px;
    color: #9ca3af;
}
.tier-price-note--green {
    color: #8ab070;
}
.tier-sub {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 20px;
}
.tier-sub--green {
    color: #8ab070;
}
.tier-divider {
    height: 1px;
    background: #e8edd8;
    margin-bottom: 18px;
}
.tier-divider--dark {
    background: rgba(133, 189, 74, 0.2);
}
.tier-list {
    font-size: 13px;
    color: #374151;
    line-height: 1.9;
}
.tier-list--green {
    color: #c5e0a3;
}
.tier-example {
    margin-top: 18px;
    background: #f0f7e8;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 12px;
    color: #3d6b1a;
    line-height: 1.6;
}
.tier-example--dark {
    background: rgba(133, 189, 74, 0.12);
    color: #c5e0a3;
}
.tier-example--dark strong {
    color: #fff;
}

.factors {
    background: #fafaf8;
    border-radius: 14px;
    padding: 32px 36px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 36px;
    align-items: center;
}
.factors-head {
    max-width: 220px;
}
.factors-title {
    font-family: "Unbounded", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}
.factors-sub {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}
.factors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.factor {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.factor-bullet {
    color: #85bd4a;
    font-weight: 700;
}
.factor-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}
.factor-detail {
    font-size: 12px;
    color: #9ca3af;
}
.budget-note {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 16px;
    text-align: center;
}

/* ============================================================
   DEVIS / CTA
   ============================================================ */
.devis-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 60px rgba(15, 31, 6, 0.12);
    padding: 0;
}
.devis-media {
    position: relative;
    min-height: 480px;
}
.devis-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 31, 6, 0.55), rgba(15, 31, 6, 0.15));
}
.devis-panel {
    background: #0f1f06;
    color: #fff;
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.devis-title {
    font-size: 30px;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: #FFF;
}
.devis-lead {
    font-size: 15px;
    color: #8ab070;
    line-height: 1.75;
    margin-bottom: 32px;
    text-wrap: pretty;
}
.devis-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}
.devis-point {
    display: flex;
    align-items: center;
    gap: 12px;
}
.devis-check {
    color: #85bd4a;
    font-weight: 700;
    font-size: 16px;
}
.devis-point-txt {
    font-size: 14px;
    color: #c5e0a3;
}
.devis-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}
.faq-title {
    font-size: clamp(26px, 3vw, 38px);
}
.faq-list {
    display: flex;
    flex-direction: column;
}
.faq-item {
    border-bottom: 1px solid #e8edd8;
}
.faq-q {
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    font-family: Inter, sans-serif;
    list-style: none;
}
.faq-q::-webkit-details-marker {
    display: none;
}
.faq-q-txt {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    text-wrap: pretty;
}
.faq-chevron {
    font-size: 22px;
    color: #85bd4a;
    flex-shrink: 0;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s ease;
}
.faq-item[open] .faq-chevron {
    transform: rotate(45deg);
}
.faq-a {
    padding: 0 0 24px;
    border-left: 3px solid #85bd4a;
    padding-left: 20px;
    margin-left: 4px;
}
.faq-a-txt {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    text-wrap: pretty;
}

/* ============================================================
   AUTRES PRESTATIONS
   ============================================================ */
.autres-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.autres-title {
    font-size: clamp(26px, 3vw, 38px);
}
.autres-intro {
    font-size: 15px;
    color: #6b7280;
    max-width: 340px;
    line-height: 1.7;
    text-wrap: pretty;
}
.tile-icon {
    position: absolute;
    top: 18px;
    left: 18px;
    font-size: 22px;
}
.tile-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 20px;
}
.tile-title {
    font-family: "Unbounded", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.tile-desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
    margin-bottom: 12px;
}
.tile-link {
    font-size: 13px;
    color: #85bd4a;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
