.rps-section,
.rps-section * {
    box-sizing: border-box;
}

.rps-section {
    --rps-bg: transparent;
    --rps-surface: #fffdfb;
    --rps-border: rgba(196, 169, 143, 0.2);
    --rps-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    --rps-heading: #161616;
    --rps-body: #4c4c4c;
    --rps-muted: #2e2e2e;
    --rps-eyebrow: #9f9690;
    --rps-black: #111111;
    color: var(--rps-heading);
}

.rps-shell {
    width: min(100%, 1440px);
    margin: 0 auto;
}

.rps-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.rps-services-homepage {
    background: transparent;
}

.rps-services-shell {
    padding: 80px 148px 72px;
}

.rps-services-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-bottom: 40px;
    text-align: center;
}

.rps-services-eyebrow,
.rps-services-title,
.rps-services-description,
.rps-service-card-title,
.rps-service-card-copy,
.rps-service-card-link,
.rps-services-button {
    margin: 0;
}

.rps-services-eyebrow {
    color: var(--rps-eyebrow);
    font-family: "Lato", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1;
    text-transform: uppercase;
}

.rps-services-title {
    max-width: 18ch;
    color: var(--rps-heading);
    font-family: "Lato", sans-serif;
    font-size: clamp(2.2rem, 3vw, 2.25rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.28;
}

.rps-services-rule {
    width: 50px;
    height: 1.5px;
    background: #9f9690;
}

.rps-services-description {
    max-width: 40rem;
    color: var(--rps-muted);
    font-family: "Lato", sans-serif;
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.65;
}

.rps-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.rps-service-card--more {
    display: block;
}

.rps-services-cta {
    display: none;
}

.rps-service-card {
    --rps-card-accent-1: rgba(196, 169, 143, 0.1);
    --rps-card-accent-2: rgba(196, 169, 143, 0.9);
    --rps-card-accent-3: #eac8a8;
    --rps-card-link: #c4a98f;
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border: 1px solid var(--rps-border);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 251, 0.94)),
        var(--rps-surface);
    box-shadow: var(--rps-shadow);
    isolation: isolate;
}

.rps-service-card-surface {
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: inherit;
    text-decoration: none;
}

.rps-service-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
    opacity: 1;
}

.rps-service-art {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 150px;
    height: 183px;
    pointer-events: none;
    opacity: 0.72;
    z-index: 0;
}

.rps-service-art img {
    display: block;
    width: 100%;
    height: 100%;
}

.rps-service-card-topline {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--rps-card-accent-1) 0%,
        var(--rps-card-accent-2) 20%,
        var(--rps-card-accent-3) 50%,
        var(--rps-card-accent-2) 80%,
        var(--rps-card-accent-1) 100%
    );
}

.rps-service-card-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 218px;
    padding: 32px 24px 28px;
}

.rps-service-card-title {
    color: var(--rps-heading);
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.333;
}

.rps-service-card-copy {
    color: var(--rps-body);
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.65;
    max-width: 26ch;
}

.rps-service-card-copy--tablet,
.rps-service-card-copy--mobile,
.rps-service-card-link-label--tablet {
    display: none;
}

.rps-service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: fit-content;
    padding-top: 4px;
    color: var(--rps-card-link);
    font-family: "Lato", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.rps-service-card:hover .rps-service-card-link,
.rps-service-card:focus-within .rps-service-card-link {
    color: color-mix(in srgb, var(--rps-card-link) 70%, #111 30%);
    transform: translateX(2px);
}

.rps-service-card-surface:focus-visible,
.rps-services-button:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--rps-card-link) 65%, #111 35%);
    outline-offset: 3px;
}

.rps-service-card-arrow {
    line-height: 1;
}

.rps-services-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 14px 36px;
    border-radius: 4px;
    background: var(--rps-black);
    color: #f7f1eb;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 180ms ease,
        background-color 180ms ease;
}

.rps-services-button:hover,
.rps-services-button:focus-visible {
    background: #26211d;
    transform: translateY(-1px);
}

.rps-tone-sand {
    --rps-card-accent-1: rgba(196, 169, 143, 0.1);
    --rps-card-accent-2: rgba(196, 169, 143, 0.9);
    --rps-card-accent-3: #eac8a8;
    --rps-card-link: #c4a98f;
}

.rps-tone-taupe {
    --rps-card-accent-1: rgba(181, 168, 153, 0.1);
    --rps-card-accent-2: rgba(181, 168, 153, 0.9);
    --rps-card-accent-3: #dbc7b2;
    --rps-card-link: #b5a899;
}

.rps-tone-gold {
    --rps-card-accent-1: rgba(192, 168, 144, 0.1);
    --rps-card-accent-2: rgba(192, 168, 144, 0.9);
    --rps-card-accent-3: #e6c7a9;
    --rps-card-link: #c0a890;
}

.rps-tone-rose {
    --rps-card-accent-1: rgba(188, 166, 155, 0.1);
    --rps-card-accent-2: rgba(188, 166, 155, 0.9);
    --rps-card-accent-3: #e2c5b4;
    --rps-card-link: #bca69b;
}

.rps-tone-champagne {
    --rps-card-accent-1: rgba(199, 181, 165, 0.1);
    --rps-card-accent-2: rgba(199, 181, 165, 0.9);
    --rps-card-accent-3: #edd4be;
    --rps-card-link: #c7b5a5;
}

.rps-tone-beige {
    --rps-card-accent-1: rgba(191, 173, 158, 0.1);
    --rps-card-accent-2: rgba(191, 173, 158, 0.9);
    --rps-card-accent-3: #e5ccb7;
    --rps-card-link: #bfad9e;
}

.rps-tone-clay {
    --rps-card-accent-1: rgba(185, 166, 152, 0.1);
    --rps-card-accent-2: rgba(185, 166, 152, 0.9);
    --rps-card-accent-3: #dfc5b1;
    --rps-card-link: #b9a698;
}

@media (max-width: 1280px) {
    .rps-services-shell {
        padding-inline: 64px;
    }

    .rps-service-grid {
        gap: 24px;
    }
}

@media (max-width: 991px) {
    .rps-services-shell {
        padding: 64px 40px 56px;
    }

    .rps-services-header {
        padding-bottom: 36px;
    }

    .rps-services-eyebrow {
        font-size: 12px;
        letter-spacing: 0.15em;
    }

    .rps-services-title {
        max-width: 17ch;
        font-size: 30px;
        line-height: 1.333;
    }

    .rps-services-rule {
        width: 44px;
    }

    .rps-services-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .rps-service-grid {
        gap: 24px 20px;
    }

    .rps-service-card {
        min-height: 210px;
    }

    .rps-service-art {
        right: -3px;
        width: 100px;
        height: 122px;
        opacity: 0.66;
    }

    .rps-service-card-topline {
        height: 3px;
    }

    .rps-service-card-body {
        min-height: 207px;
        padding: 20px 14px 18px;
    }

    .rps-service-card-title {
        font-size: 14px;
        line-height: 1.43;
    }

    .rps-service-card-copy {
        font-size: 12px;
        line-height: 1.5;
        max-width: none;
    }

    .rps-service-card-copy--desktop,
    .rps-service-card-link-label--desktop {
        display: none;
    }

    .rps-service-card-copy--tablet,
    .rps-service-card-link-label--tablet {
        display: inline;
    }

    .rps-service-card-link {
        gap: 0.3rem;
        font-size: 11px;
        letter-spacing: 0.03em;
    }

    .rps-services-button {
        min-height: 42px;
        padding: 13px 30px;
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .rps-services-shell {
        padding: 48px 20px 40px;
    }

    .rps-services-header {
        gap: 8px;
        padding-bottom: 24px;
    }

    .rps-services-eyebrow {
        font-size: 10px;
        letter-spacing: 0.15em;
    }

    .rps-services-title {
        width: 100%;
        max-width: 280px;
        font-size: 22px;
        line-height: 1.36;
    }

    .rps-services-rule {
        width: 36px;
    }

    .rps-services-description {
        display: none;
    }

    .rps-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 12px;
    }

    .rps-service-card--more {
        display: none;
    }

    .rps-services-homepage[data-rps-expanded="true"] .rps-service-card--more {
        display: block;
    }

    .rps-service-card {
        min-height: 130px;
        order: var(--rps-mobile-order);
    }

    .rps-service-card-body {
        min-height: 127.5px;
        gap: 10px;
        padding: 14px 12px;
    }

    .rps-service-art {
        right: -1px;
        width: 80px;
        height: 98px;
        opacity: 0.62;
    }

    .rps-service-card-topline {
        height: 2.5px;
    }

    .rps-service-card-title {
        font-size: 13px;
        line-height: 1.38;
    }

    .rps-service-card-copy {
        font-size: 11px;
        line-height: 1.45;
    }

    .rps-service-card-copy--tablet,
    .rps-service-card-link {
        display: none;
    }

    .rps-service-card-copy--mobile {
        display: block;
    }

    .rps-services-cta {
        display: flex;
        justify-content: center;
        padding-top: 20px;
    }

    .rps-services-homepage[data-rps-expanded="true"] .rps-services-cta {
        display: none;
    }

    .rps-services-button {
        width: 100%;
        min-height: 37px;
        padding: 12px 24px;
        font-size: 11px;
        letter-spacing: 0.06em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rps-service-card-link,
    .rps-services-button {
        transition: none;
    }
}

.rps-page-breakout,
.rps-page-breakout * {
    box-sizing: border-box;
}

.rps-page-breakout {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: clip;
}

.rps-areas-page {
    --rps-areas-bg: #f1f1ee;
    --rps-areas-panel: #ffffff;
    --rps-areas-panel-alt: #f4f8f8;
    --rps-areas-map: #f7f6f3;
    --rps-areas-border: rgba(196, 169, 143, 0.2);
    --rps-areas-heading: #161616;
    --rps-areas-body: #2e2e2e;
    --rps-areas-copy: #4c4c4c;
    --rps-areas-eyebrow: #9f9690;
    --rps-areas-accent: #c4a98f;
    background: var(--rps-areas-bg);
    color: var(--rps-areas-heading);
    font-family: "Lato", sans-serif;
}

.rps-areas-shell {
    width: min(1144px, calc(100% - 296px));
    margin: 0 auto;
}

.rps-areas-hero,
.rps-areas-intro,
.rps-areas-map,
.rps-areas-communities,
.rps-areas-procedures {
    position: relative;
}

.rps-areas-hero {
    background: #1b1918;
    padding: 100px 0 60px;
}

.rps-areas-page--hub .rps-areas-hero {
    padding-top: 120px;
    padding-bottom: 80px;
}

.rps-areas-hero__inner,
.rps-areas-section-header,
.rps-areas-intro__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rps-areas-hero__inner {
    gap: 16px;
    text-align: center;
}

.rps-areas-hero__eyebrow,
.rps-areas-section-header__eyebrow {
    margin: 0;
    color: var(--rps-areas-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1;
    text-transform: uppercase;
}

.rps-areas-section-header__eyebrow {
    color: var(--rps-areas-eyebrow);
}

.rps-areas-hero__heading,
.rps-areas-section-heading,
.rps-areas-map__heading {
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.rps-areas-hero__heading {
    max-width: 20ch;
    color: #fff;
    font-size: 42px;
    line-height: 1.3;
}

.rps-areas-page--detail .rps-areas-hero__heading {
    max-width: 24ch;
}

.rps-areas-hero__rule,
.rps-areas-section-rule {
    display: block;
    width: 50px;
    height: 2px;
    background: var(--rps-areas-accent);
}

.rps-areas-section-rule {
    background: var(--rps-areas-eyebrow);
}

.rps-areas-hero__description {
    max-width: 44ch;
    margin: 0;
    color: #d9d9d9;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
}

.rps-areas-intro,
.rps-areas-map {
    background: var(--rps-areas-panel);
}

.rps-areas-intro {
    padding: 72px 0 64px;
}

.rps-areas-page--detail .rps-areas-intro {
    padding-bottom: 72px;
}

.rps-areas-intro__inner {
    width: min(880px, 100%);
    gap: 24px;
    text-align: center;
}

.rps-areas-section-heading {
    color: var(--rps-areas-heading);
    font-size: 36px;
    line-height: 1.2;
    text-align: center;
}

.rps-areas-intro__copy {
    width: 100%;
    color: var(--rps-areas-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.02em;
    text-align: left;
}

.rps-areas-intro__copy p {
    margin: 0;
}

.rps-areas-intro__copy p + p {
    margin-top: 24px;
}

.rps-areas-map {
    padding: 64px 0;
}

.rps-areas-page--detail .rps-areas-map {
    padding-top: 48px;
}

.rps-areas-map__heading {
    margin: 0 0 32px;
    color: var(--rps-areas-heading);
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
}

.rps-areas-page--detail .rps-areas-map__heading {
    margin-bottom: 24px;
    font-size: 29px;
}

.rps-areas-map__surface {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.95fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(130, 103, 79, 0.14);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(235, 214, 192, 0.92), rgba(235, 214, 192, 0) 42%),
        linear-gradient(135deg, rgba(249, 243, 236, 0.98), rgba(235, 224, 212, 0.98));
    box-shadow:
        0 28px 70px rgba(40, 27, 18, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.rps-areas-map__canvas-wrap {
    position: relative;
    overflow: hidden;
    min-height: var(--rps-map-height, 340px);
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 30%),
        linear-gradient(145deg, rgba(234, 222, 208, 0.9), rgba(215, 194, 171, 0.9));
}

.rps-areas-map__canvas-wrap::before {
    content: "";
    position: absolute;
    inset: 18px 18px auto auto;
    width: 116px;
    height: 116px;
    border: 1px solid rgba(117, 89, 65, 0.14);
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 1;
}

.rps-areas-map__canvas {
    position: relative;
    width: 100%;
    min-height: var(--rps-map-height, 340px);
}

.rps-areas-map__canvas > div {
    min-height: var(--rps-map-height, 340px);
}

.rps-areas-map__panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 36px 32px;
    background:
        linear-gradient(180deg, rgba(255, 248, 241, 0.88), rgba(245, 236, 227, 0.97)),
        rgba(255, 255, 255, 0.76);
    border-left: 1px solid rgba(130, 103, 79, 0.12);
    backdrop-filter: blur(12px);
}

.rps-areas-map__eyebrow {
    margin: 0;
    color: #8f7f74;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
}

.rps-areas-map__panel-title {
    margin: 0;
    color: #1d1714;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.1;
}

.rps-areas-map__address,
.rps-areas-map__summary {
    margin: 0;
    color: #5d5047;
    font-size: 14px;
    line-height: 1.7;
}

.rps-areas-map__address span {
    display: block;
}

.rps-areas-map__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.rps-areas-map__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease,
        color 180ms ease;
}

.rps-areas-map__action:hover,
.rps-areas-map__action:focus-visible {
    transform: translateY(-1px);
}

.rps-areas-map__action--primary {
    background: #1b1918;
    color: #fff8f1;
    box-shadow: 0 12px 26px rgba(27, 25, 24, 0.16);
}

.rps-areas-map__action--primary:hover,
.rps-areas-map__action--primary:focus-visible {
    background: #2a2521;
}

.rps-areas-map__action--secondary {
    border: 1px solid rgba(130, 103, 79, 0.18);
    background: rgba(255, 255, 255, 0.72);
    color: #5e5044;
}

.rps-areas-map__locations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rps-areas-map__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(130, 103, 79, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: #63544a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        background-color 180ms ease;
}

.rps-areas-map__chip:hover,
.rps-areas-map__chip:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(130, 103, 79, 0.34);
    color: #1b1918;
}

.rps-areas-map__chip.is-active {
    border-color: rgba(201, 163, 124, 0.58);
    background: rgba(201, 163, 124, 0.18);
    color: #4f3d30;
}

.rps-areas-map__surface.is-unavailable .rps-areas-map__canvas::before {
    content: "Map unavailable";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5d5047;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rps-gmap-marker {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.rps-gmap-marker__bubble {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 248, 241, 0.96);
    border-radius: 999px;
    background: #8f7f74;
    box-shadow: 0 10px 22px rgba(38, 24, 16, 0.22);
}

.rps-gmap-marker__bubble::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 999px;
    background: rgba(255, 248, 241, 0.94);
}

.rps-gmap-marker__label {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(130, 103, 79, 0.12);
    border-radius: 999px;
    background: rgba(255, 252, 248, 0.9);
    box-shadow: 0 12px 28px rgba(31, 20, 14, 0.12);
    color: #2c231d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.rps-gmap-marker--office .rps-gmap-marker__bubble {
    width: 24px;
    height: 24px;
    background: #1b1918;
}

.rps-gmap-marker--office .rps-gmap-marker__bubble::before {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(27, 25, 24, 0.18);
    border-radius: 999px;
}

.rps-gmap-marker--active .rps-gmap-marker__bubble {
    background: #c9a37c;
}

.rps-gmap-marker--standard .rps-gmap-marker__label {
    display: none;
}

.rps-areas-communities,
.rps-areas-procedures {
    background: var(--rps-areas-panel-alt);
    padding: 72px 0;
}

.rps-areas-page--detail .rps-areas-procedures {
    padding-top: 72px;
}

.rps-areas-section-header {
    gap: 12px;
    padding-bottom: 16px;
    text-align: center;
}

.rps-areas-section-heading__mobile,
.rps-areas-card__copy--mobile {
    display: none;
}

.rps-areas-cards {
    display: grid;
    gap: 28px;
}

.rps-areas-cards--communities {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.rps-areas-cards--procedures {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rps-areas-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border: 1px solid var(--rps-areas-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.rps-areas-cards--communities .rps-areas-card {
    grid-column: span 2;
    min-height: 240px;
}

.rps-areas-cards--communities .rps-areas-card.is-wide {
    grid-column: span 3;
}

.rps-areas-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.rps-areas-card__line {
    display: block;
    height: 2px;
    background: linear-gradient(90deg, rgba(196, 169, 143, 0.1), rgba(196, 169, 143, 0.9) 20%, #eac8a8 50%, rgba(196, 169, 143, 0.9) 80%, rgba(196, 169, 143, 0.1));
}

.rps-areas-cards .rps-areas-card:nth-child(2) .rps-areas-card__line {
    background: linear-gradient(90deg, rgba(181, 168, 153, 0.1), rgba(181, 168, 153, 0.9) 20%, #dbc7b2 50%, rgba(181, 168, 153, 0.9) 80%, rgba(181, 168, 153, 0.1));
}

.rps-areas-cards .rps-areas-card:nth-child(3) .rps-areas-card__line {
    background: linear-gradient(90deg, rgba(192, 168, 144, 0.1), rgba(192, 168, 144, 0.9) 20%, #e6c7a9 50%, rgba(192, 168, 144, 0.9) 80%, rgba(192, 168, 144, 0.1));
}

.rps-areas-cards .rps-areas-card:nth-child(4) .rps-areas-card__line {
    background: linear-gradient(90deg, rgba(188, 166, 155, 0.1), rgba(188, 166, 155, 0.9) 20%, #e2c5b4 50%, rgba(188, 166, 155, 0.9) 80%, rgba(188, 166, 155, 0.1));
}

.rps-areas-cards .rps-areas-card:nth-child(5) .rps-areas-card__line {
    background: linear-gradient(90deg, rgba(184, 163, 151, 0.1), rgba(184, 163, 151, 0.9) 20%, #dec2b0 50%, rgba(184, 163, 151, 0.9) 80%, rgba(184, 163, 151, 0.1));
}

.rps-areas-cards .rps-areas-card:nth-child(6) .rps-areas-card__line {
    background: linear-gradient(90deg, rgba(199, 181, 165, 0.1), rgba(199, 181, 165, 0.9) 20%, #edd4be 50%, rgba(199, 181, 165, 0.9) 80%, rgba(199, 181, 165, 0.1));
}

.rps-areas-card__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100% - 2px);
    padding: 32px 24px 28px;
}

.rps-areas-card__title,
.rps-areas-card__copy,
.rps-areas-card__link {
    margin: 0;
}

.rps-areas-card__title {
    color: var(--rps-areas-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.rps-areas-cards--procedures .rps-areas-card__title {
    font-size: 18px;
    letter-spacing: 0.03em;
}

.rps-areas-card__copy {
    max-width: 300px;
    color: var(--rps-areas-copy);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.65;
}

.rps-areas-cards--procedures .rps-areas-card__copy {
    font-size: 14px;
}

.rps-areas-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    width: fit-content;
    color: var(--rps-areas-accent);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.rps-areas-cards .rps-areas-card:nth-child(2) .rps-areas-card__link {
    color: #b5a899;
}

.rps-areas-cards .rps-areas-card:nth-child(3) .rps-areas-card__link {
    color: #c0a890;
}

.rps-areas-cards .rps-areas-card:nth-child(4) .rps-areas-card__link {
    color: #bca69b;
}

.rps-areas-cards .rps-areas-card:nth-child(5) .rps-areas-card__link {
    color: #b8a397;
}

.rps-areas-cards .rps-areas-card:nth-child(6) .rps-areas-card__link {
    color: #c7b5a5;
}

.rps-areas-card__link:hover,
.rps-areas-card__link:focus-visible {
    color: #111;
    transform: translateX(2px);
}

.rps-areas-card__link:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--rps-areas-accent) 70%, #111 30%);
    outline-offset: 3px;
}

@media (max-width: 1279px) {
    .rps-areas-shell {
        width: min(1144px, calc(100% - 128px));
    }

    .rps-areas-cards--communities,
    .rps-areas-cards--procedures {
        gap: 24px;
    }
}

@media (max-width: 991px) {
    .rps-areas-shell {
        width: min(100%, calc(100% - 80px));
    }

    .rps-areas-page--hub .rps-areas-hero,
    .rps-areas-hero {
        padding-top: 88px;
        padding-bottom: 56px;
    }

    .rps-areas-hero__heading {
        font-size: 36px;
    }

    .rps-areas-hero__description {
        font-size: 15px;
    }

    .rps-areas-intro,
    .rps-areas-map,
    .rps-areas-communities,
    .rps-areas-procedures {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .rps-areas-section-heading {
        font-size: 32px;
    }

    .rps-areas-intro__copy {
        font-size: 15px;
    }

    .rps-areas-map__heading {
        font-size: 26px;
    }

    .rps-areas-map__surface {
        grid-template-columns: 1fr;
    }

    .rps-areas-map__canvas,
    .rps-areas-map__canvas > div,
    .rps-areas-map__canvas-wrap {
        min-height: min(var(--rps-map-height, 340px), 52vw);
    }

    .rps-areas-map__panel {
        padding: 28px 24px;
        border-left: 0;
        border-top: 1px solid rgba(130, 103, 79, 0.12);
    }

    .rps-areas-cards--communities,
    .rps-areas-cards--procedures {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .rps-areas-cards--communities .rps-areas-card,
    .rps-areas-cards--communities .rps-areas-card.is-wide,
    .rps-areas-cards--procedures .rps-areas-card {
        grid-column: span 1;
        min-height: 220px;
    }

    .rps-areas-card__title {
        font-size: 18px;
    }

    .rps-areas-card__copy {
        max-width: none;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .rps-page-breakout {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .rps-areas-shell {
        width: min(100%, calc(100% - 32px));
    }

    .rps-areas-page--hub .rps-areas-hero,
    .rps-areas-hero {
        padding-top: 72px;
        padding-bottom: 48px;
    }

    .rps-areas-hero__inner {
        gap: 12px;
    }

    .rps-areas-hero__eyebrow,
    .rps-areas-section-header__eyebrow {
        font-size: 10px;
    }

    .rps-areas-hero__heading {
        width: 100%;
        max-width: 280px;
        font-size: 24px;
        line-height: 1.35;
    }

    .rps-areas-page--detail .rps-areas-hero__heading {
        max-width: 280px;
    }

    .rps-areas-hero__description {
        max-width: 280px;
        font-size: 13px;
        line-height: 1.6;
    }

    .rps-areas-intro,
    .rps-areas-map,
    .rps-areas-communities,
    .rps-areas-procedures {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .rps-areas-page--detail .rps-areas-map {
        padding-top: 32px;
    }

    .rps-areas-intro__inner {
        align-items: flex-start;
        text-align: left;
    }

    .rps-areas-intro__inner .rps-areas-section-rule {
        align-self: flex-start;
    }

    .rps-areas-section-header {
        align-items: center;
        text-align: center;
    }

    .rps-areas-section-heading,
    .rps-areas-map__heading {
        font-size: 22px;
        line-height: 1.35;
    }

    .rps-areas-map__heading {
        margin-bottom: 16px;
        text-align: center;
    }

    .rps-areas-intro__copy {
        font-size: 15px;
        line-height: 1.7;
    }

    .rps-areas-page--detail .rps-areas-intro__copy p:nth-child(n+3) {
        display: none;
    }

    .rps-areas-map__surface {
        border-radius: 22px;
    }

    .rps-areas-map__canvas,
    .rps-areas-map__canvas > div,
    .rps-areas-map__canvas-wrap {
        min-height: 220px;
    }

    .rps-areas-map__panel {
        gap: 16px;
        padding: 24px 18px 20px;
    }

    .rps-areas-map__panel-title {
        font-size: 24px;
    }

    .rps-areas-map__address,
    .rps-areas-map__summary {
        font-size: 13px;
        line-height: 1.65;
    }

    .rps-areas-map__actions {
        flex-direction: column;
    }

    .rps-areas-map__action {
        width: 100%;
    }

    .rps-areas-map__chip {
        min-height: 34px;
        padding: 0 12px;
        font-size: 11px;
    }

    .rps-gmap-marker--active .rps-gmap-marker__label,
    .rps-gmap-marker--office .rps-gmap-marker__label {
        display: none;
    }

    .rps-areas-cards--communities {
        grid-template-columns: 1fr;
    }

    .rps-areas-cards--procedures {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .rps-areas-cards--communities .rps-areas-card,
    .rps-areas-cards--communities .rps-areas-card.is-wide {
        min-height: 120px;
    }

    .rps-areas-cards--procedures .rps-areas-card {
        min-height: 120px;
    }

    .rps-areas-card__body {
        padding: 16px 12px 14px;
    }

    .rps-areas-card__title {
        font-size: 15px;
    }

    .rps-areas-cards--procedures .rps-areas-card__title {
        font-size: 13px;
        line-height: 1.38;
    }

    .rps-areas-card__copy--desktop,
    .rps-areas-section-heading__desktop,
    .rps-areas-cards--procedures .rps-areas-card__link {
        display: none;
    }

    .rps-areas-card__copy--mobile,
    .rps-areas-section-heading__mobile {
        display: block;
    }

    .rps-areas-card__copy {
        font-size: 11px;
        line-height: 1.55;
    }

    .rps-areas-cards--procedures .rps-areas-card__copy {
        font-size: 11px;
        line-height: 1.55;
    }

    .rps-areas-cards--communities .rps-areas-card__link {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rps-areas-card__link,
    .rps-areas-map__action,
    .rps-areas-map__chip {
        transition: none;
    }
}

.ad-dentist-template,
.ad-dentist-template * {
    box-sizing: border-box;
}

.ad-dentist-template {
    color: var(--ad-color-blue-deep);
}

.ad-dentist-page {
    --ad-ink: var(--ad-color-blue-deep);
    --ad-soft: var(--ad-color-mist);
    --ad-soft-blue: var(--ad-color-soft-blue);
    --ad-soft-teal: var(--ad-color-mist-strong);
    --ad-line: var(--ad-color-mist-strong);
    --ad-teal: var(--ad-color-teal);
    --ad-teal-dark: var(--ad-color-teal-deep);
    --ad-accent: var(--ad-color-blue);
    --ad-podcast: var(--ad-color-blue-mid);
    --ad-cta: var(--ad-color-blue-deep);
    background: var(--ad-color-white);
    color: var(--ad-ink);
    font-family: var(--ad-font-primary);
    overflow-x: clip;
}

.ad-dentist-hero,
.ad-dentist-facts,
.ad-dentist-panels,
.ad-dentist-quote-band,
.ad-dentist-podcast,
.ad-dentist-credentials,
.ad-dentist-cta-band {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-block: 0;
}

.ad-dentist-shell {
    width: min(calc(100% - 128px), 1280px);
    margin: 0 auto;
}

.ad-dentist-eyebrow {
    margin: 0;
    color: var(--ad-teal);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
    text-transform: uppercase;
}

.ad-dentist-hero {
    background: var(--ad-soft);
    padding: 112px 0;
}

.ad-dentist-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 552px;
    gap: 48px;
    align-items: center;
}

.ad-dentist-hero__content {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    justify-content: center;
}

.ad-dentist-hero__title,
.ad-dentist-panel__title,
.ad-dentist-podcast__title,
.ad-dentist-credentials__title,
.ad-dentist-cta-card__title {
    margin: 0;
    color: var(--ad-ink);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.ad-dentist-hero__title {
    font-size: clamp(2.8rem, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.ad-dentist-hero__credentials {
    margin: 14px 0 0;
    color: var(--ad-ink);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.ad-dentist-hero__copy,
.ad-dentist-hero__copy p,
.ad-dentist-panel__copy,
.ad-dentist-panel__copy p,
.ad-dentist-podcast__copy,
.ad-dentist-cta-card__description {
    margin: 0;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.ad-dentist-hero__copy {
    display: grid;
    gap: 12px;
    max-width: 680px;
}

.ad-dentist-hero__highlight {
    margin: 0;
    color: var(--ad-ink);
    font-size: clamp(1.15rem, 2vw, 24px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.ad-dentist-hero__title + .ad-dentist-hero__copy,
.ad-dentist-hero__title + .ad-dentist-hero__highlight,
.ad-dentist-hero__credentials + .ad-dentist-hero__copy,
.ad-dentist-hero__credentials + .ad-dentist-hero__highlight {
    margin-top: 28px;
}

.ad-dentist-hero__copy + .ad-dentist-hero__highlight {
    margin-top: 28px;
}

.ad-dentist-hero__content > .ad-dentist-actions {
    margin-top: 64px;
}

.ad-dentist-hero__media {
    height: 620px;
}

.ad-dentist-hero__media img,
.ad-dentist-podcast__media img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 14px;
    object-fit: cover;
}

.ad-dentist-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.ad-dentist-actions--centered {
    justify-content: center;
}

.ad-dentist-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 30px;
    border: 1px solid transparent;
    border-radius: var(--ad-radius-sm);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        color 160ms ease,
        transform 160ms ease;
}

.ad-dentist-button:hover,
.ad-dentist-button:focus-visible {
    transform: translateY(-1px);
}

.ad-dentist-button--primary {
    background: var(--ad-accent);
    color: var(--ad-color-white);
}

.ad-dentist-button--secondary {
    border-color: var(--ad-accent);
    color: var(--ad-accent);
}

.ad-dentist-button--podcast {
    width: 100%;
    min-height: 0;
    gap: 10px;
    padding: 20px 40px;
    background: var(--ad-color-teal-wash);
    border: 0;
    color: var(--ad-color-mist);
    overflow: hidden;
}

.ad-dentist-button__icon {
    display: inline-flex;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    color: currentColor;
}

.ad-dentist-button__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.ad-dentist-button--ghost {
    background: var(--ad-color-white-wash);
    border-color: var(--ad-color-white-line);
    color: var(--ad-color-white);
}

.ad-dentist-facts {
    border-bottom: 1px solid var(--ad-line);
    background: var(--ad-color-white);
    padding: 32px 64px;
    margin: 0 0 -1px;
}

.ad-dentist-facts__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
}

.ad-dentist-fact {
    position: relative;
    display: grid;
    gap: 4px;
    padding: 8px 24px;
    text-align: center;
    justify-items: center;
}

.ad-dentist-fact:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 40px;
    transform: translateY(-50%);
    background: var(--ad-line);
}

.ad-dentist-fact__label,
.ad-dentist-list-group__label {
    margin: 0;
    color: var(--ad-teal-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
    text-transform: uppercase;
}

.ad-dentist-fact__value {
    margin: 0;
    color: var(--ad-ink);
    font-size: 16px;
    line-height: 1.5;
}

.ad-dentist-panels {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 0;
    line-height: 0;
}

.ad-dentist-panels__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100vw;
    margin-left: calc(50% - 50vw);
    gap: 0;
}

.ad-dentist-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 112px;
    min-height: 464px;
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
}

.ad-dentist-panel--blue {
    background: var(--ad-soft-blue);
}

.ad-dentist-panel--teal {
    background: var(--ad-soft-teal);
}

.ad-dentist-panel__inner {
    max-width: 496px;
    width: 100%;
}

.ad-dentist-panel__title {
    margin-bottom: 8px;
    font-size: clamp(2rem, 3vw, 36px);
    line-height: 1.2;
}

.ad-dentist-panel__copy {
    display: grid;
    gap: 16px;
}

.ad-dentist-quote-band {
    padding: 72px 0;
    background: var(--ad-color-white);
}

.ad-dentist-quote {
    margin: 0 auto;
    max-width: 860px;
    color: var(--ad-ink);
    font-size: clamp(1.4rem, 2.5vw, 30px);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.02em;
    text-align: center;
}

.ad-dentist-podcast {
    position: relative;
    overflow: hidden;
    padding: 112px 0;
    background: var(--ad-podcast);
    color: var(--ad-color-mist);
}

.ad-dentist-podcast .ad-dentist-shell {
    width: min(1312px, calc(100% - 128px));
}

.ad-dentist-podcast__row {
    position: relative;
    display: grid;
    grid-template-columns: 600px minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.ad-dentist-podcast__media {
    height: 400px;
}

.ad-dentist-podcast__content {
    position: relative;
    display: grid;
    gap: 20px;
}

.ad-dentist-podcast__title {
    color: var(--ad-color-mist);
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.ad-dentist-podcast__copy {
    color: var(--ad-color-mist);
}

.ad-dentist-podcast__actions {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 100px;
}

.ad-dentist-credentials {
    background: var(--ad-soft);
    padding: 112px 0;
    margin: 0;
}

.ad-dentist-credentials__inner {
    display: grid;
    gap: 48px;
    max-width: 1200px;
}

.ad-dentist-credentials__header {
    display: grid;
    gap: 20px;
}

.ad-dentist-credentials__title {
    font-size: clamp(2.6rem, 5vw, 56px);
    line-height: 1.1;
}

.ad-dentist-credentials__intro {
    margin: 0;
    max-width: 800px;
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}

.ad-dentist-credentials__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 48px;
}

.ad-dentist-list-group {
    display: grid;
    align-content: start;
    gap: 20px;
}

.ad-dentist-list-group__label {
    font-size: 16px;
}

.ad-dentist-list {
    display: grid;
    align-content: start;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ad-dentist-list li {
    position: relative;
    margin: 0;
    padding-left: 18px;
    color: #000000;
    font-size: 16px;
    line-height: 1.4;
}

.ad-dentist-list li::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ad-teal-dark);
}

.ad-dentist-list a {
    color: var(--ad-teal-dark);
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
}

.ad-dentist-cta-band {
    background: var(--ad-cta);
    padding: 112px 0;
}

.ad-dentist-cta-card {
    display: grid;
    gap: 32px;
    padding: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
}

.ad-dentist-cta-card__copy {
    display: grid;
    gap: 16px;
}

.ad-dentist-cta-card__title {
    color: var(--ad-color-white);
    font-size: clamp(2.5rem, 5vw, 56px);
    line-height: 1.1;
}

.ad-dentist-cta-card__description {
    color: var(--ad-color-white);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}

.ad-dentist-cta-card .ad-dentist-button {
    min-height: 0;
    padding: 16px 40px;
}

@media (max-width: 1024px) {
    .ad-dentist-hero,
    .ad-dentist-podcast,
    .ad-dentist-credentials,
    .ad-dentist-cta-band {
        padding: 88px 0;
    }

    .ad-dentist-hero__inner,
    .ad-dentist-podcast__row,
    .ad-dentist-credentials__grid {
        grid-template-columns: 1fr;
    }

    .ad-dentist-hero__media,
    .ad-dentist-podcast__media {
        max-width: 640px;
        height: auto;
    }

    .ad-dentist-hero__media {
        width: 100%;
    }

    .ad-dentist-hero__media img,
    .ad-dentist-podcast__media img {
        height: auto;
    }

    .ad-dentist-hero__media img {
        aspect-ratio: auto;
    }

    .ad-dentist-panels__grid {
        grid-template-columns: 1fr;
    }

    .ad-dentist-panel {
        padding: 56px 40px;
    }
}

@media (max-width: 767px) {
    .ad-dentist-shell {
        width: min(100% - 40px, 335px);
    }

    .ad-dentist-eyebrow {
        font-size: 15px;
    }

    .ad-dentist-hero,
    .ad-dentist-podcast,
    .ad-dentist-credentials,
    .ad-dentist-cta-band {
        padding: 64px 0;
    }

    .ad-dentist-hero__inner {
        gap: 24px;
    }

    .ad-dentist-hero__title {
        font-size: 38px;
        letter-spacing: -0.01em;
    }

    .ad-dentist-hero__credentials {
        margin-top: 8px;
        font-size: 24px;
        line-height: 1.3;
        letter-spacing: -0.01em;
    }

    .ad-dentist-hero__copy,
    .ad-dentist-hero__copy p,
    .ad-dentist-panel__copy,
    .ad-dentist-panel__copy p,
    .ad-dentist-podcast__copy {
        font-size: 16px;
    }

    .ad-dentist-hero__title + .ad-dentist-hero__copy,
    .ad-dentist-hero__title + .ad-dentist-hero__highlight,
    .ad-dentist-hero__credentials + .ad-dentist-hero__copy,
    .ad-dentist-hero__credentials + .ad-dentist-hero__highlight,
    .ad-dentist-hero__copy + .ad-dentist-hero__highlight {
        margin-top: 24px;
    }

    .ad-dentist-hero__content > .ad-dentist-actions {
        margin-top: 24px;
    }

    .ad-dentist-hero__highlight {
        font-size: 20px;
        letter-spacing: -0.01em;
    }

    .ad-dentist-hero__media {
        height: 380px;
        max-width: none;
    }

    .ad-dentist-hero__media img {
        height: 100%;
        object-fit: cover;
        box-shadow:
            0 2px 8px rgba(0, 0, 0, 0.06),
            0 8px 32px rgba(0, 0, 0, 0.12);
    }

    .ad-dentist-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ad-dentist-podcast__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ad-dentist-podcast .ad-dentist-shell {
        width: min(100% - 40px, 335px);
    }

    .ad-dentist-button {
        width: 100%;
        min-height: 48px;
        padding: 14px 20px;
        font-size: 15px;
        white-space: normal;
    }

    .ad-dentist-podcast .ad-dentist-button--podcast {
        min-height: 64px;
        padding: 20px 40px;
    }

    .ad-dentist-facts {
        padding: 20px;
    }

    .ad-dentist-facts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 20px;
        align-items: start;
    }

    .ad-dentist-fact {
        padding: 12px 10px;
        min-height: 0;
    }

    .ad-dentist-fact:nth-child(odd)::before {
        display: none;
    }

    .ad-dentist-fact__label {
        font-size: 10px;
        letter-spacing: 0.8px;
    }

    .ad-dentist-fact__value {
        font-size: 14px;
        line-height: 1.45;
    }

    .ad-dentist-podcast__actions {
        gap: 18px;
        margin-top: 32px;
    }

    .ad-dentist-panel {
        min-height: 0;
        padding: 64px 36px 36px;
    }

    .ad-dentist-panel + .ad-dentist-panel {
        padding: 36px 36px 64px;
    }

    .ad-dentist-panel__title {
        font-size: 24px;
        letter-spacing: -0.01em;
    }

    .ad-dentist-podcast__row {
        gap: 32px;
    }

    .ad-dentist-podcast__media {
        height: 254px;
        max-width: none;
    }

    .ad-dentist-podcast__media img {
        height: 100%;
        aspect-ratio: auto;
    }

    .ad-dentist-credentials__title,
    .ad-dentist-cta-card__title {
        font-size: 38px;
        letter-spacing: -0.01em;
    }

    .ad-dentist-podcast__title {
        font-size: 24px;
        letter-spacing: -0.48px;
    }

    .ad-dentist-credentials {
        background: var(--ad-color-white);
    }

    .ad-dentist-credentials__inner {
        gap: 32px;
    }

    .ad-dentist-credentials__header {
        gap: 16px;
    }

    .ad-dentist-credentials__grid {
        gap: 16px;
    }

    .ad-dentist-list-group {
        gap: 16px;
    }

    .ad-dentist-list-group__label {
        font-size: 15px;
    }

    .ad-dentist-list {
        gap: 10px;
    }

    .ad-dentist-list li {
        padding-left: 13px;
        font-size: 14px;
    }

    .ad-dentist-list li::before {
        top: 0.58em;
        width: 5px;
        height: 5px;
    }

    .ad-dentist-cta-card {
        padding: 20px;
        border-radius: 14px;
    }

    .ad-dentist-cta-card {
        gap: 32px;
    }

    .ad-dentist-cta-card__description,
    .ad-dentist-credentials__intro {
        font-size: 18px;
    }

    .ad-dentist-cta-card .ad-dentist-button {
        padding: 14px 20px;
    }
}
