/* ============================================================
   "About this procedure" — shared dark section
   Used on all surgery pages (face, body, breast, other).
   Procedure-specific content stays inline in each page;
   styling is centralised here to keep pages light & consistent.
   ============================================================ */

.tt-about,
.tt-about *,
.tt-about *::before,
.tt-about *::after { box-sizing: border-box; }

.tt-about p,
.tt-about h2,
.tt-about h3,
.tt-about dl,
.tt-about dt,
.tt-about dd,
.tt-about span {
    background: transparent !important;
    margin: 0;
    padding: 0;
    border: none;
    text-align: inherit;
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;
}
.tt-about li::before,
.tt-about li::after,
.tt-about dt::before,
.tt-about dt::after,
.tt-about dd::before,
.tt-about dd::after { content: none !important; background: none !important; }
.tt-about a:hover,
.tt-about a:focus { background: transparent !important; }

/* === SECTION === */
.tt-about {
    display: block;
    position: relative;
    background: #1E242A;
    color: #fff;
    padding: clamp(40px, 5vw, 70px) max(24px, 5vw);
    overflow: hidden;
    width: 100%;
}
.tt-about::after {
    content: "";
    position: absolute;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 0%, rgba(192,160,98,0.5) 50%, transparent 100%);
    height: 1px;
    left: 0;
    right: 0;
    bottom: 0;
}
.tt-about-inner {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
}

/* === HEAD === */
.tt-about-head {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px;
    background: transparent;
    border: none;
    padding: 0;
    width: 100%;
    height: auto;
    display: block;
}
.tt-about-kicker {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #C0A062;
    margin-bottom: 22px;
}
.tt-about-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(36px, 4.4vw, 58px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.6px;
    color: #fff;
    margin: 0 0 28px;
}
.tt-about-title .ttat-light,
.tt-about-title .ttat-italic {
    display: inline;
    font-style: normal;
    font-weight: 500;
    color: #fff;
}
.tt-about-intro {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    margin: 0;
    font-weight: 400;
}
.tt-about-divider {
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(192,160,98,0.5);
    margin: 28px auto 0;
}

/* === GRID OF GROUPS === */
.tt-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
}
.tt-about-group {
    padding: 4px 32px;
    position: relative;
}
.tt-about-group + .tt-about-group {
    border-left: 1px solid rgba(255,255,255,0.07);
}
.tt-about-group-title {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C0A062;
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(192,160,98,0.22);
    position: relative;
}
.tt-about-group-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 28px;
    height: 1px;
    background: #C0A062;
}

/* === ROWS === */
.tt-about-row {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tt-about-row:last-child { border-bottom: none; }
.tt-about-row dt {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tt-about-row dt i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    font-size: 11px;
    color: #C0A062;
    background: rgba(192,160,98, 0.10);
    border: 1px solid rgba(192,160,98, 0.25);
    border-radius: 50%;
    flex-shrink: 0;
}
.tt-about-row dd {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.94);
    margin: 0;
    font-weight: 400;
}
.tt-about-row dd strong {
    color: #C0A062;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.3px;
    line-height: 1;
    margin-left: 4px;
    vertical-align: -2px;
}
.tt-about-row dd [itemprop="priceCurrency"] {
    color: #C0A062;
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    margin-left: 4px;
    vertical-align: -1px;
}
.ttar-tag {
    display: inline-block;
    margin-left: 6px;
    padding: 3px 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #C0A062;
    border: 1px solid rgba(192,160,98,0.35);
    border-radius: 999px;
}

/* === RESPONSIVE === */
/* Tablette + mobile : grille 1 colonne + tout le contenu centré */
@media (max-width: 980px) {
    .tt-about-grid { grid-template-columns: 1fr; }
    .tt-about-group {
        padding: 28px 16px;
        text-align: center;
    }
    .tt-about-group + .tt-about-group {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.07);
    }
    .tt-about-group-title {
        margin-left: auto;
        margin-right: auto;
        display: inline-block;
        padding-bottom: 12px;
        text-align: center;
    }
    .tt-about-group-title::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .tt-about-row dt {
        justify-content: center;
        text-align: center;
    }
    .tt-about-row dd { text-align: center; }
}
