/* ==========================================================================
   07-home-hero-cls.css — Steele Dermatology home hero critical CSS
   --------------------------------------------------------------------------
   Inlined originally as <style id="aqua-critical-cls"> in functions.php.

   Source: frontend/uncode-child/functions.php:947-1078 (the wp_head action
           that printed this block before any async stylesheet loaded).

   Purpose: prevent Cumulative Layout Shift from Owl carousels and WPBakery
            elements that stack briefly before JS/CSS init on the home page.

   Status: NOT yet enqueued by functions.php. See docs/audit/css-restructure-recipe.md
           When swapping in: enqueue with high priority (early) on is_front_page()
           pages so it loads before render. The original inline-in-head approach
           may be preferable for LCP — verify before externalizing.
   ========================================================================== */

/* ── Hero wrapper (must match Section D to prevent CLS) ─────────────────
   No component padding at any width: the WPBakery row's native 36px
   gutters (all four sides) are the only spacing around the hero,
   matching every other Uncode row on the page. */
.aqua-hero-slider { position: relative; overflow: hidden; }

/* ── Hero row gutter on mobile ──────────────────────────────────────────
   Uncode's .row-parent gutter is 36px on all sides. On mobile the hero row
   (.steele-hero, el_class on the row) tightens to 18px. Specificity (0,4,0)
   outranks the parent's .main-container .row-container .row-parent (0,3,0)
   regardless of stylesheet order, so no !important is needed.
   Must match the inline critical CSS in functions.php. */
@media (max-width: 959px) {
	.vc_row.row-container.steele-hero > .row-parent {
		padding: 18px;
	}
}

/* ── Hero slider: show only the first slide before Owl inits ──────────── */
.aqua-hero-slider .ahs-carousel:not(.owl-loaded) {
	overflow: hidden;
	position: relative;
}
.aqua-hero-slider .ahs-carousel:not(.owl-loaded) .ahs-slide {
	display: flex !important;
	align-items: stretch;
	gap: 64px;
}
.aqua-hero-slider .ahs-carousel:not(.owl-loaded) .ahs-slide:not(:first-child) {
	position: absolute;
	left: -9999px;
	opacity: 0;
}
.aqua-hero-slider .ahs-carousel:not(.owl-loaded) .ahs-slide__left {
	flex: 0 0 480px;
	display: flex;
	align-items: flex-end;
}
.aqua-hero-slider .ahs-carousel:not(.owl-loaded) .ahs-slide__right {
	flex: 1;
	min-width: 0;
}
.aqua-hero-slider .ahs-carousel:not(.owl-loaded) .ahs-slide__right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.aqua-hero-slider .ahs-carousel:not(.owl-loaded) .ahs-slide__heading {
	font-family: var(--aqua-font-display);
	font-size: clamp(40px, 5.5vw, 80px);
	line-height: 0.95;
	font-weight: 300;
	letter-spacing: -0.0205em;
}
.aqua-hero-slider .ahs-carousel:not(.owl-loaded) .ahs-slide__body {
	font-family: var(--aqua-font-display);
	font-size: clamp(18px, 1.6vw, 22px);
	font-weight: 300;
	line-height: 1.4;
}

/* ── Generic Owl carousel: hide non-first items before init ───────────── */
.owl-carousel:not(.owl-loaded) {
	overflow: hidden;
}
.owl-carousel:not(.owl-loaded) > *:not(:first-child):not(.ahs-nav):not(.owl-stage-outer) {
	display: none !important;
}

/* ── Services cards: prevent stacking flash ──────────────────────────── */
.aqua-services-cards:not(.owl-loaded) {
	display: flex;
	gap: 40px;
	overflow: hidden;
}
.aqua-services-cards:not(.owl-loaded) .aqua-service-card {
	flex: 0 0 calc(33.333% - 27px);
	min-width: 0;
}

/* ── Reviews carousel: hide overflow before init ─────────────────────── */
.aqua-reviews-carousel:not(.owl-loaded) {
	display: flex;
	gap: 40px;
	overflow: hidden;
}
.aqua-reviews-carousel:not(.owl-loaded) > * {
	flex: 0 0 calc(33.333% - 27px);
	min-width: 0;
}

/* ── Responsive: hero stacks below 960px (Uncode's native mobile breakpoint;
      independent of the nav's 1249px hamburger band). Must match Section D. ── */
@media (max-width: 959px) {
	.aqua-hero-slider .ahs-carousel:not(.owl-loaded) .ahs-slide {
		flex-direction: column-reverse;
		gap: 24px;
	}
	.aqua-hero-slider .ahs-carousel:not(.owl-loaded) .ahs-slide__left {
		flex: none;
		width: 100%;
	}
	/* Stacked: image follows its natural aspect ratio (no crop) */
	.aqua-hero-slider .ahs-carousel:not(.owl-loaded) .ahs-slide__right img {
		height: auto;
	}
}
/* ── 960-1249px: two-column at natural image ratio (no crop) - the desktop
      fixed 480px column + 104px gap leaves the image a cropped sliver at
      these widths. Must match Section D. ── */
@media (min-width: 960px) and (max-width: 1249.98px) {
	.aqua-hero-slider .ahs-carousel:not(.owl-loaded) .ahs-slide {
		gap: 48px;
	}
	.aqua-hero-slider .ahs-carousel:not(.owl-loaded) .ahs-slide__left {
		flex: 0 0 40%;
	}
	.aqua-hero-slider .ahs-carousel:not(.owl-loaded) .ahs-slide__right img {
		height: auto;
	}
}
@media (max-width: 959px) {
	.aqua-services-cards:not(.owl-loaded) .aqua-service-card {
		flex: 0 0 80%;
	}
	.aqua-reviews-carousel:not(.owl-loaded) > * {
		flex: 0 0 80%;
	}
}


/* ==========================================================================
   SECTION B — Homepage hero CLS reserves (from style.css :730-813)
   --------------------------------------------------------------------------
   .home .background-inner min-heights, .custom-hero-carousel container
   reserves, hero text stabilization, testimonial slider reserve,
   services slider reserves.
   ========================================================================== */

/* Homepage hero: reserve space to reduce CLS on mobile */
@media (max-width: 959px) {
	.home .background-inner {
		min-height: 460px; /* conservative height to match hero composition */
		background-size: cover;
		background-position: center;
	}
}

/* Reserve hero height on desktop/tablet to prevent slider jump */
@media (min-width: 960px) {
	.home .background-inner {
		min-height: 560px;
	}
}

/* Homepage hero slider (from index-to-scan.html structure) */
/* Reserve space based on the Uncode hero slider containers */
.home .custom-hero-carousel .uncode-slider.owl-carousel-container,
.home .custom-hero-carousel .uncode-slider .owl-carousel {
	min-height: clamp(420px, 56vw, 720px);
}

/* Ensure Owl wrapper itself reserves height before JS init */
.home .custom-hero-carousel .owl-carousel.owl-height-auto,
.home .custom-hero-carousel .owl-carousel.owl-height,
.home .custom-hero-carousel .owl-carousel .owl-stage-outer {
	min-height: clamp(420px, 56vw, 720px);
}

/* Make each slide row respect the reserved height */
.home .custom-hero-carousel .owl-carousel .vc_row.row-internal {
	min-height: inherit;
}

/* Stabilize hero text: prevent mid-load animations and position consistently */
.home .custom-hero-carousel .row-child {
	display: grid;
	align-items: end;
	min-height: inherit; /* match container reserve */
}
.home .custom-hero-carousel .owl-carousel .vc_row.row-internal {
	display: grid;
	align-items: end;
	min-height: inherit;
}
.home .custom-hero-carousel .uncont,
.home .custom-hero-carousel .heading-text,
.home .custom-hero-carousel .text-lead,
.home .custom-hero-carousel .btn-container {
	transition: none !important;
	animation: none !important;
	opacity: 1 !important;
	transform: none !important;
}

/* Ensure background element respects the reserved box */
.home .custom-hero-carousel .row-background .background-wrapper,
.home .custom-hero-carousel .row-background .background-inner {
	min-height: inherit;
}

/* Testimonial slider reserve */
.home #slider-114118 .owl-carousel {
	min-height: clamp(260px, 36vw, 420px);
}

/* (removed rules that hid hero text prior to slider initialization) */

/* Services slider: reserve stage height across breakpoints to avoid reflow */
.home #slider-services .owl-stage-outer {
	min-height: 380px;
}
@media (min-width: 560px) and (max-width: 991px) {
	.home #slider-services .owl-stage-outer {
		min-height: 420px;
	}
}
@media (min-width: 992px) {
	.home #slider-services .owl-stage-outer {
		min-height: 480px;
	}
}


/* ==========================================================================
   SECTION C — WPBakery hero carousel layout (from style.css :1142-1247)
   --------------------------------------------------------------------------
   .custom-hero-carousel — .owl-item .uncell min-heights, .uncont
   max-widths, .owl-dots positioning, all responsive blocks,
   RevSlider CLS reserves.
   ========================================================================== */

/* Custom Hero - Carousel */
.custom-hero-carousel .owl-item .uncell {
	min-height: 720px; 
	display: flex; 
	flex-wrap: wrap; 
	align-items: flex-end;
	padding: 0 36px 70px 36px;
}

.custom-hero-carousel .owl-item .uncont {
	width: 100%;
	max-width: 560px;
	padding: 70px 0 40px 0;
	margin: 0 0 -26px 0!important;	
}

.custom-hero-carousel .owl-item .uncont .uncode_text_column {	
	width: 100%;
	max-width: 500px;
	font-weight: 600;
}

.custom-hero-carousel .owl-item .uncont > div,
.custom-hero-carousel .owl-item .uncont > .btn-container {
	margin: 0 0 26px 0!important;
}

.custom-hero-carousel .owl-item .uncont > .btn-container {
	margin-top: 14px!important;
}

.custom-hero-carousel .owl-dots {
	bottom: 64px!important;
}

@media (max-width: 1199px) {
.custom-hero-carousel .owl-item .uncell {
	min-height: 640px; 
	padding-bottom: 60px;
}

.custom-hero-carousel .owl-item .uncont {
	max-width: 500px;
}

.custom-hero-carousel .owl-dots {
	bottom: 54px!important;
}
}

@media (max-width: 959px) {
.custom-hero-carousel .owl-item .uncont,
.custom-hero-carousel .owl-item .uncont:not(.overflow-hidden-mask) {
	max-width: 500px!important;
}
}

@media (max-width: 767px) {
.custom-hero-carousel .owl-item .uncell {
	min-height: 480px; 
	padding-bottom: 50px;
}

.custom-hero-carousel .owl-item .uncont {
	max-width: 500px;
	padding: 70px 0 35px 0;
	margin: 0 0 -20px 0!important;	
}

.custom-hero-carousel .owl-item .uncont > div,
.custom-hero-carousel .owl-item .uncont > .btn-container {
	margin: 0 0 20px 0!important;
}

.custom-hero-carousel .owl-item .uncont > .btn-container {
	margin-top: 10px!important;
}

.custom-hero-carousel .owl-dots {
	bottom: 40px!important;
}
}

/* Reserve space for top hero/slider to prevent CLS */
.home .revslider-container,
.home .rev_slider_wrapper,
.home .rs-module-wrap,
.home .rs-module {
	min-height: 720px;
}
@media (max-width: 1199px) {
	.home .revslider-container,
	.home .rev_slider_wrapper,
	.home .rs-module-wrap,
	.home .rs-module {
		min-height: 640px;
	}
}
@media (max-width: 767px) {
	.home .revslider-container,
	.home .rev_slider_wrapper,
	.home .rs-module-wrap,
	.home .rs-module {
		min-height: 480px;
	}
}


/* ==========================================================================
   SECTION D — AQUA hero slider component (from aqua.css §16)
   --------------------------------------------------------------------------
   Full hero slider: tokens, wrapper, slide layout, typography, button,
   image, Owl Carousel reset, custom nav, dots, responsive breakpoints.
   ========================================================================== */

/* Tokens now in 01-tokens.css */

/* ── Wrapper ─────────────────────────────────────────────────────────────── */
.aqua-hero-slider {
    position: relative;
    overflow: hidden;
}

/* ── Slide layout ─────────────────────────────────────────────────────────── */
.aqua-hero-slider .ahs-slide {
    display: flex !important;
    align-items: stretch;
    gap: 104px;
    min-height: 560px;
}

.aqua-hero-slider .ahs-slide__left {
    flex: 0 0 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.aqua-hero-slider .ahs-slide__copy {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ── Slide typography (matches homepage .home-hero) ───────────────────────── */
.aqua-hero-slider .ahs-slide__heading {
    font-family: var(--aqua-font-display);
    font-size: clamp(40px, 5.5vw, 80px);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.0205em;
    color: var(--aqua-text-primary);
    margin: 0;
}

.aqua-hero-slider .ahs-slide__body {
    font-family: var(--aqua-font-display);
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 300;
    line-height: 1.4;
    color: var(--aqua-text-primary);
    margin: 0;
    max-width: 420px;
}

/* ── Button ───────────────────────────────────────────────────────────────── */
.aqua-hero-slider .ahs-slide__btn-row {
    margin-top: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.aqua-hero-slider .ahs-btn-outline {
    display: inline-block;
    padding: 14px 29px;
    background-color: transparent;
    border: 1px solid var(--aqua-black);
    border-radius: 999px;
    font-family: var(--aqua-font-body);
    font-size: 12px;
    font-weight: 600;
    line-height: 19.2px;
    letter-spacing: 2.16px;
    text-transform: uppercase;
    color: var(--aqua-black);
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.aqua-hero-slider .ahs-btn-outline:hover,
.aqua-hero-slider .ahs-btn-outline:focus {
    background-color: rgba(0, 0, 0, 0.05) !important;
    border-color: var(--aqua-black) !important;
    color: var(--aqua-black) !important;
    text-decoration: none !important;
}

/* ── Secondary button (always inline solid dark pill) ─────────────────────── */
.aqua-hero-slider .ahs-btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 29px;
    background-color: var(--aqua-black);
    border: 1px solid var(--aqua-black);
    border-radius: 999px;
    font-family: var(--aqua-font-body);
    font-size: 12px;
    font-weight: 600;
    line-height: 19.2px;
    letter-spacing: 2.16px;
    text-transform: uppercase;
    color: var(--aqua-text-inverse) !important;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.aqua-hero-slider .ahs-btn-solid:hover,
.aqua-hero-slider .ahs-btn-solid:focus {
    background-color: #262626 !important;
    border-color: #262626 !important;
    color: var(--aqua-text-inverse) !important;
    text-decoration: none !important;
}

/* ── Right image (single) ──────────────────────────────────────────────────── */
.aqua-hero-slider .ahs-slide__right {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.aqua-hero-slider .ahs-slide__right img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

/* ── Owl Carousel reset ───────────────────────────────────────────────────── */
.aqua-hero-slider .owl-stage-outer { overflow: visible; }
.aqua-hero-slider .ahs-carousel .owl-item { opacity: 0; transition: opacity 0.5s ease; }
.aqua-hero-slider .ahs-carousel .owl-item.active { opacity: 1; }
.aqua-hero-slider .ahs-carousel .owl-nav,
.aqua-hero-slider .ahs-carousel .owl-dots { display: none; }

/* ── Custom nav ───────────────────────────────────────────────────────────── */
.aqua-hero-slider .ahs-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 480px;   /* match left column width */
    margin-top: 40px;
    position: relative;
    z-index: 2;
    padding: 0;
}

.aqua-hero-slider .ahs-prev,
.aqua-hero-slider .ahs-next {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--aqua-near-black);
    display: flex;
    align-items: center;
    transition: color 0.2s;
    line-height: 1;
}

.aqua-hero-slider .ahs-prev:hover,
.aqua-hero-slider .ahs-next:hover {
    color: var(--aqua-charcoal);
}

.aqua-hero-slider .ahs-prev svg,
.aqua-hero-slider .ahs-next svg {
    width: 20px;
    height: 14px;
}

.aqua-hero-slider .ahs-prev,
.aqua-hero-slider .ahs-next {
    min-width: 44px;
    min-height: 44px;
}

.aqua-hero-slider .ahs-dots {
    display: flex;
    gap: 20px;
    align-items: center;
}

.aqua-hero-slider .ahs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--aqua-border-dark);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    position: relative;
}

.aqua-hero-slider .ahs-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
}

.aqua-hero-slider .ahs-dot.is-active {
    background: var(--aqua-near-black);
    transform: scale(1.3);
}

/* ── Responsive ─────────────────────────────────────────────────────────────
   Hero stacks below 960px — Uncode's native mobile breakpoint, independent of
   the nav's 1249px hamburger band. Must match Section A.
   Horizontal padding stays 0: the WPBakery row's native 36px gutter is the
   only side padding. Stacked images follow their natural aspect ratio. */

/* 960-1249px: keep the two-column hero but at natural image ratio (no crop).
   The desktop structure (480px column + 104px gap + min-height 520px cover
   image) squeezes the image into a heavily cropped sliver at these widths.
   Proportional 40/60 columns + natural ratio keep the composition intact;
   with the 0.858 image ratio the image height at 1249px (~557px) meets the
   desktop image height at 1250px (~560px) almost exactly, so there is no
   jump at the desktop boundary. */
@media (min-width: 960px) and (max-width: 1249.98px) {
    .aqua-hero-slider .ahs-slide {
        gap: 48px;
        min-height: auto;
    }

    .aqua-hero-slider .ahs-slide__left {
        flex: 0 0 40%;
    }

    .aqua-hero-slider .ahs-slide__right img {
        height: auto;
        min-height: 0;
    }

    .aqua-hero-slider .ahs-nav {
        width: 40%;
    }
}

@media (max-width: 959px) {
    .aqua-hero-slider .ahs-slide {
        flex-direction: column-reverse;
        gap: 24px;
        min-height: auto;
    }

    .aqua-hero-slider .ahs-slide__left {
        flex: none;
        width: 100%;
    }

    .aqua-hero-slider .ahs-slide__right img {
        min-height: 0;
        height: auto;
    }

    .aqua-hero-slider .ahs-nav {
        width: 100%;
    }

    .aqua-hero-slider .ahs-slide__heading {
        font-size: clamp(32px, 8vw, 52px);
    }
}

@media (max-width: 480px) {
    .aqua-hero-slider .ahs-slide {
        gap: 20px;
    }
}


/* ==========================================================================
   SECTION E — Marquee (from aqua.css §17)
   --------------------------------------------------------------------------
   .aqua-marquee-section — AQUA brand marquee powered by textMarquee.js.
   ========================================================================== */

/* ── Marquee (AQUA brand — powered by Uncode textMarquee.js) ───────────── */
.aqua-marquee-section {
    overflow: hidden;
    pointer-events: none;
    user-select: none;
}

.aqua-marquee-section .heading-text {
    margin-bottom: 0;
}

.aqua-marquee-section .aqua-marquee__text {
    font-family: 'Poppins', sans-serif !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 28px !important;
    letter-spacing: 0 !important;
    color: var(--aqua-gray-text) !important;
    margin: 0 !important;
    padding: 0 !important;
}

.aqua-marquee-section .aqua-marquee__text span {
    color: inherit !important;
}

/* F7: Soft fade at marquee edges to prevent hard text clipping */
.aqua-marquee-section {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

@media (max-width: 768px) {
    .aqua-marquee-section .aqua-marquee__text {
        font-size: 16px !important;
        line-height: 24px !important;
    }
}

/* ── Press-logos media gallery (Uncode linear-grid marquee) ─────────────────
   The gap problem is baked into the source PNGs: each is an opaque black
   450px-wide canvas with the logo art only ~135-206px wide in the center
   (~105-210px of black padding per side, invisible against the near-black
   row). Uncode's linear-by-w mode renders the full 450px canvas at every
   viewport, so visible logo-to-logo gaps are ~270-390px at small widths.

   Fix at ≤1249px: scale the tiles down, clip the baked-in side padding off
   each image (clip-path), and pull tiles together by the same amount with
   negative margins — the clipped strips don't paint, so nothing overlaps the
   neighboring logo. Crop is capped by the tightest logo (Bliss-Tree: 105px
   right pad at natural 450px scale; crops below stay ≤94px at that scale).
   Long-term the PNGs should be re-exported cropped to the logo art, which
   would make all of this unnecessary. Scoped to the homepage press gallery. */
@media (max-width: 1249.98px) {
    .lineargrid-182081.linear-by-w.linear-system .linear-wrapper .linear-container .tmb img,
    .lineargrid-182081.linear-by-w.linear-system .linear-wrapper .linear-container .tmb .fluid-object {
        width: 300px; /* 2/3 scale; baked padding = 62px crop below */
        clip-path: inset(0 62px);
        margin-left: -62px;
        margin-right: -62px;
    }
    .lineargrid-182081.linear-by-w.linear-system .linear-wrapper .linear-container .tmb {
        padding-right: 24px;
    }
}
@media (max-width: 767px) {
    .lineargrid-182081.linear-by-w.linear-system .linear-wrapper .linear-container .tmb img,
    .lineargrid-182081.linear-by-w.linear-system .linear-wrapper .linear-container .tmb .fluid-object {
        width: 200px;
        clip-path: inset(0 42px);
        margin-left: -42px;
        margin-right: -42px;
    }
    .lineargrid-182081.linear-by-w.linear-system .linear-wrapper .linear-container .tmb {
        padding-right: 16px;
    }
}


/* ── Homepage component sections (from aqua.css:2494-3111) ── */

/* ── Services section ──────────────────────────────────────────────────────── */
.aqua-services-section {
    overflow: hidden;
}

.aqua-services-section .aqua-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 64px;
}

.aqua-services-section .aqua-section__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--aqua-text-inverse);
    margin: 0;
}

.aqua-services-section .aqua-section__btn-row {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.aqua-services-cards {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* When Owl takes over, hide its built-in controls */
.aqua-services-cards.owl-carousel .owl-nav,
.aqua-services-cards.owl-carousel .owl-dots { display: none; }

.aqua-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.aqua-service-card__image {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 square — Safari-safe replacement for aspect-ratio */
    border-radius: 24px;
    overflow: hidden;
    display: block;
}

.aqua-service-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.aqua-service-card:hover .aqua-service-card__image img {
    transform: scale(1.05);
}

a.aqua-service-card__title {
    text-decoration: none;
}

a.aqua-service-card__title:hover {
    color: var(--aqua-charcoal);
}

.aqua-service-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--aqua-text-inverse);
    text-align: center;
    margin: 0;
    transition: color 0.3s ease;
}

/* Services slider custom nav */
.aqua-services-section .ahs-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 64px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.aqua-services-section .ahs-prev,
.aqua-services-section .ahs-next {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    line-height: 1;
    color: rgba(255,255,255,0.7);
}

.aqua-services-section .ahs-prev:hover,
.aqua-services-section .ahs-next:hover {
    color: var(--aqua-text-inverse);
}

.aqua-services-section .ahs-prev svg,
.aqua-services-section .ahs-next svg {
    width: 20px;
    height: 14px;
}

.aqua-services-section .ahs-prev,
.aqua-services-section .ahs-next {
    min-width: 44px;
    min-height: 44px;
}

.aqua-services-section .ahs-dots {
    display: flex;
    gap: 20px;
    align-items: center;
}

.aqua-services-section .ahs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    background: rgba(255,255,255,0.3);
    position: relative;
}

.aqua-services-section .ahs-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
}

.aqua-services-section .ahs-dot.is-active {
    background: #fff;
    transform: scale(1.3);
}

/* Static layout when carousel is suppressed (desktop, <= 3 items) */
.aqua-services-section.is-static-services .ahs-nav {
    display: none;
}

.aqua-services-section.is-static-services .aqua-services-cards {
    display: flex;
    gap: 40px;
}

.aqua-services-section.is-static-services .aqua-services-cards .aqua-service-card {
    flex: 1 1 0%;
    min-width: 0;
}

/* ── CTA Banner ─────────────────────────────────────────────────────────────── */
.aqua-cta-section {
    padding: var(--aqua-py) var(--aqua-px);
    background: #fff;
}

.aqua-cta-card {
    background: var(--aqua-cream);
    border-radius: 32px;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    text-align: center;
}

.aqua-cta-card__heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--aqua-black);
    margin: 0;
    max-width: 640px;
}

/* ── Providers section ─────────────────────────────────────────────────────── */
.aqua-providers-section {
    background: #fff;
    padding: var(--aqua-py) var(--aqua-px);
}

.aqua-providers-section .aqua-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 64px;
}

.aqua-providers-section .aqua-section__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--aqua-near-black);
    margin: 0;
}

.aqua-provider-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.aqua-provider-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 280px;
}

.aqua-provider-card__photo {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 square — Safari-safe replacement for aspect-ratio */
    border-radius: 24px;
    overflow: hidden;
    background: var(--aqua-blue-accent);
}

.aqua-provider-card__photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aqua-provider-card__name {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--aqua-black);
    text-align: center;
    margin: 0;
}

/* ── Split content sections ────────────────────────────────────────────────── */
.aqua-split-section {
    padding: var(--aqua-py) var(--aqua-px);
    display: flex;
    align-items: center;
    gap: 120px;
}

.aqua-split-section__copy {
    flex: 0 0 480px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.aqua-split-section__headline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 4vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--aqua-near-black);
    margin: 0;
}

.aqua-split-section__body {
    font-size: 16px;
    line-height: 1.5;
    color: var(--aqua-near-black);
    margin: 0;
}

.aqua-split-section__image {
    flex: 1;
    min-width: 0;
    border-radius: 24px;
    overflow: hidden;
}

.aqua-split-section__image img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

/* Services list (used in skin-cancer split section) */
.aqua-services-list {
    flex: 1;
    min-width: 0;
}

.aqua-services-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    border-top: 1px solid var(--aqua-border-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.aqua-services-list-item:last-child {
    border-bottom: 1px solid var(--aqua-border-dark);
}

.aqua-services-list-item:hover .aqua-services-list-item__title {
    color: var(--aqua-charcoal);
}

.aqua-services-list-item__copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.aqua-services-list-item__title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--aqua-black);
    transition: color 0.2s;
    margin: 0;
}

.aqua-services-list-item__desc {
    font-size: 16px;
    line-height: 1.5;
    color: var(--aqua-near-black);
    margin: 0;
}

.aqua-services-list-item__arrow {
    color: var(--aqua-near-black);
    flex-shrink: 0;
    font-size: 18px;
}

/* ── FAQ section ──────────────────────────────────────────────────────────── */
.aqua-faq-section {
    background: var(--aqua-blue-accent);
    padding: var(--aqua-py) var(--aqua-px);
}

.aqua-faq-section .aqua-section__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 56px;
}

.aqua-faq-section .aqua-section__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(52px, 5vw, 80px);
    font-weight: 400;
    letter-spacing: -0.03em;
    color: var(--aqua-near-black);
    margin: 0;
}

.aqua-faq-item {
    border-top: 1px solid var(--aqua-border-dark);
    padding: 32px 0;
}

.aqua-faq-item:last-of-type {
    border-bottom: 1px solid var(--aqua-border-dark);
}

.aqua-faq-item__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    gap: 32px;
}

.aqua-faq-item__question {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--aqua-black);
    flex: 1;
    margin: 0;
}

.aqua-faq-item.is-open .aqua-faq-item__question {
    color: var(--aqua-near-black);
}

.aqua-faq-item__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    color: var(--aqua-near-black);
}

.aqua-faq-item__icon::before,
.aqua-faq-item__icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    transition: opacity 0.25s, transform 0.25s;
}

.aqua-faq-item__icon::before {
    width: 14px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.aqua-faq-item__icon::after {
    width: 1.5px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.aqua-faq-item.is-open .aqua-faq-item__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.aqua-faq-item__answer {
    font-size: 16px;
    line-height: 1.5;
    color: var(--aqua-near-black);
    padding-top: 24px;
    display: none;
}

.aqua-faq-item.is-open .aqua-faq-item__answer {
    display: block;
}

.aqua-location-faq.aqua-faq-section {
    background: #fff;
    padding: 0 !important;
    margin: 0;
}

.aqua-location-faq .aqua-section__header {
    gap: 16px;
    padding-bottom: 12px;
    flex-wrap: wrap;
}

.aqua-location-faq .aqua-section__title {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.aqua-location-faq .aqua-faq-item {
    padding: 16px 0;
}

.aqua-location-faq .aqua-faq-item__trigger {
    gap: 20px;
}

.aqua-location-faq .aqua-faq-item__answer {
    padding-top: 16px;
}

.aqua-location-faq .aqua-faq-item__answer > :first-child {
    margin-top: 0;
}

.aqua-location-faq .aqua-faq-item__answer > :last-child {
    margin-bottom: 0;
}

.aqua-location-faq .aqua-faq-item__answer a {
    color: var(--aqua-black);
    text-decoration: underline;
}

.aqua-location-faq .aqua-faq-item__answer ul,
.aqua-location-faq .aqua-faq-item__answer ol {
    margin: 16px 0 0;
    padding-left: 20px;
}

.aqua-location-faq .aqua-faq-item__answer li + li {
    margin-top: 8px;
}

/* F9: Tighten FAQ accordion on mobile — reduce padding and question size */
@media (max-width: 767px) {
    .aqua-faq-item {
        padding: 20px 0;
    }
    .aqua-faq-item__question {
        font-size: 18px;
        line-height: 1.35;
    }
    .aqua-faq-item__trigger {
        gap: 16px;
    }
    .aqua-faq-item__answer {
        padding-top: 16px;
    }
}

/* ── Locations strip ──────────────────────────────────────────────────────── */
.aqua-locations-section {
    background: var(--aqua-black);
    padding: var(--aqua-py) var(--aqua-px);
    text-align: center;
}

.aqua-locations-section__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    color: var(--aqua-text-inverse);
    margin: 0 0 64px;
}

.aqua-locations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-bottom: 64px;
}

.aqua-location-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--aqua-text-inverse);
    text-decoration: none;
}

.aqua-location-item:hover {
    text-decoration: underline;
    color: var(--aqua-text-inverse);
}

.aqua-location-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 22px;
    fill: currentColor;
}

/* ── Responsive adjustments ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    :root {
        --aqua-px: 60px;
    }

    .aqua-split-section {
        gap: 64px;
    }

    .aqua-split-section__copy {
        flex: 0 0 380px;
    }

    .aqua-services-cards:not(.owl-loaded) {
        flex-wrap: wrap;
    }

    .aqua-services-cards:not(.owl-loaded) .aqua-service-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    :root {
        --aqua-px: 24px;
        --aqua-py: 72px;
    }

    .aqua-split-section {
        flex-direction: column;
        gap: 40px;
    }

    .aqua-split-section__copy {
        flex: none;
        width: 100%;
    }

    .aqua-services-cards:not(.owl-loaded) {
        flex-direction: column;
    }

    .aqua-services-cards:not(.owl-loaded) .aqua-service-card {
        flex: none;
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }

    .aqua-services-cards:not(.owl-loaded) .aqua-service-card__image {
        width: 80px;
        height: 80px;
        padding-bottom: 0;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .aqua-services-cards:not(.owl-loaded) .aqua-service-card__title {
        text-align: left;
        font-size: 18px;
    }

    .aqua-providers-section .aqua-section__header,
    .aqua-services-section .aqua-section__header,
    .aqua-faq-section .aqua-section__header {
        flex-direction: column;
        gap: 24px;
    }

    .aqua-mission-section {
        padding: 64px var(--aqua-px);
    }
}

/* ==========================================================================
   STEELE HOMEPAGE — Figma "Home / Alternate" (node 34-262) typography pass
   --------------------------------------------------------------------------
   Scoped to the el_class hooks on each homepage row: .home-hero, .marquee,
   .counter-row, .specialties, .why-steele, .meet-dr-johnson,
   .online-scheduling, .manifesto, .home-faq.
   Typography / color only — row padding & spacing stay in Uncode settings.
   !important is required where 03-typography.css / 04-buttons-forms.css
   already force values with !important.
   ========================================================================== */

/* ── Shared: section H2s (Figma: Poppins Light 58px, ls -1.16px) ─────────── */
.specialties h2.h2,
.why-steele h2.h2,
.home-faq h2.h2 {
	font-family: var(--aqua-font-display) !important;
	font-size: clamp(36px, 4.5vw, 58px) !important;
	font-weight: 300 !important;
	line-height: 1.1 !important;
	letter-spacing: -0.02em !important;
	color: var(--aqua-text-primary);
}

/* ── Shared: uppercase eyebrows (Figma: Open Sans 600 13px, ls 4.16px) ───── */
.why-steele h6.text-uppercase,
.online-scheduling h6.text-uppercase,
.manifesto h6.text-uppercase,
.home-faq h6.text-uppercase {
	font-family: var(--aqua-font-body) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.6 !important;
	letter-spacing: 4.16px !important;
	color: var(--aqua-text-primary);
}

/* ── HERO (.home-hero) ───────────────────────────────────────────────────── */
.home-hero h1.h1 {
	font-family: var(--aqua-font-display) !important;
	font-size: clamp(56px, 8.8vw, 126px) !important;
	font-weight: 300 !important;
	line-height: 0.92 !important;
	letter-spacing: -0.0205em !important;
	color: var(--aqua-text-primary);
}

.home-hero .heading-text .text-lead p {
	font-family: var(--aqua-font-display) !important;
	font-size: clamp(20px, 1.9vw, 27px) !important;
	font-weight: 300 !important;
	line-height: 1.35 !important;
	color: var(--aqua-text-primary);
}

/* Credentials block: strong = name line, remainder = small-caps title */
.home-hero .uncode_text_column p {
	font-family: var(--aqua-font-body);
	font-size: 11px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 2.2px;
	text-transform: uppercase;
	color: var(--aqua-text-secondary);
}

.home-hero .uncode_text_column p strong {
	font-family: var(--aqua-font-display);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0;
	text-transform: none;
	color: var(--aqua-text-primary);
}

.home-hero hr.unseparator {
	border-color: #e2e2e2;
}

/* Hero buttons: typography only — colors handled globally in 04-buttons-forms.css */
.home-hero .btn {
	font-family: var(--aqua-font-body) !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	line-height: 19.2px !important;
	letter-spacing: 2.16px !important;
	text-transform: uppercase;
	border-radius: 999px !important;
	padding: 14px 29px !important;
}

/* Buttons sit side by side (Figma 34:276) — .btn-container is block by default */
.home-hero .btn-container {
	display: inline-block;
	margin-right: 14px;
}

/* ── PRESS MARQUEE (.marquee) — white logos on black strip ───────────────── */
.marquee .tmb img {
	filter: brightness(0) invert(1);
	opacity: 0.85;
}

.marquee .t-entry-visual-overlay {
	display: none;
}

/* ── PROOF STRIP (.counter-row) ──────────────────────────────────────────── */
.counter-row .uncode-counter-wrap {
	text-align: center;
}

.counter-row .uncode-counter-wrap .h2 {
	font-family: var(--aqua-font-display) !important;
	font-size: clamp(48px, 5vw, 72px) !important;
	font-weight: 300 !important;
	line-height: 1 !important;
	letter-spacing: -0.02em !important;
	color: var(--aqua-text-primary);
	margin-bottom: 0;
}

.counter-row .counter-text {
	font-family: var(--aqua-font-body);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 3.36px;
	text-transform: uppercase;
	color: var(--aqua-text-primary);
	margin-top: 18px;
}

/* Hairline dividers between counters (Figma 34:310) */
.counter-row .wpb_column.column_child + .wpb_column.column_child {
	border-left: 1px solid #eeeeee;
}

@media (max-width: 959px) {
	.counter-row .wpb_column.column_child + .wpb_column.column_child {
		border-left: none;
	}
}

/* ── SPECIALTIES (.specialties) ──────────────────────────────────────────── */
/* Section intro (Figma: Open Sans 17px / 28.9) — subheading renders as h2 + div */
.specialties .heading-text h2 + div p {
	font-family: var(--aqua-font-body) !important;
	font-size: 17px !important;
	font-weight: 400 !important;
	line-height: 1.7 !important;
	color: var(--aqua-text-primary);
}

/* Card titles (Figma: Poppins 400 18px, ls 0.72px) */
.specialties .column_child .heading-text h3 {
	font-family: var(--aqua-font-display) !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	line-height: 1.6 !important;
	letter-spacing: 0.72px !important;
	color: var(--aqua-text-primary);
}

/* "Explore →" text links — arrow suffix (base styles in 04-buttons-forms.css) */
.specialties .btn.btn-link::after {
	content: ' \2192';
}

.specialties .btn.btn-link:hover,
.specialties .btn.btn-link:focus {
	opacity: 0.65;
}

/* ── WHY STEELE (.why-steele) ────────────────────────────────────────────── */
.why-steele .uncode_text_column h3 {
	font-family: var(--aqua-font-display) !important;
	font-size: 24px !important;
	font-weight: 300 !important;
	line-height: 1.25 !important;
	letter-spacing: -0.005em !important;
	color: var(--aqua-text-primary);
	margin: 0 0 18px;
}

.why-steele .uncode_text_column {
	font-family: var(--aqua-font-body);
	font-size: 15px;
	line-height: 1.75;
	color: var(--aqua-text-primary);
}

/* ── MEET DR. JOHNSON (.meet-dr-johnson) ─────────────────────────────────── */
.meet-dr-johnson h2.h2 {
	font-family: var(--aqua-font-display) !important;
	font-size: clamp(40px, 5.4vw, 78px) !important;
	font-weight: 300 !important;
	line-height: 1.1 !important;
	letter-spacing: -0.02em !important;
	color: var(--aqua-text-primary);
}

.meet-dr-johnson .uncode_text_column p {
	font-family: var(--aqua-font-body);
	font-size: 16px;
	line-height: 1.75;
	color: var(--aqua-text-primary);
}

/* "Board-Certified & Affiliated" eyebrow (Figma: Open Sans 600 11px, ls 3.08px) */
.meet-dr-johnson .heading-text p.text-uppercase {
	font-family: var(--aqua-font-body) !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	line-height: 1.6 !important;
	letter-spacing: 3.08px !important;
	color: var(--aqua-text-secondary);
}

/* "Explore" → outlined pill (Figma 34:413 "Read More" style) */
.meet-dr-johnson .btn.btn-default {
	background-color: transparent !important;
	border: 1px solid #000000 !important;
	border-radius: 999px !important;
	padding: 14px 29px !important;
	font-family: var(--aqua-font-body) !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	line-height: 19.2px !important;
	letter-spacing: 2.16px !important;
	text-transform: uppercase;
	color: var(--aqua-black) !important;
}

.meet-dr-johnson .btn.btn-default:hover,
.meet-dr-johnson .btn.btn-default:focus {
	background-color: rgba(0, 0, 0, 0.05) !important;
	border-color: var(--aqua-black) !important;
	color: var(--aqua-black) !important;
}

/* ── ONLINE SCHEDULING (.online-scheduling) ──────────────────────────────── */
.online-scheduling h2.h2 {
	font-family: var(--aqua-font-display) !important;
	font-size: clamp(38px, 4.8vw, 64px) !important;
	font-weight: 300 !important;
	line-height: 1.13 !important;
	letter-spacing: -0.02em !important;
	color: var(--aqua-text-primary);
}

.online-scheduling .uncode_text_column p {
	font-family: var(--aqua-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--aqua-text-primary);
}

.online-scheduling .uncode_text_column p strong {
	font-family: var(--aqua-font-display);
	font-size: 18px;
	font-weight: 400;
	color: var(--aqua-text-primary);
}

/* ── MANIFESTO (.manifesto) ──────────────────────────────────────────────── */
.manifesto h1 {
	font-family: var(--aqua-font-display) !important;
	font-size: clamp(36px, 4.6vw, 64px) !important;
	font-weight: 300 !important;
	line-height: 1.1 !important;
	letter-spacing: -0.02em !important;
	color: var(--aqua-text-primary);
}

/* ── FAQ ROW (.home-faq) — left column ───────────────────────────────────── */
.home-faq .heading-text .text-top-reduced p {
	font-family: var(--aqua-font-body) !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	line-height: 1.7 !important;
	color: var(--aqua-text-primary);
}

/* ── FAQ accordion (#faq-mount / .sd-faq-*) — Figma 34:613 ───────────────── */
/* ID-anchored: Uncode/.post-content list rules carry !important + higher
   specificity, so the resets must outrank them. */
#faq-mount ul.sd-faq-list {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border-top: 1px solid #080808;
}

#faq-mount ul.sd-faq-list > li.sd-faq-item {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border-bottom: 1px solid #eeeeee;
}

.sd-faq-q {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	padding: 28px 0;
	background: none;
	border: 0;
	cursor: pointer;
	text-align: left;
	-webkit-appearance: none;
	appearance: none;
}

.sd-faq-q-num {
	flex: 0 0 56px;
	font-family: var(--aqua-font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2.42px;
	color: var(--aqua-text-secondary);
}

.sd-faq-item.is-open .sd-faq-q-num {
	color: var(--aqua-text-primary);
}

.sd-faq-q-text {
	flex: 1;
	font-family: var(--aqua-font-display);
	font-size: 22px;
	font-weight: 300;
	line-height: 1.3;
	letter-spacing: -0.005em;
	color: var(--aqua-text-primary);
}

.sd-faq-q-icon {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: var(--aqua-text-primary);
	transition: transform 0.25s ease;
}

.sd-faq-item.is-open .sd-faq-q-icon {
	transform: rotate(180deg);
}

.sd-faq-a-wrap {
	padding: 0 8px 28px 72px;
}

.sd-faq-a-wrap[hidden] {
	display: none;
}

.sd-faq-a {
	max-width: 620px;
	font-family: var(--aqua-font-body);
	font-size: 15px;
	line-height: 1.75;
	color: var(--aqua-text-primary);
}

@media (max-width: 767px) {
	.sd-faq-q {
		padding: 20px 0;
		gap: 12px;
	}

	.sd-faq-q-num {
		flex-basis: 32px;
	}

	.sd-faq-q-text {
		font-size: 18px;
		line-height: 1.35;
	}

	.sd-faq-a-wrap {
		padding-left: 44px;
	}
}
