/**
 * Blessings Therapy Centre
 * Testimonials Page
 * Release: 2.8.1
 */

.btct-page,
.btct-page *,
.btct-page *::before,
.btct-page *::after {
    box-sizing: border-box !important;
}

.btct-page {
    --btct-green-950: #173f35;
    --btct-green-900: #1f4d40;
    --btct-green-800: #2e6252;
    --btct-green-700: #4d7e6d;
    --btct-green-600: #6f9f8f;
    --btct-green-200: #d9e8e1;
    --btct-green-100: #edf5f1;
    --btct-cream: #fbf8f2;
    --btct-white: #ffffff;
    --btct-text: #203a32;
    --btct-muted: #5d716a;
    --btct-border: rgba(31, 77, 64, 0.13);
    --btct-gold: #d9a62e;
    --btct-shadow: 0 22px 58px rgba(24, 59, 49, 0.09);
    --btct-container: 1280px;

    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    overflow: clip !important;
    align-self: stretch !important;
    color: var(--btct-text) !important;
    background: var(--btct-white) !important;
    font-family: "DM Sans", Arial, Helvetica, sans-serif !important;
}

/*
 * v2.8.1 template-fallback containment
 * The Testimonials page may be rendered inside a customised Page template.
 * The alignfull class allows the replacement content to escape a constrained
 * Post Content container without using brittle viewport-width calculations.
 */
.btct-page.alignfull {
    width: 100% !important;
    max-width: none !important;
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

.btct-page.alignfull + * {
    margin-block-start: 0 !important;
}

.btct-page :where(h1, h2, h3, p, blockquote, figure) {
    margin-top: 0 !important;
}

.btct-page :where(h1, h2, h3) {
    color: var(--btct-green-950) !important;
    text-wrap: balance;
}

.btct-page p,
.btct-page blockquote {
    text-wrap: pretty;
}

.btct-page a {
    text-decoration: none !important;
}

.btct-page img,
.btct-page svg {
    max-width: 100%;
}

.btct-container {
    position: relative;
    width: min(calc(100% - 64px), var(--btct-container)) !important;
    max-width: var(--btct-container) !important;
    margin-inline: auto !important;
}

.btct-page section[id] {
    scroll-margin-top: 120px;
}

.btct-eyebrow,
.btct-kicker {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: var(--btct-green-700) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
}

.btct-eyebrow > span {
    width: 9px !important;
    height: 9px !important;
    flex: 0 0 9px !important;
    border-radius: 50% !important;
    background: var(--btct-green-600) !important;
    box-shadow: 0 0 0 6px rgba(111, 159, 143, 0.14) !important;
}

.btct-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    min-height: 56px !important;
    padding: 14px 24px !important;
    border: 1px solid transparent !important;
    border-radius: 999px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-align: center !important;
    white-space: nowrap !important;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease !important;
}

.btct-button > span {
    display: inline-flex !important;
    color: inherit !important;
    -webkit-text-fill-color: currentColor !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.btct-button:hover {
    transform: translateY(-2px) !important;
}

.btct-button--primary {
    color: #ffffff !important;
    background: var(--btct-green-900) !important;
    box-shadow: 0 14px 30px rgba(31, 77, 64, 0.2) !important;
}

.btct-button--secondary {
    color: var(--btct-green-900) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: var(--btct-border) !important;
}

.btct-button--light {
    color: var(--btct-green-950) !important;
    background: #ffffff !important;
    box-shadow: 0 14px 32px rgba(13, 42, 34, 0.18) !important;
}

.btct-button--outline-light {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.42) !important;
}

/* Hero */
.btct-hero {
    position: relative !important;
    isolation: isolate !important;
    padding: 28px 0 88px !important;
    background:
        radial-gradient(circle at 90% 6%, rgba(111, 159, 143, 0.22), transparent 28%),
        radial-gradient(circle at 4% 90%, rgba(221, 194, 160, 0.17), transparent 30%),
        linear-gradient(135deg, #fbfcfa 0%, #eff6f2 100%) !important;
}

.btct-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -170px;
    bottom: -230px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(77, 126, 109, 0.13);
    border-radius: 50%;
}

.btct-breadcrumb {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 58px !important;
    color: var(--btct-muted) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.btct-breadcrumb a {
    color: var(--btct-green-800) !important;
}

.btct-hero__grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.72fr) !important;
    align-items: center !important;
    gap: clamp(48px, 7vw, 100px) !important;
}

.btct-hero__copy {
    min-width: 0 !important;
    max-width: 760px !important;
}

.btct-hero__copy h1 {
    margin: 24px 0 26px !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(54px, 5.3vw, 82px) !important;
    font-weight: 500 !important;
    line-height: 0.99 !important;
    letter-spacing: -0.045em !important;
}

.btct-hero__copy h1 em {
    display: block !important;
    color: var(--btct-green-700) !important;
    font-weight: 500 !important;
}

.btct-hero__copy > p {
    max-width: 690px !important;
    margin-bottom: 0 !important;
    color: var(--btct-muted) !important;
    font-size: 18px !important;
    line-height: 1.78 !important;
}

.btct-hero__actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 14px !important;
    margin-top: 34px !important;
}

.btct-hero__summary {
    position: relative !important;
    padding: clamp(34px, 4vw, 52px) !important;
    overflow: hidden !important;
    border: 1px solid rgba(31, 77, 64, 0.12) !important;
    border-radius: 34px !important;
    background: rgba(255, 255, 255, 0.86) !important;
    box-shadow: var(--btct-shadow) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

.btct-google-mark {
    display: grid !important;
    place-items: center !important;
    width: 58px !important;
    height: 58px !important;
    margin-bottom: 24px !important;
    border: 1px solid var(--btct-border) !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    box-shadow: 0 10px 24px rgba(31, 77, 64, 0.08) !important;
}

.btct-google-mark svg {
    width: 30px !important;
    height: 30px !important;
}

.btct-hero__stars,
.btct-stars {
    color: var(--btct-gold) !important;
    font-size: 18px !important;
    line-height: 1 !important;
    letter-spacing: 0.08em !important;
}

.btct-hero__summary > strong {
    display: block !important;
    margin-top: 18px !important;
    color: var(--btct-green-950) !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 28px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
}

.btct-hero__summary > p {
    margin: 12px 0 24px !important;
    color: var(--btct-muted) !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
}

.btct-hero__trust-list {
    display: grid !important;
    gap: 10px !important;
}

.btct-hero__trust-list span {
    position: relative !important;
    padding-left: 26px !important;
    color: var(--btct-green-800) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.btct-hero__trust-list span::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--btct-green-600);
}

/* Section heading */
.btct-section-heading {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr) !important;
    align-items: end !important;
    gap: clamp(32px, 6vw, 92px) !important;
    margin-bottom: 56px !important;
}

.btct-section-heading h2,
.btct-values__intro h2 {
    margin: 18px 0 0 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(42px, 4.3vw, 66px) !important;
    font-weight: 500 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.035em !important;
}

.btct-section-heading h2 em,
.btct-values__intro h2 em {
    color: var(--btct-green-700) !important;
    font-weight: 500 !important;
}

.btct-section-heading > p,
.btct-values__intro > p {
    margin-bottom: 0 !important;
    color: var(--btct-muted) !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
}

/* Reviews */
.btct-reviews {
    padding: clamp(78px, 9vw, 132px) 0 !important;
    background: #ffffff !important;
}

.btct-featured-review {
    display: grid !important;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr) !important;
    overflow: hidden !important;
    border: 1px solid var(--btct-border) !important;
    border-radius: 34px !important;
    background: linear-gradient(135deg, #f8fbf9 0%, #eef6f1 100%) !important;
    box-shadow: var(--btct-shadow) !important;
}

.btct-featured-review__content {
    padding: clamp(34px, 5vw, 66px) !important;
}

.btct-review-meta {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
}

.btct-review-source {
    display: inline-flex !important;
    padding: 8px 13px !important;
    border-radius: 999px !important;
    color: var(--btct-green-800) !important;
    background: #ffffff !important;
    border: 1px solid var(--btct-border) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
}

.btct-featured-review blockquote {
    margin: 34px 0 38px !important;
    color: var(--btct-green-950) !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(25px, 2.25vw, 35px) !important;
    font-weight: 400 !important;
    line-height: 1.47 !important;
}

.btct-featured-review footer,
.btct-review-card__top {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.btct-avatar {
    display: grid !important;
    place-items: center !important;
    flex: 0 0 48px !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    background: var(--btct-green-800) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
}

.btct-featured-review footer > div,
.btct-review-card__top > div {
    display: grid !important;
    gap: 3px !important;
}

.btct-page cite {
    color: var(--btct-green-950) !important;
    font-style: normal !important;
    font-size: 15px !important;
    font-weight: 800 !important;
}

.btct-featured-review footer span,
.btct-review-card__top span {
    color: var(--btct-muted) !important;
    font-size: 12px !important;
}

.btct-featured-review__aside {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    min-width: 0 !important;
    padding: clamp(34px, 4vw, 54px) !important;
    color: #ffffff !important;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.15), transparent 32%),
        linear-gradient(155deg, var(--btct-green-900), #2f6a59) !important;
}

.btct-quote-mark {
    position: absolute !important;
    top: 24px !important;
    right: 34px !important;
    color: rgba(255, 255, 255, 0.18) !important;
    font-family: Georgia, serif !important;
    font-size: 130px !important;
    line-height: 1 !important;
}

.btct-featured-review__aside strong {
    position: relative !important;
    color: #ffffff !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 27px !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
}

.btct-featured-review__aside p {
    position: relative !important;
    margin: 14px 0 24px !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
}

.btct-featured-review__aside a {
    position: relative !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 800 !important;
}

.btct-review-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    margin-top: 24px !important;
}

.btct-review-card {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    min-height: 100% !important;
    padding: 30px !important;
    border: 1px solid var(--btct-border) !important;
    border-radius: 26px !important;
    background: #ffffff !important;
    box-shadow: 0 16px 38px rgba(24, 59, 49, 0.06) !important;
}

.btct-review-card > .btct-stars {
    margin: 25px 0 18px !important;
}

.btct-review-card blockquote {
    flex: 1 !important;
    margin-bottom: 26px !important;
    color: var(--btct-muted) !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
}

.btct-review-card > a {
    color: var(--btct-green-800) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

.btct-reviews__action {
    display: flex !important;
    justify-content: center !important;
    margin-top: 40px !important;
}

/* Values */
.btct-values {
    padding: clamp(76px, 8vw, 118px) 0 !important;
    background: linear-gradient(180deg, #f5faf7 0%, #fbfcfa 100%) !important;
}

.btct-values__intro {
    max-width: 850px !important;
    margin-bottom: 50px !important;
}

.btct-values__intro > p {
    max-width: 720px !important;
    margin-top: 24px !important;
}

.btct-values__grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.btct-values__grid article {
    padding: 28px !important;
    border: 1px solid var(--btct-border) !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.82) !important;
}

.btct-values__grid article > span {
    display: inline-flex !important;
    margin-bottom: 34px !important;
    color: var(--btct-green-600) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 0.12em !important;
}

.btct-values__grid h3,
.btct-journey__grid h3 {
    margin-bottom: 12px !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 23px !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
}

.btct-values__grid p,
.btct-journey__grid p {
    margin-bottom: 0 !important;
    color: var(--btct-muted) !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
}

/* Journey */
.btct-journey {
    padding: clamp(78px, 9vw, 132px) 0 !important;
    background: #ffffff !important;
}

.btct-section-heading--centre {
    display: block !important;
    max-width: 850px !important;
    margin-inline: auto !important;
    text-align: center !important;
}

.btct-section-heading--centre > p {
    max-width: 650px !important;
    margin: 22px auto 0 !important;
}

.btct-journey__grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
}

.btct-journey__grid article {
    position: relative !important;
    min-width: 0 !important;
    padding: 30px 26px !important;
    border: 1px solid var(--btct-border) !important;
    border-radius: 24px !important;
    background: var(--btct-cream) !important;
}

.btct-journey__number {
    display: grid !important;
    place-items: center !important;
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 32px !important;
    border-radius: 14px !important;
    color: #ffffff !important;
    background: var(--btct-green-800) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

/* CTA */
.btct-cta {
    padding: 0 0 clamp(70px, 8vw, 110px) !important;
    background: #ffffff !important;
}

.btct-cta__panel {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: clamp(36px, 7vw, 100px) !important;
    padding: clamp(42px, 6vw, 78px) !important;
    overflow: hidden !important;
    border-radius: 34px !important;
    background:
        radial-gradient(circle at 95% 5%, rgba(255, 255, 255, 0.15), transparent 28%),
        linear-gradient(135deg, #17483a 0%, #356e5c 100%) !important;
    box-shadow: 0 26px 66px rgba(17, 61, 49, 0.18) !important;
}

.btct-cta__panel .btct-kicker {
    color: rgba(255, 255, 255, 0.76) !important;
}

.btct-cta__panel h2 {
    max-width: 760px !important;
    margin: 18px 0 18px !important;
    color: #ffffff !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(40px, 4.5vw, 65px) !important;
    font-weight: 500 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.035em !important;
}

.btct-cta__panel p {
    max-width: 760px !important;
    margin-bottom: 0 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
}

.btct-cta__actions {
    display: grid !important;
    gap: 12px !important;
    min-width: 250px !important;
}

.btct-disclaimer {
    max-width: 900px !important;
    margin: 24px auto 0 !important;
    color: var(--btct-muted) !important;
    font-size: 12px !important;
    line-height: 1.6 !important;
    text-align: center !important;
}

/* Medium desktop / tablet landscape */
@media (max-width: 1180px) {
    .btct-container {
        width: min(calc(100% - 44px), var(--btct-container)) !important;
    }

    .btct-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr) !important;
        gap: 44px !important;
    }

    .btct-hero__copy h1 {
        font-size: clamp(50px, 5.4vw, 68px) !important;
    }

    .btct-review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .btct-review-card:last-child {
        grid-column: 1 / -1 !important;
    }

    .btct-values__grid,
    .btct-journey__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .btct-hero {
        padding-bottom: 68px !important;
    }

    .btct-breadcrumb {
        margin-bottom: 38px !important;
    }

    .btct-hero__grid,
    .btct-section-heading,
    .btct-featured-review,
    .btct-cta__panel {
        grid-template-columns: 1fr !important;
    }

    .btct-hero__summary {
        max-width: 620px !important;
    }

    .btct-section-heading {
        align-items: start !important;
        gap: 22px !important;
    }

    .btct-section-heading > p {
        max-width: 700px !important;
    }

    .btct-featured-review__aside {
        min-height: 300px !important;
    }

    .btct-cta__actions {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        min-width: 0 !important;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .btct-container {
        width: min(calc(100% - 28px), 600px) !important;
    }

    .btct-hero {
        padding: 18px 0 52px !important;
    }

    .btct-breadcrumb {
        margin-bottom: 30px !important;
        font-size: 13px !important;
    }

    .btct-hero__grid {
        gap: 34px !important;
    }

    .btct-hero__copy h1 {
        margin-top: 20px !important;
        font-size: clamp(42px, 13vw, 56px) !important;
        line-height: 1.03 !important;
    }

    .btct-hero__copy > p {
        font-size: 15.5px !important;
        line-height: 1.7 !important;
    }

    .btct-hero__actions,
    .btct-cta__actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .btct-button {
        width: 100% !important;
        min-height: 54px !important;
        white-space: normal !important;
    }

    .btct-hero__summary {
        padding: 28px 24px !important;
        border-radius: 26px !important;
    }

    .btct-section-heading h2,
    .btct-values__intro h2,
    .btct-cta__panel h2 {
        font-size: clamp(36px, 10.8vw, 48px) !important;
    }

    .btct-review-grid,
    .btct-values__grid,
    .btct-journey__grid {
        grid-template-columns: 1fr !important;
    }

    .btct-review-card:last-child {
        grid-column: auto !important;
    }

    .btct-featured-review__content,
    .btct-featured-review__aside,
    .btct-review-card,
    .btct-values__grid article,
    .btct-journey__grid article {
        padding: 24px !important;
    }

    .btct-review-meta {
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 14px !important;
    }

    .btct-featured-review blockquote {
        margin: 26px 0 30px !important;
        font-size: 24px !important;
        line-height: 1.5 !important;
    }

    .btct-featured-review__aside {
        min-height: 260px !important;
    }

    .btct-review-card blockquote {
        font-size: 14.5px !important;
    }

    .btct-cta__panel {
        padding: 34px 24px !important;
        border-radius: 28px !important;
    }

    .btct-eyebrow,
    .btct-kicker {
        font-size: 11px !important;
    }
}

@media (max-width: 390px) {
    .btct-container {
        width: calc(100% - 22px) !important;
    }

    .btct-hero__copy h1 {
        font-size: 40px !important;
    }

    .btct-avatar {
        flex-basis: 44px !important;
        width: 44px !important;
        height: 44px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .btct-page *,
    .btct-page *::before,
    .btct-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (forced-colors: active) {
    .btct-button,
    .btct-hero__summary,
    .btct-featured-review,
    .btct-review-card,
    .btct-values__grid article,
    .btct-journey__grid article,
    .btct-cta__panel {
        border: 1px solid CanvasText !important;
    }
}

/*
 * Remove a saved Page template's constrained-content wrapper only when it
 * contains the Testimonials fallback. This keeps the approved header/footer
 * untouched and gives the page sections the same full-width canvas as the
 * dedicated file template.
 */
body.btc-testimonials-route :where(
    .wp-block-post-content,
    .is-layout-constrained,
    .wp-block-group__inner-container
):has(.btct-page) {
    width: 100% !important;
    max-width: none !important;
    margin-inline: 0 !important;
    padding-inline: 0 !important;
}

body.btc-testimonials-route .wp-block-post-content:has(> .btct-page) {
    margin-block: 0 !important;
}