/* =============================================================================
 * Sunday Treat SOP Modular Sections — styles (v2.0.14)
 * Brand-native: matches sundaytreat.com live site design language.
 *   - Typography: forma-djr-display (display), acumin-pro (body)
 *   - Accent:     #FF50BE (brand pink, used for CTAs + labels across site)
 *   - Card lang:  1px #D9D9D9 border, 20px radius, 28-32px padding
 *                 (matches `.blocks__block` component)
 *   - Dark sections: #0B0B0B (matches `.hero__service`)
 * Loaded only on single-service pages by the plugin.
 * ============================================================================= */

/* =============================================================================
 * Single-post body typography overrides (v2.0.1)
 * Theme default `.text-flow` body text was small for long-form reading.
 * Bumping body font, line-height, paragraph spacing, and inline-image
 * rhythm. Also widens the article column slightly and gives images proper
 * full-width bleed within it.
 * ============================================================================= */
.single-post .contentmain .col-lg-8 {
    /* Push the column wider on desktop so the article reads larger and the
       inline images have more presence. */
    flex: 0 0 auto;
    width: 66.666%;
}
@media (min-width: 1200px) {
    .single-post .contentmain .col-lg-8 {
        width: 70%;
    }
}
.single-post .article_info h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.005em;
    margin-bottom: 1rem;
}
.single-post .article_info .meta {
    font-size: 0.9375rem;
    color: #555;
    margin-bottom: 1.25rem;
}
.single-post article.text-flow {
    font-family: 'acumin-pro', sans-serif;
    /* v2.0.3: bumped from 1.1875rem (~19px) → 1.3125rem (~21px) per Tim's feedback */
    font-size: 1.3125rem;
    line-height: 1.7;
    color: #1A1A1A;
}
.single-post article.text-flow p {
    margin: 0 0 1.35em;
    font-size: inherit;
    line-height: inherit;
}
.single-post article.text-flow h2 {
    font-family: 'forma-djr-display', sans-serif;
    font-size: clamp(1.625rem, 2.6vw, 2.125rem);
    line-height: 1.2;
    margin: 2.5em 0 0.85em;
    color: #0E0E0E;
    letter-spacing: 0.005em;
}
.single-post article.text-flow h3 {
    font-family: 'forma-djr-display', sans-serif;
    font-size: clamp(1.25rem, 1.9vw, 1.5rem);
    margin: 2em 0 0.6em;
}
.single-post article.text-flow ul,
.single-post article.text-flow ol {
    padding-left: 1.5rem;
    margin: 0 0 1.5em;
}
.single-post article.text-flow li {
    margin-bottom: 0.6em;
}
.single-post article.text-flow figure {
    margin: 2em 0;
}
.single-post article.text-flow figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
}
.single-post article.text-flow figcaption {
    margin-top: 0.6rem;
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    line-height: 1.5;
}
.single-post article.text-flow a {
    color: #FF50BE;
    text-decoration: underline;
    text-decoration-color: rgba(255, 80, 190, 0.4);
    text-underline-offset: 3px;
}
.single-post article.text-flow a:hover {
    color: #d8359c;
    text-decoration-color: #d8359c;
}
@media (max-width: 768px) {
    .single-post article.text-flow {
        /* v2.0.3: also bumped on mobile */
        font-size: 1.125rem;
        line-height: 1.65;
    }
}

/* =============================================================================
 * Sidebar "On this page" TOC (v2.0.3)
 * Lives inside .article__sidebar — sits ABOVE the related posts widget.
 * Sticky inherits from the parent column's sticky position.
 * ============================================================================= */
.st-sop-sidebar-toc {
    margin: 0 0 1.75rem;
    padding: 1.5rem 1.5rem 1.25rem;
    background: #fff;
    border: 1px solid #ECECEC;
    border-radius: 12px;
    font-family: 'acumin-pro', sans-serif;
}
.st-sop-sidebar-toc__heading {
    margin: 0 0 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    /* v2.0.6: bumped from 0.6875rem (~11px) to 0.8125rem (~13px) */
    font-size: 0.8125rem;
    color: #777;
}
.st-sop-sidebar-toc__list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: toc;
}
.st-sop-sidebar-toc__list li {
    counter-increment: toc;
    margin-bottom: 0.7rem;
    padding-left: 1.85rem;
    position: relative;
    /* v2.0.6: bumped from 0.8125rem (~13px) to 1rem (~16px) per Tim's feedback */
    font-size: 1rem;
    line-height: 1.4;
}
.st-sop-sidebar-toc__list li::before {
    content: counter(toc, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0.15rem;
    color: #FF50BE;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
}
.st-sop-sidebar-toc__list a {
    color: #0E0E0E;
    text-decoration: none;
    transition: color 0.15s;
}
.st-sop-sidebar-toc__list a:hover {
    color: #FF50BE;
}

/* =============================================================================
 * Author / "team" page (v2.0.6 — fully restyled)
 * Hero block at top with large circular headshot + name + role + bio,
 * centred, on warm cream background. Below: 3-up grid of the author's
 * published articles with brand-aligned card styling.
 * ============================================================================= */
.author-archive {
    padding: 4rem 0 5rem;
}
.author-archive__hero {
    background: linear-gradient(180deg, #FFF0F9 0%, #FAFAFA 100%);
    border-radius: 24px;
    padding: 4rem 2rem 3.5rem;
    margin-bottom: 3.5rem;
}
.author-archive__heading {
    font-family: 'forma-djr-display', sans-serif;
    font-weight: 700;
    text-align: center;
    margin: 0 0 2rem;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    color: #0E0E0E;
}

/* HERO variant of the author card (used at the top of /team/{slug}/ pages). */
.st-sop-author-card--hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0 auto;
    max-width: 720px;
    text-align: center;
}
.st-sop-author-card--hero .st-sop-author-card__avatar {
    width: 184px;
    height: 184px;
    border-width: 4px;
    border-color: rgba(255, 80, 190, 0.6);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}
.st-sop-author-card--hero .st-sop-author-card__body {
    text-align: center;
}
.st-sop-author-card--hero .st-sop-author-card__head {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
}
.st-sop-author-card--hero .st-sop-author-card__byline-label {
    color: #FF50BE;
    margin-bottom: 0.6rem;
}
.st-sop-author-card--hero .st-sop-author-card__name {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.1;
}
.st-sop-author-card--hero .st-sop-author-card__role {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
.st-sop-author-card--hero .st-sop-author-card__bio {
    font-size: 1.0625rem;
    line-height: 1.65;
    max-width: 600px;
    margin: 0 auto 1.25rem;
    color: #2B2B2B;
}
.st-sop-author-card--hero .st-sop-author-card__social {
    justify-content: center;
    gap: 0.65rem;
}
.st-sop-author-card--hero .st-sop-author-card__social a {
    width: 40px;
    height: 40px;
}

/* Author page article grid styling (mirrors /our-work/ for consistency) */
.author-archive .articleswrap__col {
    margin-bottom: 2.5rem;
}
.author-archive .article--post {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.author-archive .article__image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #F6F6F6;
    aspect-ratio: 4 / 3;
}
.author-archive .article__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.author-archive .article--post:hover .article__image img {
    transform: scale(1.04);
}
.author-archive .article__text {
    padding: 0 0.5rem;
}
.author-archive .article__meta {
    font-family: 'acumin-pro', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    color: #FF50BE;
    margin: 0 0 0.5rem;
}
.author-archive .article__title {
    font-family: 'forma-djr-display', sans-serif;
    font-size: 1.25rem;
    line-height: 1.25;
    margin: 0 0 0.5rem;
    color: #0E0E0E;
}
.author-archive .article__title a {
    color: inherit;
    text-decoration: none;
}
.author-archive .article__title a:hover {
    color: #FF50BE;
}
@media (max-width: 768px) {
    .author-archive__hero { padding: 3rem 1.25rem 2.5rem; }
    .st-sop-author-card--hero .st-sop-author-card__avatar { width: 140px; height: 140px; }
}

/* =============================================================================
 * On this page TOC (v2.0.2) — small inline anchor list at the top of an article.
 * Plain HTML, lives inside the article body. Smooth-scroll behaviour from theme.
 * ============================================================================= */
.st-sop-toc {
    margin: 1.5em 0 2.5em;
    padding: 1.25rem 1.5rem;
    background: #FAFAFA;
    border: 1px solid #ECECEC;
    border-radius: 12px;
    font-family: 'acumin-pro', sans-serif;
}
.st-sop-toc__heading {
    margin: 0 0 0.75rem !important;
    font-family: 'acumin-pro', sans-serif !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.6875rem !important;
    color: #777;
}
.st-sop-toc ol {
    margin: 0 !important;
    padding-left: 1.25rem !important;
    counter-reset: toc;
    list-style: decimal;
}
.st-sop-toc ol li {
    margin-bottom: 0.4rem !important;
    font-size: 0.9375rem !important;
}
.st-sop-toc ol li a {
    color: #0E0E0E !important;
    text-decoration: none !important;
    transition: color 0.15s;
}
.st-sop-toc ol li a:hover {
    color: #FF50BE !important;
}

/* =============================================================================
 * Inline video embed (v2.0.2) — responsive 16:9 iframe wrapper for Vimeo /
 * YouTube embeds inside article body.
 * ============================================================================= */
.st-sop-video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 2em 0 0.5em;
    border-radius: 14px;
    overflow: hidden;
    background: #0B0B0B;
}
.st-sop-video-embed iframe,
.st-sop-video-embed video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =============================================================================
 * Inline quote (v2.0.1) — small embedded quote inside article body.
 * Use INSIDE article HTML (not as a SOP modular block). Lighter weight than
 * the dark .st-sop-founder-quote card used on service pages.
 * ============================================================================= */
.st-sop-inline-quote {
    display: flex;
    gap: 1.25rem;
    margin: 2.5em 0;
    padding: 1.5rem 1.75rem;
    border-left: 4px solid #FF50BE;
    background: #FAFAFA;
    border-radius: 0 12px 12px 0;
}
.st-sop-inline-quote__avatar {
    /* v2.0.6: bumped from 56px → 96px per Tim's feedback */
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid rgba(255, 80, 190, 0.5);
    margin: 0;
}
.st-sop-inline-quote blockquote {
    margin: 0;
    border: 0;
    padding: 0;
    background: transparent;
}
.st-sop-inline-quote blockquote p {
    margin: 0 0 0.6rem !important;
    font-family: 'forma-djr-display', sans-serif !important;
    font-size: 1.1875rem !important;
    line-height: 1.5 !important;
    color: #0E0E0E !important;
    font-style: normal;
    font-weight: 500;
}
.st-sop-inline-quote cite {
    display: block;
    font-style: normal;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #FF50BE;
}
@media (max-width: 600px) {
    .st-sop-inline-quote {
        flex-direction: column;
        gap: 0.85rem;
        padding: 1.25rem 1.35rem;
    }
    .st-sop-inline-quote__avatar {
        /* v2.0.6: also bumped on mobile, was 48px */
        width: 72px;
        height: 72px;
    }
}

/* =============================================================================
 * Sticky sidebar group (v2.0.14 — flex-stretch fix)
 *
 * Diagnosis: previous min-height:100vh gave only ~150px runway. height:100%
 * was inert because the parent column (.col-lg-4.col-xl-3) is a flex *item*,
 * not a flex *container* — so no resolved height propagated down.
 *
 * Fix: make the column itself a flex-column container, then set
 * .article__sidebar { flex: 1 } so it genuinely fills the column's stretched
 * height (.row { display:flex } already stretches the column to article
 * height). Now sticky has thousands of px of runway.
 *
 * Structure:
 *   .col-lg-4.col-xl-3.offset-xl-1   (display:flex flex-col → forces children to flex)
 *     └── .article__sidebar           (flex:1 → fills column height)
 *           ├── .st-sop-sidebar-toc          (scrolls naturally)
 *           └── .article__sidebar__sticky    (sticky, top:30px)
 * ============================================================================= */
@media (min-width: 992px) {
    /* Step 1: make the parent column a flex container so its child can stretch */
    .single-post .col-lg-4.col-xl-3 {
        display: flex !important;
        flex-direction: column !important;
    }
    /* Step 2: make the sidebar genuinely fill the column. !important on display
     * because the theme has `.article__sidebar { display:flex }` with no media
     * query — we need block-level flow inside, not flex. */
    .single-post .article__sidebar {
        flex: 1 0 auto !important;
        display: block !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
    }
    /* Step 3: the sticky group itself */
    .single-post .article__sidebar__sticky {
        position: -webkit-sticky;
        position: sticky;
        top: 30px;
        z-index: 5;
        margin-top: 1.5rem;        /* breathing room under TOC */
    }
    /* Tighten the gap so related + CTA hang together as one unit. */
    .single-post .article__sidebar__sticky .sidebar-related {
        margin: 0 0 1rem !important;
        position: static !important;
    }
    .single-post .article__sidebar__sticky .ctablock--small {
        margin: 0 !important;
        position: static !important;
    }
}

/* =============================================================================
 * Author Card (v1.10.0) — used on single posts (E-E-A-T byline + bio + socials)
 *
 * Two variants:
 *   .st-sop-author-card--full     → large card under H1 + at end of article
 *   .st-sop-author-card--compact  → small inline byline (just name + role + socials)
 *
 * Pulls colors from brand tokens (#FF50BE pink, #0B0B0B dark, #D9D9D9 borders).
 * ============================================================================= */
.st-sop-author-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #fff;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    padding: 1.75rem 2rem;
    margin: 2rem auto;
    max-width: 760px;
    font-family: 'acumin-pro', sans-serif;
}
.st-sop-author-card--compact {
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.25rem;
    margin: 0 0 1.25rem;
    max-width: none;
    border-radius: 999px;
    background: transparent;
    border: 0;
}

.st-sop-author-card__avatar-link {
    flex-shrink: 0;
    display: block;
    line-height: 0;
}
.st-sop-author-card__avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 80, 190, 0.55);
    background: #F6F6F6;
    display: block;
}
.st-sop-author-card--compact .st-sop-author-card__avatar {
    width: 44px;
    height: 44px;
    border-width: 2px;
}

.st-sop-author-card__body {
    flex: 1;
    min-width: 0;
}
.st-sop-author-card__byline-label {
    /* v2.0.1: small "Written by" eyebrow above the author name on the full card. */
    margin: 0 0 0.5rem;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.6875rem;
    color: #777;
}
.st-sop-author-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.6rem 0.85rem;
    margin-bottom: 0.75rem;
}
.st-sop-author-card--compact .st-sop-author-card__head {
    margin-bottom: 0;
    gap: 0.4rem 0.6rem;
}
.st-sop-author-card__name {
    margin: 0;
    font-family: 'forma-djr-display', sans-serif;
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.2;
    color: #0E0E0E;
}
.st-sop-author-card--compact .st-sop-author-card__name {
    font-size: 1rem;
}
.st-sop-author-card__name a {
    color: inherit;
    text-decoration: none;
}
.st-sop-author-card__name a:hover {
    color: #FF50BE;
}
.st-sop-author-card__role {
    margin: 0;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #FF50BE;
}
.st-sop-author-card__bio {
    margin: 0 0 1rem;
    color: #2B2B2B;
    line-height: 1.65;
    font-size: 0.9375rem;
}
.st-sop-author-card__social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.st-sop-author-card__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F6F6F6;
    color: #0E0E0E;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.st-sop-author-card--compact .st-sop-author-card__social a {
    width: 26px;
    height: 26px;
    background: transparent;
    color: #777;
}
.st-sop-author-card__social a:hover {
    background: #FF50BE;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .st-sop-author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.1rem;
        padding: 1.5rem 1.25rem;
    }
    .st-sop-author-card__head {
        justify-content: center;
    }
    .st-sop-author-card__social {
        justify-content: center;
    }
    .st-sop-author-card--compact {
        flex-direction: row;
        text-align: left;
    }
}

/* =============================================================================
 * Theme overrides — service hero subhead + opening-frame intro (v1.7.2)
 * The theme renders these via Carbon Fields. We override styling here so
 * multi-paragraph content reads well: comfortable line-height, paragraph
 * spacing, lede-style first paragraph in the opening frame.
 * ============================================================================= */
.heroservice__subhead {
    font-family: 'acumin-pro', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 36em;
}
.heroservice__subhead p { margin: 0 0 0.85em; }
.heroservice__subhead p:last-child { margin-bottom: 0; }
.heroservice__subhead p:first-of-type {
    font-size: 1.1875rem;
    font-weight: 500;
    color: #fff;
}

.intro {
    /* Override the theme's text-center on the section — we want left-aligned
       body copy because it reads better at this length. */
    text-align: left;
}
.intro .singleservice__intro__title {
    text-align: center;  /* keep the H2 centered */
}
.intro__subtitle--enhanced {
    max-width: 760px;
    margin: 0 auto;
    font-family: 'acumin-pro', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2B2B2B;
    text-align: left;
}
.intro__subtitle--enhanced p { margin: 0 0 1.25em; }
.intro__subtitle--enhanced p:last-child { margin-bottom: 0; }
.intro__subtitle--enhanced p:first-of-type {
    /* Lede: bigger, slightly heavier, helps the eye pick a starting point. */
    font-family: 'forma-djr-display', sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 500;
    line-height: 1.45;
    color: #0E0E0E;
    margin-bottom: 1.5em;
}
@media (max-width: 768px) {
    .intro__subtitle--enhanced { font-size: 1rem; line-height: 1.7; }
    .intro__subtitle--enhanced p:first-of-type { font-size: 1.15rem; }
}

/* =============================================================================
 * Wrap
 * ============================================================================= */
.st-sop-modular {
    max-width: 1120px;
    width: 100%;
    margin: 4rem auto;
    padding: 0 1rem;
    font-family: 'acumin-pro', -apple-system, system-ui, 'Segoe UI', Roboto, sans-serif;
    color: #0E0E0E;
    font-size: 1.0625rem;
    line-height: 1.7;
}
.st-sop-modular h2 {
    font-family: 'forma-djr-display', sans-serif;
    font-size: clamp(2rem, 3.75vw, 2.625rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #0E0E0E;
    margin: 0 0 1.75rem;
}

/* =============================================================================
 * Quick Answer — clean Card with pink label header
 * ============================================================================= */
.st-sop-quick-answer {
    max-width: 960px;
    margin: 5rem auto 4rem;
    padding: 2.5rem 2.75rem;
    background: #fff;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    position: relative;
}
.st-sop-quick-answer__header {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #FF50BE;
    margin-bottom: 1.25rem;
}
.st-sop-quick-answer__icon {
    /* v1.8.0: was 💡 emoji; now an inline brand-pink line-art SVG. */
    display: inline-flex;
    align-items: center;
    color: #FF50BE;
    line-height: 1;
}
.st-sop-quick-answer__icon svg {
    display: block;
}
.st-sop-quick-answer p {
    margin: 0;
    font-family: 'forma-djr-display', sans-serif;
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    line-height: 1.45;
    font-weight: 500;
    color: #0E0E0E;
}

/* =============================================================================
 * Founder Quote — dramatic dark Card (20px radius, not full-bleed
 * because parent section has overflow-x: hidden)
 * ============================================================================= */
.st-sop-founder-quote {
    background: #0B0B0B;
    color: #fff;
    padding: 4.5rem 4rem;
    margin: 5rem auto;
    max-width: 1120px;
    border-radius: 20px;
    display: grid;
    /* v1.4.2: image column tightened from 280px → 220px since the image is now
       a circular headshot (less visual weight than a portrait card). */
    grid-template-columns: 220px 1fr;
    gap: 3.25rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.st-sop-founder-quote::before {
    content: "";
    display: block;
    position: absolute;
    top: 3rem;
    left: 4rem;
    width: 60px;
    height: 4px;
    background: #FF50BE;
}
.st-sop-founder-quote__image {
    /* v1.4.2: was 3/4 portrait card with 16px radius; now a CIRCULAR headshot. */
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
    /* Subtle pink ring picks up the brand colour against the dark background. */
    border: 3px solid rgba(255, 80, 190, 0.55);
}
.st-sop-founder-quote__content blockquote {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'forma-djr-display', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    line-height: 1.3;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.005em;
}
.st-sop-founder-quote__content blockquote::before {
    content: "\201C";
    display: block;
    font-family: 'forma-djr-display', serif;
    font-size: 5rem;
    line-height: 0.7;
    color: #FF50BE;
    margin-bottom: 1rem;
    font-weight: 700;
}
.st-sop-founder-quote__content blockquote p {
    margin: 0 0 0.75rem;
}
.st-sop-founder-quote__content blockquote p::before,
.st-sop-founder-quote__content blockquote p::after {
    content: none;
}
.st-sop-founder-quote__content figcaption {
    display: block;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #FF50BE;
    margin-top: 2rem;
}
.st-sop-founder-quote:not(:has(.st-sop-founder-quote__image)) {
    grid-template-columns: 1fr;
    max-width: 900px;
}

/* =============================================================================
 * Deep-dive — big centered title + numbered Cards (one per step)
 * ============================================================================= */
.st-sop-deep-dive {
    max-width: 960px;
    margin: 6rem auto 5rem;
    padding: 0 1rem;
}
.st-sop-deep-dive h2 {
    text-align: center;
    margin: 0 auto 2.5rem;
    max-width: 720px;
}
.st-sop-deep-dive__body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #2B2B2B;
}
.st-sop-deep-dive__body p {
    margin: 0 0 1.25em;
}
.st-sop-deep-dive__body ol {
    list-style: none;
    counter-reset: dd;
    padding: 0;
    margin: 2.75rem 0 0;
    display: grid;
    gap: 1rem;
}
.st-sop-deep-dive__body ol li {
    counter-increment: dd;
    position: relative;
    padding: 1.6rem 1.75rem 1.6rem 5.75rem;
    background: #fff;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    min-height: 4.5rem;
    /* v1.4: was display:flex which made <strong> + text node siblings render as
       narrow side-by-side flex columns. Use block so the bold step label flows
       inline with the body text the way the source HTML reads. */
    display: block;
    transition: border-color 0.2s, transform 0.2s;
}
.st-sop-deep-dive__body ol li:hover {
    border-color: #FF50BE;
}
.st-sop-deep-dive__body ol li::before {
    content: counter(dd);
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: #FF50BE;
    color: #fff;
    font-family: 'forma-djr-display', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.st-sop-deep-dive__body ol li strong {
    display: inline;
    color: #0E0E0E;
    font-weight: 700;
}

/* =============================================================================
 * Deep-dive — STRUCTURED steps (v1.4)
 * Renders when `_sop_deep_dive_steps` postmeta is populated.
 * Image-left / text-right card per step, pink number badge over the image.
 * ============================================================================= */
.st-sop-deep-dive__intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.75rem;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #2B2B2B;
}
.st-sop-deep-dive__steps {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.25rem;
}
.st-sop-deep-dive__step {
    counter-increment: step;
    display: grid;
    /* v1.7.1: image column shrunk again 192px → 140px (Tim said still too big) */
    grid-template-columns: 140px 1fr;
    gap: 1.75rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    align-items: center;
    transition: border-color 0.2s, transform 0.2s;
}
.st-sop-deep-dive__step:hover {
    border-color: #FF50BE;
}
.st-sop-deep-dive__step-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: #F6F6F6;
}
.st-sop-deep-dive__step-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.st-sop-deep-dive__step-num {
    position: absolute;
    /* v1.7.1: smaller badge to match the smaller image column */
    top: 0.5rem;
    left: 0.5rem;
    width: 2.1rem;
    height: 2.1rem;
    background: #FF50BE;
    color: #fff;
    border-radius: 50%;
    font-family: 'forma-djr-display', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}
.st-sop-deep-dive__step-body {
    min-width: 0;
}
.st-sop-deep-dive__step-title {
    margin: 0 0 0.6rem;
    font-family: 'forma-djr-display', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0E0E0E;
    line-height: 1.2;
    letter-spacing: 0.01em;
}
.st-sop-deep-dive__step-content {
    color: #424242;
    line-height: 1.7;
    font-size: 1.0625rem;
}
.st-sop-deep-dive__step-content p {
    margin: 0;
}
.st-sop-deep-dive__step-content p + p {
    margin-top: 0.75em;
}

/* =============================================================================
 * FAQ — Card accordion with pink chevron
 * ============================================================================= */
.st-sop-faq-accordion {
    max-width: 960px;
    margin: 6rem auto;
    padding: 0 1rem;
}
.st-sop-faq-accordion h2 {
    text-align: center;
    margin: 0 0 2.5rem;
}
.st-sop-faq__item {
    background: #fff;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    padding: 0;
    margin-bottom: 0.85rem;
    transition: border-color 0.2s;
}
.st-sop-faq__item:hover {
    border-color: #FF50BE;
}
.st-sop-faq__item[open] {
    border-color: #FF50BE;
}
.st-sop-faq__item summary {
    font-family: 'forma-djr-display', sans-serif;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.25rem;
    color: #0E0E0E;
    list-style: none;
    padding: 1.6rem 4rem 1.6rem 2rem;
    display: block;
    position: relative;
    line-height: 1.4;
    transition: color 0.2s;
}
.st-sop-faq__item summary::-webkit-details-marker {
    display: none;
}
.st-sop-faq__item summary::after {
    content: "";
    position: absolute;
    right: 2rem;
    top: 50%;
    margin-top: -7px;
    width: 14px;
    height: 14px;
    border-right: 2px solid #FF50BE;
    border-bottom: 2px solid #FF50BE;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}
.st-sop-faq__item[open] summary {
    color: #FF50BE;
}
.st-sop-faq__item[open] summary::after {
    transform: rotate(-135deg);
    margin-top: -3px;
}
.st-sop-faq__item p {
    margin: 0 2rem 1.5rem;
    line-height: 1.75;
    color: #424242;
    font-size: 1.05rem;
}

/* =============================================================================
 * Showreel (v1.7) — featured video block, falls back to hero video.
 * ============================================================================= */
.st-sop-showreel {
    max-width: 1120px;
    margin: 6rem auto;
    padding: 0 1rem;
}
.st-sop-showreel__heading {
    text-align: center;
    font-family: 'forma-djr-display', sans-serif;
    font-size: clamp(1.75rem, 3.25vw, 2.25rem);
    font-weight: 700;
    color: #0E0E0E;
    margin: 0 0 1.75rem;
    line-height: 1.2;
}
.st-sop-showreel__media {
    border-radius: 16px;
    overflow: hidden;
    background: #0B0B0B;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}
.st-sop-showreel__iframe-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}
.st-sop-showreel__iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.st-sop-showreel__video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #0B0B0B;
}
.st-sop-showreel__caption {
    text-align: center;
    margin: 1.25rem auto 0;
    max-width: 720px;
    font-size: 0.9375rem;
    color: #424242;
    line-height: 1.6;
}
.st-sop-showreel__caption a {
    color: #FF50BE;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8125rem;
    margin-left: 0.35rem;
    transition: color 0.2s;
}
.st-sop-showreel__caption a:hover { color: #d8359c; }

/* =============================================================================
 * Trusted By (v1.7) — horizontal logos strip.
 * ============================================================================= */
.st-sop-trusted-by {
    max-width: 1120px;
    margin: 5rem auto;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
}
.st-sop-trusted-by__heading {
    font-family: 'acumin-pro', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    color: #777;
    margin: 0 0 1.75rem;
}
.st-sop-trusted-by__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.5rem 3rem;
}
.st-sop-trusted-by__item img {
    display: block;
    max-height: 38px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.65);
    opacity: 0.85;
    transition: filter 0.2s, opacity 0.2s;
}
.st-sop-trusted-by__item img:hover {
    filter: none;
    opacity: 1;
}
@media (max-width: 768px) {
    .st-sop-trusted-by__list { gap: 1.75rem 2rem; }
    .st-sop-trusted-by__item img { max-height: 28px; }
}

/* =============================================================================
 * Key Takeaways (v2.0.0) — small bullet card for blog posts (GEO summary).
 * ============================================================================= */
.st-sop-key-takeaways {
    max-width: 760px;
    margin: 2.5rem auto;
    padding: 1.75rem 2rem;
    background: #fff;
    border: 1px solid #D9D9D9;
    border-left: 4px solid #FF50BE;
    border-radius: 12px;
}
.st-sop-key-takeaways__heading {
    font-family: 'acumin-pro', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    color: #FF50BE;
    margin: 0 0 1rem;
}
.st-sop-key-takeaways__list {
    margin: 0;
    padding-left: 1.25rem;
    color: #2B2B2B;
    line-height: 1.6;
    font-size: 1rem;
}
.st-sop-key-takeaways__list li {
    margin: 0 0 0.5rem;
}
.st-sop-key-takeaways__list li:last-child { margin-bottom: 0; }

/* =============================================================================
 * Pull Stat (v2.0.0) — big number callout for blog posts.
 * ============================================================================= */
.st-sop-pull-stat {
    /* v2.0.6: switched to flex column + center-aligned items so number AND
       wrapping caption text both centre within the column (text-align alone
       wasn't reliably centring multi-line captions in some browsers). */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 3rem 0;
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
}
.st-sop-pull-stat__number {
    text-align: center;
    margin: 0 auto 0.75rem;
    width: 100%;
}
.st-sop-pull-stat__caption {
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 540px;
    width: 100%;
}
.st-sop-pull-stat__number {
    font-family: 'forma-djr-display', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1;
    color: #FF50BE;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}
.st-sop-pull-stat__caption {
    margin: 0 auto;
    max-width: 540px;
    font-family: 'acumin-pro', sans-serif;
    font-size: 0.9375rem;
    color: #424242;
    line-height: 1.55;
}

/* =============================================================================
 * Recommends (v2.0.0) — Dani-style "We recommend" callout pointing to a
 * service / resource. Pink-bordered card with pink eyebrow + arrow CTA.
 * ============================================================================= */
.st-sop-recommends {
    max-width: 760px;
    margin: 2.5rem auto;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(180deg, #FFF0F9 0%, #FFFFFF 100%);
    border: 1px solid rgba(255, 80, 190, 0.3);
    border-radius: 16px;
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 1.25rem;
    align-items: center;
}
.st-sop-recommends:not(:has(.st-sop-recommends__media)) {
    grid-template-columns: 1fr;
}
.st-sop-recommends__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
}
.st-sop-recommends__eyebrow {
    margin: 0 0 0.4rem;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.6875rem;
    color: #FF50BE;
}
.st-sop-recommends__heading {
    margin: 0 0 0.5rem;
    font-family: 'forma-djr-display', sans-serif;
    font-weight: 700;
    font-size: 1.1875rem;
    color: #0E0E0E;
    line-height: 1.25;
}
.st-sop-recommends__copy {
    color: #2B2B2B;
    line-height: 1.55;
    font-size: 0.9375rem;
}
.st-sop-recommends__copy p { margin: 0 0 0.5em; }
.st-sop-recommends__copy p:last-child { margin-bottom: 0; }
.st-sop-recommends__cta {
    display: inline-block;
    margin-top: 0.85rem;
    color: #FF50BE;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
}
.st-sop-recommends__cta:hover { color: #d8359c; }
@media (max-width: 600px) {
    .st-sop-recommends, .st-sop-recommends:not(:has(.st-sop-recommends__media)) {
        grid-template-columns: 1fr;
    }
    .st-sop-recommends__media img {
        max-width: 120px;
        margin: 0 auto;
    }
}

/* =============================================================================
 * Citations (v2.0.0) — numbered references list with hanging indent.
 * ============================================================================= */
.st-sop-citations {
    max-width: 760px;
    margin: 3.5rem auto 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ECECEC;
}
.st-sop-citations__heading {
    font-family: 'forma-djr-display', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0E0E0E;
    margin: 0 0 1rem;
}
.st-sop-citations__list {
    margin: 0;
    padding-left: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #424242;
}
.st-sop-citations__list li {
    margin-bottom: 0.65rem;
}
.st-sop-citations__list a {
    color: #FF50BE;
    text-decoration: underline;
    text-decoration-color: rgba(255, 80, 190, 0.4);
    text-underline-offset: 2px;
}

/* =============================================================================
 * Closing Frame (v1.6) — competitive-advantage paragraph with internal links
 * Restrained styling so it reads like editorial body copy, not another card.
 * Pink underline links pick up the brand accent.
 * ============================================================================= */
.st-sop-closing-frame {
    max-width: 960px;
    margin: 6rem auto 5rem;
    padding: 0 1rem;
}
.st-sop-closing-frame__heading {
    font-family: 'forma-djr-display', sans-serif;
    font-size: clamp(1.75rem, 3.25vw, 2.25rem);
    font-weight: 700;
    color: #0E0E0E;
    margin: 0 0 1.5rem;
    line-height: 1.2;
    letter-spacing: 0.005em;
}
.st-sop-closing-frame__body {
    color: #2B2B2B;
    line-height: 1.75;
    font-size: 1.0625rem;
}
.st-sop-closing-frame__body p { margin: 0 0 1em; }
.st-sop-closing-frame__body p:last-child { margin-bottom: 0; }
.st-sop-closing-frame__body a {
    color: #FF50BE;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(255, 80, 190, 0.4);
    text-underline-offset: 3px;
    transition: color 0.2s, text-decoration-color 0.2s;
}
.st-sop-closing-frame__body a:hover {
    color: #d8359c;
    text-decoration-color: #d8359c;
}

/* =============================================================================
 * CTA Split (v1.5)
 * Two-column conversion section: copy on one side, large rounded image on the
 * other. Mirrors the about-us "Our Process" pattern. Pink-highlighted word in
 * the heading + brand pink button.
 * ============================================================================= */
.st-sop-cta-split {
    max-width: 1120px;
    margin: 6rem auto;
    padding: 0 1rem;
}
.st-sop-cta-split__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.st-sop-cta-split--image-left .st-sop-cta-split__inner {
    grid-template-areas: "media copy";
}
.st-sop-cta-split--image-right .st-sop-cta-split__inner {
    grid-template-areas: "copy media";
}
.st-sop-cta-split__copy  { grid-area: copy; }
.st-sop-cta-split__media { grid-area: media; }

.st-sop-cta-split__heading {
    margin: 0 0 1.5rem;
    font-family: 'forma-djr-display', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: #0E0E0E;
    letter-spacing: 0.005em;
}
.st-sop-cta-split__hl {
    color: #FF50BE;
}
.st-sop-cta-split__body {
    color: #2B2B2B;
    line-height: 1.7;
    font-size: 1.0625rem;
    margin: 0 0 2rem;
}
.st-sop-cta-split__body p { margin: 0 0 1em; }
.st-sop-cta-split__body p:last-child { margin-bottom: 0; }
.st-sop-cta-split__cta {
    display: inline-block;
    background: #FF50BE;
    color: #fff;
    padding: 15px 32px;
    border-radius: 4px;
    font-family: 'acumin-pro', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.st-sop-cta-split__cta:hover {
    background: #e23daa;
    transform: translateY(-2px);
    color: #fff;
}
.st-sop-cta-split__media {
    border-radius: 16px;
    overflow: hidden;
}
.st-sop-cta-split__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

@media (max-width: 768px) {
    .st-sop-cta-split { margin: 4rem auto; }
    /* Selector specificity matches the desktop --image-left/--image-right
       overrides so we don't need !important. */
    .st-sop-cta-split--image-left .st-sop-cta-split__inner,
    .st-sop-cta-split--image-right .st-sop-cta-split__inner {
        grid-template-columns: 1fr;
        grid-template-areas: "media" "copy";
        gap: 2.25rem;
    }
    .st-sop-cta-split__heading { font-size: 1.75rem; }
}

/* =============================================================================
 * Related Services / Related Articles — card grid with pink arrow button
 * ============================================================================= */
.st-sop-related-services,
.st-sop-related-articles {
    max-width: 1120px;
    margin: 6rem auto;
    padding: 0 1rem;
}
.st-sop-related-services h2,
.st-sop-related-articles h2 {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin: 0 0 2.5rem;
}
.st-sop-related-services ul,
.st-sop-related-articles ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    padding: 0;
    list-style: none;
    margin: 0;
}
.st-sop-related-services a,
.st-sop-related-articles a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 2rem 2rem 1.75rem;
    background: #fff;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    text-decoration: none;
    color: #0E0E0E;
    font-family: 'forma-djr-display', sans-serif;
    font-weight: 700;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.2;
    transition: border-color 0.2s, transform 0.2s;
    min-height: 180px;
    position: relative;
}
.st-sop-related-services a::after,
.st-sop-related-articles a::after {
    content: "";
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FF50BE;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14'/><path d='m12 5 7 7-7 7'/></svg>");
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.25s;
    align-self: flex-start;
    flex-shrink: 0;
}
.st-sop-related-services a:hover,
.st-sop-related-articles a:hover {
    border-color: #FF50BE;
    transform: translateY(-3px);
}
.st-sop-related-services a:hover::after,
.st-sop-related-articles a:hover::after {
    transform: translateX(6px) scale(1.08);
}

/* =============================================================================
 * Responsive
 * ============================================================================= */
@media (max-width: 768px) {
    .st-sop-modular {
        margin: 3rem auto;
    }
    .st-sop-quick-answer {
        padding: 2rem 1.75rem;
        margin: 3.5rem auto 3rem;
    }
    .st-sop-founder-quote {
        grid-template-columns: 1fr;
        padding: 3rem 1.75rem;
        gap: 2rem;
        margin: 4rem auto;
    }
    .st-sop-founder-quote::before {
        top: 2rem;
        left: 1.75rem;
    }
    .st-sop-founder-quote__image {
        /* v1.4.2: keep circular shape on mobile, slightly smaller */
        max-width: 160px;
        margin: 0 auto;
    }
    .st-sop-founder-quote__content blockquote {
        font-size: 1.3rem;
    }
    .st-sop-founder-quote__content blockquote::before {
        font-size: 4rem;
    }
    .st-sop-deep-dive {
        margin: 4rem auto 3.5rem;
    }
    .st-sop-deep-dive__body ol li {
        padding: 1.25rem 1.5rem 1.25rem 4.75rem;
        min-height: 4.25rem;
    }
    .st-sop-deep-dive__body ol li::before {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
        left: 1rem;
    }
    /* v1.4 structured steps responsive */
    .st-sop-deep-dive__step {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.25rem;
    }
    .st-sop-deep-dive__step-image {
        /* v1.7.1: was 224px, shrunk to 180px (Tim said still too big) */
        max-width: 180px;
        margin: 0 auto;
    }
    .st-sop-deep-dive__step-title {
        font-size: 1.25rem;
        text-align: center;
    }
    .st-sop-deep-dive__step-content {
        text-align: center;
    }
    .st-sop-faq-accordion {
        margin: 4rem auto;
    }
    .st-sop-faq__item summary {
        font-size: 1.1rem;
        padding: 1.35rem 3.5rem 1.35rem 1.5rem;
    }
    .st-sop-faq__item p {
        margin: 0 1.5rem 1.35rem;
    }
    .st-sop-related-services,
    .st-sop-related-articles {
        margin: 4rem auto;
    }
    .st-sop-related-services a,
    .st-sop-related-articles a {
        min-height: 140px;
        padding: 1.75rem 1.5rem 1.5rem;
        gap: 1.5rem;
    }
}

/* v2.1.7 — location pages full-width layout fix.
   Hide the theme's empty .hero section (it expects a hero_image we don't set
   on location pages), widen the content container to full Bootstrap xxl,
   remove inner reading-column constraints so SOP blocks fill the container,
   and patch the dc-location-hero card so the inline-style buttons don't
   collide after wpautop wraps a <br/> between them. */

/* v2.2.1+: location-page hero. Match the .hero.size-l proportions used by
   the /us-video-agency/ hub. The theme already handles hero__bg + hero__container
   absolute positioning when section.hero has a defined height — we just give it
   one. (My previous override broke this with min-height:0 + custom container pos.) */
body.parent-pageid-1189 section.hero {
    height: 400px;
}
body.parent-pageid-1189 section.hero .hero__img {
    object-position: center 35%;
}
body.parent-pageid-1189 section.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,11,11,0.35) 0%, rgba(11,11,11,0.55) 100%);
    z-index: 1;
    pointer-events: none;
}
body.parent-pageid-1189 section.hero .hero__container {
    z-index: 2;
}
@media (max-width: 768px) {
    body.parent-pageid-1189 section.hero { height: 280px; }
}

/* Widen container chain to a true marketing-page width on location pages. */
body.parent-pageid-1189 .contentmain .container,
body.parent-pageid-1189 .contentmain .container-fluid {
    max-width: 1274px !important;
    width: 100% !important;
}
body.parent-pageid-1189 .contentmain .wrapper,
body.parent-pageid-1189 .contentmain .wrapper--content {
    max-width: 100% !important;
    width: 100% !important;
}
body.parent-pageid-1189 .contentmain .rich-text__content,
body.parent-pageid-1189 .contentmain .text-flow {
    max-width: 100% !important;
    width: 100% !important;
}

/* SOP wrapper fills the container. */
body.parent-pageid-1189 .st-sop-modular--page {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* Vertical rhythm between SOP sections. */
body.parent-pageid-1189 .st-sop-modular--page > * + * {
    margin-top: 4rem;
}
@media (max-width: 768px) {
    body.parent-pageid-1189 .st-sop-modular--page > * + * {
        margin-top: 2rem;
    }
}

/* Custom hero card on location pages — full width, fixed button row.
   wpautop in WP Core wraps content in <p> and inserts <br/> on single
   line breaks, which was stacking our two CTAs vertically and overlapping
   them. Reset the <p> + <br/> noise inside the hero, and use flex on the
   button row so the two CTAs sit side-by-side. */
body.parent-pageid-1189 .dc-location-hero {
    max-width: 100%;
    width: 100%;
    margin: 0 0 32px 0;
    padding: 64px 48px 72px !important;
    border-radius: 24px;
}
body.parent-pageid-1189 .dc-location-hero p {
    margin-bottom: 16px;
}
body.parent-pageid-1189 .dc-location-hero p:last-child {
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
body.parent-pageid-1189 .dc-location-hero p:last-child br {
    display: none !important;
}
body.parent-pageid-1189 .dc-location-hero a {
    display: inline-block !important;
    margin: 0 !important;
}
@media (max-width: 768px) {
    body.parent-pageid-1189 .dc-location-hero {
        padding: 40px 24px 48px !important;
    }
}

/* v2.1.7b — center inner SOP blocks on location pages */
/* The individual SOP block components were authored for blog/service pages,
   which use a 960px reading column. On location pages we want them centred
   within the full-width wrapper for a marketing-page feel. Override their
   max-width to keep readability where it matters (deep_dive, closing_frame
   text columns) but centre everything in the wrapper, and let the structural
   blocks (trusted_by logos, faq, related_services, cta_split) span fuller. */
body.parent-pageid-1189 .st-sop-modular--page > * {
    margin-left: auto !important;
    margin-right: auto !important;
}
/* Text-heavy blocks: keep a comfortable reading max for prose, centred. */
body.parent-pageid-1189 .st-sop-quick-answer,
body.parent-pageid-1189 .st-sop-closing-frame,
body.parent-pageid-1189 .st-sop-deep-dive {
    max-width: 920px !important;
}
/* Wide blocks: span more of the wrapper. */
body.parent-pageid-1189 .st-sop-trusted-by,
body.parent-pageid-1189 .st-sop-faq,
body.parent-pageid-1189 .st-sop-faq-accordion,
body.parent-pageid-1189 .st-sop-related-services,
body.parent-pageid-1189 .st-sop-related-articles,
body.parent-pageid-1189 .st-sop-cta-split,
body.parent-pageid-1189 .st-sop-pull-stat {
    max-width: 1180px !important;
}

/* v2.1.9 — DC location page case-study grid + visual polish */
/* Case study tile grid for location pages. Uses CSS classes instead of inline
   `display:grid` (wp_kses_post strips the display property from inline style
   attributes for security, so inline `style="display:grid"` never makes it
   to the rendered HTML). */
body.parent-pageid-1189 .dc-cs-grid,
body.us-video-agency .dc-cs-grid, body.us-video-agency-v2 .dc-cs-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
    list-style: none;
    padding: 0;
}
body.parent-pageid-1189 .dc-cs-tile,
body.us-video-agency .dc-cs-tile, body.us-video-agency-v2 .dc-cs-tile {
    display: block !important;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #D9D9D9;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body.parent-pageid-1189 .dc-cs-tile:hover,
body.us-video-agency .dc-cs-tile:hover, body.us-video-agency-v2 .dc-cs-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
body.parent-pageid-1189 .dc-cs-tile__img,
body.us-video-agency .dc-cs-tile__img, body.us-video-agency-v2 .dc-cs-tile__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
body.parent-pageid-1189 .dc-cs-tile__body,
body.us-video-agency .dc-cs-tile__body, body.us-video-agency-v2 .dc-cs-tile__body {
    padding: 20px;
}
body.parent-pageid-1189 .dc-cs-tile__eyebrow,
body.us-video-agency .dc-cs-tile__eyebrow, body.us-video-agency-v2 .dc-cs-tile__eyebrow {
    color: #FF50BE;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin: 0 0 6px;
}
body.parent-pageid-1189 .dc-cs-tile__title,
body.us-video-agency .dc-cs-tile__title, body.us-video-agency-v2 .dc-cs-tile__title {
    font-size: 20px;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #0E0E0E;
}
body.parent-pageid-1189 .dc-cs-tile__excerpt,
body.us-video-agency .dc-cs-tile__excerpt, body.us-video-agency-v2 .dc-cs-tile__excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    margin: 0;
}
body.parent-pageid-1189 .dc-cs-grid + .dc-cs-cta,
body.us-video-agency .dc-cs-grid + .dc-cs-cta, body.us-video-agency-v2 .dc-cs-grid + .dc-cs-cta {
    margin-top: 24px;
}
body.parent-pageid-1189 .dc-cs-cta a,
body.us-video-agency .dc-cs-cta a, body.us-video-agency-v2 .dc-cs-cta a {
    color: #FF50BE;
    font-weight: 700;
    text-decoration: none;
}

/* v2.2.0 — dc-subhero (slim intro card under the theme banner) */
body.parent-pageid-1189 .dc-subhero {
    margin: 32px auto 40px;
    max-width: 920px;
    padding: 0 24px;
    text-align: center;
}
body.parent-pageid-1189 .dc-subhero__lede {
    font-size: 1.375rem;
    line-height: 1.5;
    color: #0E0E0E;
    margin: 0 0 28px;
}
body.parent-pageid-1189 .dc-subhero__ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
body.parent-pageid-1189 .dc-subhero__btn {
    display: inline-block;
    padding: 15px 32px;
    font-family: 'acumin-pro', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.15s, opacity 0.15s;
}
body.parent-pageid-1189 .dc-subhero__btn:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}
body.parent-pageid-1189 .dc-subhero__btn--primary {
    background: #FF50BE;
    color: #fff !important;
}
body.parent-pageid-1189 .dc-subhero__btn--secondary {
    background: transparent;
    color: #0E0E0E !important;
    border: 1px solid #D9D9D9;
}
@media (max-width: 768px) {
    body.parent-pageid-1189 .dc-subhero__lede { font-size: 1.125rem; }
}

/* The post_content wrapping the .dc-subhero — kill any inherited
   .text-flow margin-zero rule so the buttons in .dc-subhero__ctas
   keep their flex layout. */
body.parent-pageid-1189 .text-flow .dc-subhero * {
    margin-bottom: revert;
}

/* v2.2.3 — On location grid (hub page) */
/* The hub /us-video-agency/ uses sunday-treat-us.php (custom template, no
   the_content). We render SOP blocks at the bottom via render_sop_blocks_for_post().
   The 'On location' grid is the deep_dive block at the end. */
.st-sop-modular--page .on-location-section {
    margin: 64px auto 80px;
    padding: 0 24px;
    max-width: 1180px;
}
.st-sop-modular--page .on-location-section h2 {
    text-align: center;
    margin-bottom: 8px;
    font-size: clamp(28px, 4vw, 46px);
}
.st-sop-modular--page .on-location-section .on-location__lede {
    text-align: center;
    color: #444;
    font-size: 1.0625rem;
    line-height: 1.55;
    max-width: 720px;
    margin: 0 auto 40px;
}
.st-sop-modular--page .on-location-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 24px 0 32px;
    list-style: none;
    padding: 0;
}
.st-sop-modular--page .on-location-tile {
    display: block !important;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #D9D9D9;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.st-sop-modular--page .on-location-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.st-sop-modular--page .on-location-tile__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.st-sop-modular--page .on-location-tile__body {
    padding: 24px;
}
.st-sop-modular--page .on-location-tile__city {
    color: #FF50BE;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.st-sop-modular--page .on-location-tile__title {
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 10px;
    color: #0E0E0E;
    font-family: 'forma-djr-display', 'Helvetica Neue', sans-serif;
    font-weight: 700;
}
.st-sop-modular--page .on-location-tile__excerpt {
    font-size: 14px;
    line-height: 1.55;
    color: #444;
    margin: 0;
}

/* Hub page might not be a parent-pageid-1189 child — its body class
   includes 'page-id-1189' itself, so we ALSO need to scope rules to the hub. */
body.us-video-agency .st-sop-modular--page, body.us-video-agency-v2 .st-sop-modular--page,
body.us-video-agency #st-sop-modular-wrapper, body.us-video-agency-v2 #st-sop-modular-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0;
}

/* v2.2.4 — hub page deep_dive wider for on-location grid */
body.us-video-agency .st-sop-deep-dive, body.us-video-agency-v2 .st-sop-deep-dive,
body.us-video-agency .st-sop-quick-answer, body.us-video-agency-v2 .st-sop-quick-answer,
body.us-video-agency .st-sop-closing-frame, body.us-video-agency-v2 .st-sop-closing-frame {
    max-width: 1180px !important;
    width: 100%;
}
body.us-video-agency .st-sop-deep-dive__body, body.us-video-agency-v2 .st-sop-deep-dive__body {
    max-width: 100%;
}
body.us-video-agency .on-location-section, body.us-video-agency-v2 .on-location-section {
    max-width: 100%;
    margin: 32px 0;
    padding: 0;
}

/* v2.3.0 — case study grid: universal scope + 2+1 layout */
/* Drop body-class restriction so the grid works on any page using the .dc-cs-grid
   class (US hub v1/v2, city pages, service pages). The body-class scoping was the
   v2.1.x pattern but it doesn't extend to staging pages with new body classes. */
.st-sop-deep-dive__body .dc-cs-grid,
.st-sop-deep-dive .dc-cs-grid,
.dc-cs-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px auto;
    max-width: 1180px;
    list-style: none;
    padding: 0;
    justify-items: stretch;
}
.dc-cs-tile {
    display: block !important;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #D9D9D9;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dc-cs-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.dc-cs-tile__img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}
.dc-cs-tile__body {
    padding: 24px;
}
.dc-cs-tile__eyebrow {
    color: #FF50BE;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.dc-cs-tile__title {
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 10px;
    color: #0E0E0E;
    font-family: 'forma-djr-display', 'Helvetica Neue', sans-serif;
    font-weight: 700;
}
.dc-cs-tile__excerpt {
    font-size: 14px;
    line-height: 1.55;
    color: #444;
    margin: 0;
}
.dc-cs-cta {
    text-align: center;
    margin-top: 24px;
}
.dc-cs-cta a {
    color: #FF50BE;
    font-weight: 700;
    text-decoration: none;
}
/* 2 + 1 layout: tiles 1 & 2 share top row (50% each), tile 3 spans bottom row
   at 50% width (centred). Per Tim's brief — feature tile gets more breathing room. */
.dc-cs-grid > .dc-cs-tile:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
}
@media (max-width: 768px) {
    .dc-cs-grid {
        grid-template-columns: 1fr;
    }
    .dc-cs-grid > .dc-cs-tile:nth-child(3) {
        grid-column: auto;
        max-width: 100%;
    }
}

/* v2.4.0 — trusted-by logos enlarged per Gully feedback (¶311 'too tiny') */
/* Logos were 28px tall (the second override) — way too small for the brand
   to read at a glance. Push to 64px desktop / 48px mobile, drop the harsh
   grayscale-and-darken filter (was making logos look washed-out), increase
   the heading prominence + gap rhythm. */
.st-sop-trusted-by {
    margin: 5rem auto !important;
    padding: 3.5rem 1.5rem !important;
}
.st-sop-trusted-by__heading {
    font-size: 0.875rem !important;
    letter-spacing: 0.18em !important;
    color: #555 !important;
    margin-bottom: 2.75rem !important;
}
.st-sop-trusted-by__list {
    gap: 2.75rem 3.5rem !important;
}
.st-sop-trusted-by__item img {
    max-height: 64px !important;
    filter: grayscale(100%) !important;
    opacity: 0.75 !important;
}
.st-sop-trusted-by__item img:hover {
    filter: none !important;
    opacity: 1 !important;
}
@media (max-width: 768px) {
    .st-sop-trusted-by__item img {
        max-height: 48px !important;
    }
    .st-sop-trusted-by__list {
        gap: 2rem 2.5rem !important;
    }
}

/* ============================================================
   US template (sunday-treat-us.php) — section spacing tweaks
   Per Tim 2026-06-03: extra breathing room above the
   "Why US Clients Love" cards section and below the
   case-study tabs/BTS section before the dark CTA.
   Applies to both /us-video-agency/ and /us-video-agency-v2/
   ============================================================ */
body.page-template-sunday-treat-us .content2#how-we-do-it {
    margin-top: 80px;
}
body.page-template-sunday-treat-us .tabsection.bts {
    margin-bottom: 80px;
}
@media (max-width: 768px) {
    body.page-template-sunday-treat-us .content2#how-we-do-it {
        margin-top: 48px;
    }
    body.page-template-sunday-treat-us .tabsection.bts {
        margin-bottom: 48px;
    }
}

/* 4-tile case-study grid: undo the 3-tile :nth-child(3) centering rule so all
   four tiles flow as 2x2. Base grid is already 1fr 1fr (2-col). */
.dc-cs-grid--four > .dc-cs-tile:nth-child(3) {
    grid-column: auto !important;
    max-width: none !important;
    justify-self: stretch !important;
}
@media (max-width: 768px) {
    .dc-cs-grid--four > .dc-cs-tile:nth-child(3) {
        grid-column: auto !important;
        max-width: 100% !important;
    }
}

/* =============================================================================
 * v2.4.5 — awards logo strip in full colour (scoped via section aria-label,
 * which the plugin sets from the block heading). Client request 2026-06-10.
 * ========================================================================== */
.st-sop-trusted-by[aria-label="Recent Awards"] .st-sop-trusted-by__item img {
    filter: none !important;
    opacity: 1 !important;
    max-height: 76px !important;
}
/* v2.4.6 — spread the awards logos across the full content width */
.st-sop-trusted-by[aria-label="Recent Awards"] .st-sop-trusted-by__list {
    justify-content: space-between !important;
    width: 100%;
}
@media (max-width: 768px) {
    .st-sop-trusted-by[aria-label="Recent Awards"] .st-sop-trusted-by__list {
        justify-content: center !important;
    }
    .st-sop-trusted-by[aria-label="Recent Awards"] .st-sop-trusted-by__item img {
        max-height: 52px !important;
    }
}

/* v2.4.8 - four-tile case-study grid: force deterministic 2x2 on all pages.
   The body-class-scoped auto-fit rule (v2.1.9) was collapsing to 1 column on the
   US hub. --four grids must never depend on container-width auto-fit. */
body.parent-pageid-1189 .dc-cs-grid--four,
body.us-video-agency .dc-cs-grid--four,
body.us-video-agency-v2 .dc-cs-grid--four,
.dc-cs-grid--four {
    grid-template-columns: 1fr 1fr !important;
}
@media (max-width: 768px) {
    body.parent-pageid-1189 .dc-cs-grid--four,
    body.us-video-agency .dc-cs-grid--four,
    body.us-video-agency-v2 .dc-cs-grid--four,
    .dc-cs-grid--four {
        grid-template-columns: 1fr !important;
    }
}

/* v2.4.7 - tighten gap between theme work section and SOP wrapper on service pages */
.single-service .st-sop-modular { margin-top: 0 !important; }
.single-service .st-sop-quick-answer { margin-top: 0 !important; }

/* v2.4.8b - div-rooted tile structure (hub render path ejects block elements from anchors) */
.dc-cs-tile__imglink { display: block; text-decoration: none; }
.dc-cs-tile__title a { color: inherit; text-decoration: none; }
.dc-cs-tile__title a:hover { color: #FF50BE; }

.on-location-tile__imglink { display: block; text-decoration: none; }
.on-location-tile__title a { color: inherit; text-decoration: none; }
.on-location-tile__title a:hover { color: #FF50BE; }

/* v2.4.9 - logged-in admin bar pushed page content down 32px but the fixed header
   stayed at top:0, leaving a white strip between header and hero. Visitors never
   saw it; reviewers (logged in) did. Standard WP fix: offset the fixed header. */
body.admin-bar .header { top: 32px; }
@media screen and (max-width: 782px) {
    body.admin-bar .header { top: 46px; }
}


/* ------------------------------------------------------------------
 * v2.4.10 (2026-06-12)
 * Service pages: main is flex-column with a 128px row-gap, so the SOP
 * wrapper and its last block must not add their own bottom margins on
 * top of it. Keeps the gap to the next section (e.g. the pink
 * find-the-fun CTA) at the standard 128px.
 * ------------------------------------------------------------------ */
body.single-service .st-sop-modular {
    margin-bottom: 0;
}
body.single-service .st-sop-modular > :last-child {
    margin-bottom: 0;
}

/* ST-FIX content-production toolkit gap 2026-06-13: 'Our Production Toolkit' heading sits alone in section.content1 between the intro and the serviceacr image rows; <main> is flex column gap:128px so it gets 128px top+bottom. Pull it in on both sides (page-scoped). */
@media (min-width:992px){body.content-production section.content1#how-we-do-it{margin-top:-64px;margin-bottom:-96px}}

/* =============================================================================
 * 2026-06-13 — US pages polish (Tim): centred showreel caption + FAQ restyle to
 * match the theme service-page accordion (grey bars, dark chevron), like
 * /what-we-do/content-production/. Scoped to the USA hub (page-id-1189) and its
 * city children (parent-pageid-1189) so other pages are untouched.
 * ============================================================================= */

/* Showreel caption: gap above the video explanation + centre the block (city pages). */
body.parent-pageid-1189 .st-sop-showreel__caption {
    margin-top: 1.75rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

/* FAQ accordion: grey question bars, dark chevron, like the Content Production page. */
body.parent-pageid-1189 .st-sop-faq__item,
body.us-video-agency .st-sop-faq__item {
    border: 1px solid #ECECEC !important;
    border-radius: 10px !important;
    margin-bottom: 10px !important;
    overflow: hidden !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
}
body.parent-pageid-1189 .st-sop-faq__item:hover,
body.us-video-agency .st-sop-faq__item:hover,
body.parent-pageid-1189 .st-sop-faq__item[open],
body.us-video-agency .st-sop-faq__item[open] {
    border-color: #DCDCDC !important;
}
body.parent-pageid-1189 .st-sop-faq__item summary,
body.us-video-agency .st-sop-faq__item summary {
    background: #F9F9F9 !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #101828 !important;
    padding: 1.25rem 3.5rem 1.25rem 1.5rem !important;
}
body.parent-pageid-1189 .st-sop-faq__item[open] summary,
body.us-video-agency .st-sop-faq__item[open] summary {
    color: #101828 !important;
}
body.parent-pageid-1189 .st-sop-faq__item summary::after,
body.us-video-agency .st-sop-faq__item summary::after {
    right: 1.625rem !important;
    width: 10px !important;
    height: 10px !important;
    margin-top: -7px !important;
    border-right: 2.5px solid #101828 !important;
    border-bottom: 2.5px solid #101828 !important;
}
body.parent-pageid-1189 .st-sop-faq__item[open] summary::after,
body.us-video-agency .st-sop-faq__item[open] summary::after {
    border-right-color: #101828 !important;
    border-bottom-color: #101828 !important;
}
body.parent-pageid-1189 .st-sop-faq__item > div,
body.us-video-agency .st-sop-faq__item > div {
    padding: 0.25rem 1.5rem 0.5rem !important;
    background: #fff !important;
}
body.parent-pageid-1189 .st-sop-faq__item p,
body.us-video-agency .st-sop-faq__item p {
    margin: 0 0 1rem !important;
    color: #424242 !important;
}


/* ST 2026-06-14: Animation (1400) - tighten the empty gap above the toolkit cards
   (this page has no section1 heading/sub, leaving the 128px main flex gap empty). Desktop only. */
@media (min-width: 992px){
  body.animation section.content1#how-we-do-it{ margin-top: -80px; }
  body.animation section.content1#how-we-do-it .content1__subtitle{ margin-bottom: 0; }
}
