* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: var(--primary);
    color: #ffffff;
    letter-spacing: 0;
}

a {
    color: inherit;
}

html:not(.consent-accepted) body {
    overflow: hidden;
}

.consent-gate {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 22px;
    background: rgba(0, 0, 0, .66);
}

.consent-accepted .consent-gate {
    display: none;
}

.age-certification__card {
    width: min(540px, 100%);
    max-height: calc(100vh - 36px);
    overflow: auto;
    border: 1px solid rgba(17, 24, 39, .18);
    border-radius: 18px;
    background: #ffffff;
    color: #090b12;
    padding: 72px 26px 58px;
    text-align: center;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .46);
}

.age-certification__card h2 {
    max-width: 470px;
    margin: 0 auto 26px;
    color: #07090f;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.18;
}

.age-certification__card p {
    margin: 0 0 36px;
    color: #2d3340;
    font-size: 21px;
    line-height: 1.25;
}

.age-certification__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.age-certification__button {
    min-height: 56px;
    border-radius: 5px;
    font: inherit;
    font-size: 21px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}

.age-certification__button:hover,
.age-certification__button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(17, 24, 39, .16);
}

.age-certification__button--yes {
    border: 1px solid #2563eb;
    background: #2563eb;
    color: #ffffff;
}

.age-certification__button--yes:hover,
.age-certification__button--yes:focus-visible {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.age-certification__button--no {
    border: 1px solid #b7bfcc;
    background: #ffffff;
    color: #090b12;
}

body.promo-popup-open {
    overflow: hidden;
}

.promo-popup[hidden] {
    display: none;
}

.promo-popup {
    position: fixed;
    inset: 0;
    z-index: 950;
    display: grid;
    place-items: center;
    padding: 22px;
}

.promo-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .62);
}

.promo-popup__card {
    position: relative;
    z-index: 1;
    width: min(480px, 100%);
    padding: 34px;
    border-radius: 8px;
    background: #ffffff;
    color: #1d2128;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
}

.promo-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #edf0f4;
    color: #1d2128;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.promo-popup__card p {
    margin: 0 0 10px;
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
}

.promo-popup__card h2 {
    margin: 0;
    color: #1d2128;
    font-size: 30px;
    line-height: 1.12;
}

.promo-popup__card span {
    display: block;
    margin-top: 12px;
    color: #596271;
    line-height: 1.55;
}

.promo-popup__card a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 10px 16px;
    border-radius: 4px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
}

.home-shell {
    min-height: 100vh;
    background: var(--surface);
}

.hero-banner {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: 48px;
    background:
        linear-gradient(90deg, rgba(9, 9, 9, .9), rgba(9, 9, 9, .52)),
        linear-gradient(128deg, transparent 0%, rgba(47, 159, 143, .22) 52%, transparent 82%),
        linear-gradient(135deg, #151515 0%, #292421 48%, #3a1820 100%);
    background-size: cover;
    background-position: center;
}

.hero-banner__texture {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero-banner__content {
    width: min(760px, 100%);
}

.hero-banner--center-stage {
    place-items: center start;
}

.hero-banner--editorial .hero-banner__content {
    border-left: 6px solid var(--accent);
    padding-left: 28px;
}

.hero-banner--split-focus {
    justify-items: end;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    margin: 0 0 28px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: #ffffff;
}

.brand-mark img {
    width: min(220px, 58vw);
    height: auto;
    max-height: 76px;
    flex: 0 0 auto;
    object-fit: contain;
}

.hero-banner__eyebrow {
    margin: 0 0 14px;
    color: var(--secondary);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-banner h1 {
    max-width: 840px;
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 72px;
    line-height: .96;
    font-weight: 700;
}

.hero-banner__copy {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 19px;
    line-height: 1.55;
}

.hero-banner__action,
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 30px;
    padding: 13px 20px;
    border: 0;
    background: var(--accent);
    color: #ffffff;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.hero-banner__action:hover,
.primary-button:hover {
    filter: brightness(1.08);
}

.hero-banner__meta {
    position: absolute;
    right: 28px;
    bottom: 24px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.hero-banner__meta span {
    min-height: 32px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255,255,255,.86);
    font-size: 12px;
    font-weight: 700;
}

.public-directory {
    padding: 42px 48px 56px;
    background: var(--surface);
    color: #151515;
}

.public-directory--embedded {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0;
    background: transparent;
    color: #ffffff;
}

.directory-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    width: min(1180px, 100%);
    margin: 0 auto 22px;
}

.directory-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 1.05;
}

.directory-heading a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    background: var(--primary);
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

.category-pills {
    width: min(1180px, 100%);
    margin: 0 auto 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-pills a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border: 1px solid rgba(21, 21, 21, .16);
    background: rgba(255, 255, 255, .72);
    color: #151515;
    font-weight: 800;
    text-decoration: none;
}

.public-directory--embedded .category-pills a {
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: #ffffff;
}

.category-pills a.is-active {
    background: var(--accent);
    color: #ffffff;
}

.profile-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.profile-card {
    min-height: 190px;
    padding: 20px;
    border: 1px solid rgba(21, 21, 21, .12);
    background: #ffffff;
    color: #151515;
}

.public-directory--embedded .profile-card {
    border-color: rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
    color: #ffffff;
}

.profile-card span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.profile-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.profile-card p {
    margin: 0 0 10px;
    line-height: 1.55;
    color: rgba(21, 21, 21, .74);
}

.profile-card__avatar {
    width: calc(100% + 40px);
    max-width: none;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    margin: -20px -20px 16px;
    background: #191b22;
}

.public-directory--embedded .profile-card p {
    color: rgba(255,255,255,.76);
}

.public-page {
    min-height: 100vh;
    padding: 42px 20px;
    background:
        linear-gradient(180deg, rgba(21,21,21,.96), rgba(21,21,21,.9)),
        linear-gradient(135deg, var(--primary), #2f2522);
}

.public-page--center {
    display: grid;
    place-items: center;
}

.form-hero,
.form-panel,
.message-panel {
    width: min(980px, 100%);
    margin: 0 auto;
}

.form-hero {
    padding: 26px 0;
}

.form-hero h1,
.message-panel h1 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    line-height: 1.05;
}

.form-hero p,
.message-panel p {
    max-width: 680px;
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.6;
}

.back-link {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--secondary);
    font-weight: 800;
    text-decoration: none;
}

.form-panel,
.message-panel {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
}

.message-panel {
    max-width: 640px;
}

.stack-form {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-grid__full {
    grid-column: 1 / -1;
}

label {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, .9);
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .92);
    color: #151515;
    padding: 11px 12px;
    font: inherit;
}

textarea {
    resize: vertical;
}

.field-note {
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.minimum-rate-control {
    display: grid;
    align-content: start;
    gap: 8px;
}

.minimum-rate-control__custom[hidden] {
    display: none !important;
}

.check-row {
    grid-template-columns: 20px 1fr;
    align-items: start;
    font-weight: 600;
    line-height: 1.45;
}

.check-row input {
    min-height: auto;
    margin-top: 4px;
}

.alert {
    padding: 12px 14px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,.18);
}

.alert--error {
    background: rgba(216, 58, 86, .2);
    color: #ffffff;
}

.alert--success {
    background: rgba(47, 159, 143, .22);
    color: #ffffff;
}

.provider-panel__grid {
    display: grid;
    grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
    gap: 24px;
}

.provider-summary {
    padding: 20px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.08);
}

.provider-summary h2 {
    margin: 0 0 12px;
    font-size: 30px;
}

.provider-summary dl {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px 14px;
    margin: 0;
}

.provider-summary dt {
    color: rgba(255,255,255,.62);
    font-weight: 800;
}

.provider-summary dd {
    margin: 0;
}

.access-grid {
    width: min(980px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.access-grid--single {
    width: min(540px, 100%);
    grid-template-columns: minmax(0, 1fr);
}

.access-option {
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
    text-decoration: none;
}

.access-option:hover {
    border-color: rgba(255, 255, 255, .36);
    background: rgba(255, 255, 255, .12);
}

.access-option__label {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.access-option strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1.05;
}

.access-option em {
    color: rgba(255, 255, 255, .72);
    font-style: normal;
    line-height: 1.55;
}

.access-option__action {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 16px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 900;
}

.access-option--provider .access-option__action {
    background: var(--secondary);
}

.access-links {
    width: min(980px, 100%);
    margin: 20px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.access-links a {
    color: var(--secondary);
    font-weight: 800;
    text-decoration: none;
}

.access-links--single {
    width: min(540px, 100%);
    justify-content: center;
}

.provider-fieldset {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .14);
}

.provider-fieldset legend {
    padding: 0 8px;
    color: #ffffff;
    font-weight: 900;
}

.provider-media-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.provider-media-item {
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: center;
    gap: 14px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
}

.provider-media-item img,
.provider-media-item video {
    width: 96px;
    aspect-ratio: 1;
    display: block;
    object-fit: cover;
    background: #101010;
}

.provider-media-item span {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 700;
}

.provider-media-item strong {
    color: #ffffff;
    overflow-wrap: anywhere;
}

.provider-media-item input {
    width: auto;
    min-height: auto;
    margin-right: 6px;
}

.market-home {
    background: #ffffff;
    color: #17191f;
}

.market-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: 64px;
    padding: 0 32px;
    border-bottom: 1px solid #eceef2;
    background: rgba(255, 255, 255, .96);
    color: #17191f;
}

.market-header__brand {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    text-decoration: none;
}

.market-header__brand img {
    width: 168px;
    height: auto;
    max-height: 54px;
    flex: 0 0 auto;
    object-fit: contain;
}

.market-header__nav {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.market-header__nav a,
.market-header__cta {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    color: #17191f;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.market-header__nav a:hover {
    color: var(--accent);
}

.market-header__cta {
    border-radius: 4px;
    background: var(--accent);
    color: #ffffff;
}

.market-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 42px;
    align-items: center;
    min-height: 690px;
    padding: 82px 48px 54px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f6f7fa 100%);
}

.market-hero__copy,
.market-section-heading,
.market-links,
.market-directory,
.market-city-seo {
    width: min(1180px, 100%);
}

.market-hero__copy {
    justify-self: end;
    max-width: 650px;
}

.market-kicker {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.market-hero h1,
.market-section-heading h2,
.market-filters h2,
.market-city-seo h2 {
    margin: 0;
    color: #17191f;
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-weight: 900;
    line-height: 1.02;
}

.market-hero h1 {
    max-width: 620px;
    font-size: 64px;
}

.market-hero p,
.market-section-heading p,
.market-filters p,
.market-city-seo p {
    color: #5f6673;
    line-height: 1.6;
}

.market-hero__copy > p:not(.market-kicker) {
    max-width: 610px;
    margin: 18px 0 0;
    font-size: 18px;
}

.market-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.market-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-weight: 900;
    text-decoration: none;
}

.market-button--primary {
    background: var(--accent);
    color: #ffffff;
}

.market-button--secondary {
    border-color: #20232b;
    background: #ffffff;
    color: #20232b;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 610px;
    margin: 34px 0 0;
}

.market-stats div {
    padding: 16px;
    border: 1px solid #e4e7ed;
    border-radius: 8px;
    background: #ffffff;
}

.market-stats dt {
    color: #17191f;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.market-stats dd {
    margin: 8px 0 0;
    color: #68707d;
    font-size: 13px;
    font-weight: 800;
}

.market-search {
    justify-self: start;
    width: min(480px, 100%);
    overflow: hidden;
    border: 1px solid #e0e3ea;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(20, 23, 31, .14);
}

.market-search__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    background: #191b22;
}

.market-search__image--empty {
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(216,58,86,.92), rgba(47,159,143,.72)),
        #17191f;
}

.market-search__image--empty span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255,255,255,.72);
    border-radius: 50%;
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
}

.market-segment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 16px 16px 0;
}

.market-segment a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #f2f4f7;
    color: #17191f;
    font-weight: 900;
    text-decoration: none;
}

.market-segment a:last-child {
    background: #17191f;
    color: #ffffff;
}

.market-search__form {
    display: grid;
    gap: 12px;
    padding: 16px;
}

.market-search__form label {
    color: #252934;
    font-size: 13px;
    font-weight: 900;
}

.market-search__form select {
    min-height: 46px;
    border-color: #d9dde6;
    background: #ffffff;
}

.market-search__form button {
    min-height: 46px;
    border: 0;
    border-radius: 4px;
    background: var(--accent);
    color: #ffffff;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.market-links,
.market-directory {
    margin: 0 auto;
    padding: 56px 48px;
}

.market-section-heading {
    margin: 0 auto 24px;
}

.market-section-heading--center {
    max-width: 760px;
    text-align: center;
}

.market-section-heading h2,
.market-filters h2,
.market-city-seo h2 {
    font-size: 40px;
}

.market-section-heading p {
    max-width: 680px;
    margin: 12px 0 0;
}

.market-section-heading--center p {
    margin-left: auto;
    margin-right: auto;
}

.market-link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.market-link-grid a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border: 1px solid #e4e7ed;
    border-radius: 8px;
    background: #ffffff;
    color: #17191f;
    font-weight: 900;
    text-decoration: none;
}

.market-link-grid a::after {
    content: ">";
    color: var(--accent);
}

.market-trust {
    padding: 64px 48px;
    background: #f6f7fa;
    color: #17191f;
}

.market-trust-grid {
    width: min(1120px, 100%);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 34px auto 0;
}

.market-trust-grid article {
    min-height: 132px;
    padding: 22px;
    border: 1px solid #e0e4ec;
    border-radius: 8px;
    background: #ffffff;
}

.market-trust-grid article > span {
    color: var(--secondary);
    font-weight: 900;
}

.market-trust-grid h3,
.market-profile-card h3 {
    margin: 12px 0 8px;
    color: #17191f;
}

.market-trust-grid p,
.market-profile-card p {
    margin: 0;
    color: #636b78;
    line-height: 1.55;
}

.market-filters {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    padding: 64px 48px;
    background: #16181f;
    color: #ffffff;
}

.market-filters > div {
    width: min(520px, 100%);
    justify-self: end;
}

.market-filters h2,
.market-filters p {
    color: #ffffff;
}

.market-filters p {
    color: rgba(255,255,255,.72);
}

.market-chip-row {
    width: min(640px, 100%);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.market-chip-row a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,.36);
    border-radius: 999px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.market-directory {
    color: #17191f;
}

.market-profile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.market-profile-card {
    overflow: hidden;
    border: 1px solid #e4e7ed;
    border-radius: 8px;
    background: #ffffff;
    color: #17191f;
}

.market-profile-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: flex-end;
    padding: 14px;
    background:
        linear-gradient(145deg, rgba(216,58,86,.88), rgba(47,159,143,.72)),
        #1d2029;
}

.market-profile-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.market-profile-card__media--avatar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(23, 25, 31, 0) 42%, rgba(23, 25, 31, .72) 100%);
}

.market-profile-card__media span {
    position: relative;
    z-index: 1;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #17191f;
    font-size: 12px;
    font-weight: 900;
}

.market-profile-card__body {
    padding: 18px;
}

.market-profile-card__body h3 {
    font-size: 24px;
}

.market-profile-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.market-profile-card__badges span {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f1f3f6;
    color: #17191f;
    font-size: 12px;
    font-weight: 900;
}

.profile-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
}

.profile-contact__button,
.profile-contact__gate,
.profile-contact__unavailable {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 10px;
    border: 0;
    border-radius: 4px;
    background: #24a866;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
}

.profile-contact__button {
    width: 100%;
    min-height: 48px;
    gap: 11px;
    border-radius: 8px;
    font-size: 14px;
    transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.profile-contact__action {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 6px;
}

.profile-contact__portal-age-placeholder {
    display: block;
    min-height: 17px;
}

.profile-portal-since {
    min-height: 15px;
    display: inline-flex;
    align-items: baseline;
    justify-self: center;
    color: #a62046;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    white-space: nowrap;
}

.profile-portal-since--detail {
    min-height: 17px;
    font-size: 13px;
}

.profile-contact__click-count {
    display: block;
    color: #66707d;
    font-size: 11px;
    line-height: 1.35;
    text-align: center;
}

.profile-contact__click-count strong {
    color: #303844;
    font-variant-numeric: tabular-nums;
}

.profile-contact__button:hover {
    transform: translateY(-1px);
}

.profile-contact__button:focus-visible {
    outline: 3px solid #005fcc;
    outline-offset: 3px;
}

.profile-contact__button--phone {
    background: #20252c;
    box-shadow: 0 8px 18px rgba(32, 37, 44, .18);
}

.profile-contact__button--phone:hover {
    background: #101318;
    box-shadow: 0 10px 22px rgba(32, 37, 44, .25);
}

.profile-contact__button--whatsapp {
    background: #128c4a;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(18, 140, 74, .24);
}

.profile-contact__button--whatsapp:hover {
    background: #0b7139;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(18, 140, 74, .32);
}

.profile-contact__phone-icon {
    flex: 0 0 auto;
    font-size: 21px;
    line-height: 1;
    transform: rotate(-12deg);
}

.profile-contact__phone-text {
    min-width: 0;
    display: grid;
    gap: 1px;
    text-align: left;
}

.profile-contact__phone-text small {
    grid-column: auto;
    color: rgba(255, 255, 255, .72);
    font-size: 10px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.profile-contact__phone-text strong {
    overflow-wrap: anywhere;
    font-size: 13px;
    line-height: 1.2;
}

.profile-contact__whatsapp-icon {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.profile-contact__whatsapp-icon svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.profile-contact__whatsapp-bubble {
    fill: none;
    stroke: #ffffff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.profile-contact__whatsapp-handset {
    fill: #ffffff;
}

.profile-contact__whatsapp-label {
    line-height: 1.2;
}

.profile-contact__gate,
.profile-contact__unavailable {
    grid-column: 1 / -1;
    background: var(--accent);
}

.market-city-seo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin: 0 auto;
    padding: 46px 48px 64px;
    color: #17191f;
}

.market-city-seo p {
    max-width: 720px;
    margin: 12px 0 0;
}

.market-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    align-items: center;
    justify-content: space-between;
    padding: 22px 48px;
    background: #17191f;
    color: #ffffff;
}

.market-footer strong {
    color: var(--accent);
}

.market-footer > span {
    color: rgba(255,255,255,.72);
    font-size: 14px;
}

.classified-shell {
    min-height: 100vh;
    background: #f1f2f4;
    color: #1d2128;
}

.classified-container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.classified-topbar {
    background: #101010;
    border-bottom: 4px solid var(--accent);
    color: #ffffff;
}

.classified-topbar__inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.classified-topbar span,
.classified-topbar a {
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.classified-topbar nav {
    display: flex;
    justify-content: flex-end;
    gap: 0;
}

.classified-topbar nav a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 0 22px;
    border-left: 1px solid rgba(255, 255, 255, .08);
}

.classified-topbar nav > span {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    border-left: 1px solid rgba(255, 255, 255, .08);
}

.classified-topbar nav a:last-child {
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.classified-brandbar {
    background: #ffffff;
}

.classified-brandbar__inner {
    min-height: 164px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.classified-logo {
    grid-column: 2;
    display: inline-flex;
    justify-self: center;
}

.classified-logo img {
    width: 245px;
    max-width: min(56vw, 245px);
    height: auto;
    max-height: 128px;
    object-fit: contain;
}

.classified-publish {
    grid-column: 3;
    justify-self: end;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 4px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
}

.classified-titlebar {
    padding: 20px 0 16px;
    border-top: 1px solid #e3e5ea;
    border-bottom: 1px solid #d9dce3;
    background: #ffffff;
}

.classified-titlebar h1 {
    margin: 0 0 12px;
    color: #1d2128;
    font-size: 30px;
    line-height: 1.15;
}

.classified-titlebar p {
    margin: 0;
    padding: 10px 0;
    border-top: 1px dotted #c9ced8;
    border-bottom: 1px dotted #c9ced8;
    color: #5f6673;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.classified-titlebar a {
    color: #1d2128;
    text-decoration: none;
}

.directory-search {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 22px;
    margin-top: 22px;
    padding: 24px;
    border: 1px solid #dde1e8;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(24, 31, 42, .1);
}

.directory-search__section {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.directory-search__section legend,
.directory-search__keyword > span {
    display: block;
    margin: 0 0 10px;
    color: #20252d;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
}

.directory-search__hint {
    margin: -4px 0 12px;
    color: #68717f;
    font-size: 13px;
    line-height: 1.4;
}

.directory-search__categories {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.directory-search__category {
    position: relative;
    min-width: 0;
    cursor: pointer;
}

.directory-search__category input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.directory-search__category span {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 12px;
    border: 1px solid #c9ced7;
    border-radius: 7px;
    background: #ffffff;
    color: #343b46;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    transition: border-color .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.directory-search__category span:hover {
    border-color: var(--accent);
}

.directory-search__category input:checked + span {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 7px 16px rgba(216, 58, 86, .2);
}

.directory-search__category input:checked + span::before {
    content: "\2713";
    font-size: 15px;
    line-height: 1;
}

.directory-search__category input:focus-visible + span {
    outline: 3px solid #005fcc;
    outline-offset: 3px;
}

.directory-search__location-row,
.directory-search__selected-zones {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.directory-search__selected-zones:empty {
    display: none;
}

.directory-search__zone-chip,
.directory-search__location-picker summary {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 9px 14px;
    border-radius: 6px;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    cursor: pointer;
}

.directory-search__zone-chip {
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #ffffff;
}

.directory-search__zone-chip:hover {
    filter: brightness(.92);
}

.directory-search__zone-chip span:last-child {
    font-size: 20px;
    font-weight: 500;
    line-height: .8;
}

.directory-search__location-picker {
    position: relative;
    min-width: min(100%, 220px);
}

.directory-search__location-picker[open] {
    width: 100%;
    min-width: 0;
    flex: 1 0 100%;
}

.directory-search__location-picker summary {
    width: max-content;
    max-width: 100%;
    border: 2px dashed rgba(216, 58, 86, .58);
    background: #ffffff;
    color: var(--accent);
    list-style: none;
}

.directory-search__location-picker summary::-webkit-details-marker {
    display: none;
}

.directory-search__location-picker[open] summary {
    border-style: solid;
    background: rgba(216, 58, 86, .07);
}

.directory-search__location-picker summary:focus-visible {
    outline: 3px solid #005fcc;
    outline-offset: 3px;
}

.directory-search__location-panel {
    width: min(760px, 100%);
    max-width: 100%;
    display: grid;
    gap: 14px;
    margin-top: 10px;
    padding: 16px;
    border: 1px solid #d6dbe4;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(22, 29, 39, .14);
}

.directory-search__location-filter {
    display: grid;
    gap: 7px;
    color: #313844;
    font-size: 13px;
    font-weight: 900;
}

.directory-search__location-filter input,
.directory-search__keyword input {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 10px 13px;
    border: 1px solid #bcc3ce;
    border-radius: 6px;
    background: #ffffff;
    color: #222832;
    font: inherit;
    font-size: 15px;
}

.directory-search__location-filter input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(216, 58, 86, .12);
    outline: 0;
}

.directory-search__location-results-count {
    margin: -5px 0 0;
    color: #68717f;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.directory-search__location-options {
    max-height: 310px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 2px 4px 2px 2px;
}

.directory-search__location-option {
    min-width: 0;
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border: 1px solid #e0e4eb;
    border-radius: 6px;
    background: #f8f9fb;
    color: #2e3540;
    cursor: pointer;
}

.directory-search__location-option[hidden] {
    display: none;
}

.directory-search__location-option:hover {
    border-color: #aeb6c3;
    background: #ffffff;
}

.directory-search__location-option:has(input:checked) {
    border-color: var(--accent);
    background: rgba(216, 58, 86, .07);
}

.directory-search__location-option input {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    margin: 0;
    accent-color: var(--accent);
}

.directory-search__location-option > span {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.directory-search__location-option strong,
.directory-search__location-option small {
    overflow-wrap: anywhere;
}

.directory-search__location-option strong {
    font-size: 13px;
    line-height: 1.25;
}

.directory-search__location-option small {
    color: #6b7481;
    font-size: 11px;
    line-height: 1.3;
}

.directory-search__no-locations,
.directory-search__selection-count,
.directory-search__error {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
}

.directory-search__selection-count {
    margin-top: 8px;
    color: #68717f;
}

.directory-search__no-locations {
    color: #68717f;
}

.directory-search__error {
    padding: 10px 12px;
    border-left: 4px solid #b42336;
    background: #fff0f2;
    color: #8e1f30;
    font-weight: 800;
}

.directory-search__location-done {
    min-height: 44px;
    justify-self: end;
    padding: 9px 16px;
    border: 0;
    border-radius: 5px;
    background: #262c35;
    color: #ffffff;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.directory-search__keyword {
    display: grid;
}

.directory-search__submit {
    width: 100%;
    min-height: 52px;
    padding: 10px 18px;
    border: 0;
    border-radius: 6px;
    background: var(--accent);
    color: #ffffff;
    font: inherit;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(216, 58, 86, .2);
}

.directory-search__submit:hover {
    filter: brightness(.92);
}

.classified-list__result-count {
    margin: 5px 0 0;
    color: #68717f;
    font-size: 13px;
    font-weight: 800;
}

.classified-banner {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: grid;
    align-items: end;
    margin-top: 24px;
    background: #17191f;
}

.classified-banner img,
.classified-banner__empty {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.classified-banner img {
    object-fit: cover;
}

.classified-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 12, .88), rgba(10, 10, 12, .42), rgba(10, 10, 12, .08));
}

.classified-banner__empty {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #151515, var(--accent));
    color: rgba(255, 255, 255, .88);
    font-size: 72px;
    font-weight: 900;
}

.classified-banner__copy {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    padding: 32px;
}

.classified-banner__copy p,
.classified-offer p,
.classified-list__heading p {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.classified-banner__copy h2,
.classified-offer h2,
.classified-list__heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.12;
}

.classified-banner__copy span,
.classified-offer span,
.classified-list__heading span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.55;
}

.classified-banner__copy h2,
.classified-banner__text,
.classified-banner__message {
    overflow-wrap: anywhere;
}

.classified-banner__text,
.classified-banner__message {
    margin-top: 10px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.55;
}

.classified-banner__message {
    padding-left: 12px;
    border-left: 3px solid var(--accent);
    color: #ffffff;
    font-weight: 700;
}

.classified-banner--center-stage {
    align-items: center;
}

.classified-banner--center-stage::after {
    background: rgba(10, 10, 12, .62);
}

.classified-banner--center-stage .classified-banner__copy {
    justify-self: center;
    text-align: center;
}

.classified-banner--center-stage .classified-banner__message {
    padding-left: 0;
    border-left: 0;
}

.classified-banner--split-focus::after {
    background: linear-gradient(270deg, rgba(10, 10, 12, .9), rgba(10, 10, 12, .45), rgba(10, 10, 12, .08));
}

.classified-banner--split-focus .classified-banner__copy {
    justify-self: end;
    text-align: right;
}

.classified-banner--split-focus .classified-banner__message {
    padding-right: 12px;
    padding-left: 0;
    border-right: 3px solid var(--accent);
    border-left: 0;
}

.classified-banner__copy a,
.classified-offer a,
.classified-list__heading > a,
.classified-inline-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 10px 16px;
    border-radius: 4px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
}

.classified-offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
    padding: 20px 24px;
    border-left: 5px solid var(--accent);
    background: #1d2128;
    color: #ffffff;
}

.classified-offer h2 {
    font-size: 24px;
}

.classified-offer a {
    flex: 0 0 auto;
    margin-top: 0;
    background: #ffffff;
    color: #1d2128;
}

.classified-content {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 28px 0 48px;
}

.classified-content--full {
    grid-template-columns: minmax(0, 1fr);
}

.classified-sidebar {
    display: grid;
    gap: 18px;
}

.classified-sidebar section {
    border: 1px solid #d8dde6;
    background: #ffffff;
}

.classified-sidebar h2 {
    margin: 0;
    padding: 13px 15px;
    border-bottom: 1px solid #d8dde6;
    background: #20232b;
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
}

.classified-sidebar nav {
    display: grid;
}

.classified-sidebar nav a {
    min-height: 39px;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #edf0f4;
    color: #2b303a;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.classified-sidebar nav a:hover,
.classified-sidebar nav a.is-active {
    color: var(--accent);
    background: #f8f9fb;
}

.classified-stats {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 15px;
}

.classified-stats div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #edf0f4;
}

.classified-stats div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.classified-stats dt {
    color: #1d2128;
    font-size: 26px;
    font-weight: 900;
}

.classified-stats dd {
    margin: 0;
    color: #68707d;
    font-size: 13px;
    font-weight: 800;
}

.classified-list {
    min-width: 0;
}

[data-search-results] {
    scroll-margin-top: 20px;
    outline: 0;
    transition: opacity .18s ease;
}

[data-search-results][aria-busy="true"] {
    opacity: .55;
}

[data-directory-search][aria-busy="true"] .directory-search__submit {
    cursor: progress;
    opacity: .72;
}

.classified-list__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
    padding: 18px 20px;
    background: #20232b;
    color: #ffffff;
}

.classified-list__heading h2 {
    font-size: 25px;
}

.classified-list__heading > a {
    flex: 0 0 auto;
    margin-top: 0;
}

.listing-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 0;
    min-height: 230px;
    margin-bottom: 14px;
    border: 1px solid #d8dde6;
    background: #ffffff;
    color: #1d2128;
}

.listing-card__media {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 230px;
    background: linear-gradient(135deg, #1a1d24, var(--accent));
    color: #ffffff;
}

.listing-card__media-link {
    position: relative;
    min-height: 230px;
    flex: 1 1 auto;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
}

.listing-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.listing-card__media-link > span,
.listing-card--empty .listing-card__media > span {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .45);
    background: rgba(0, 0, 0, .18);
    color: #ffffff;
    font-weight: 900;
}

.listing-card__media-toolbar {
    position: absolute;
    top: 6px;
    right: 0;
    left: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 0 6px;
    border: 0;
    background: transparent;
    pointer-events: none;
}

.listing-card__body {
    display: grid;
    align-content: start;
    padding: 18px 20px;
}

.listing-card__body h3 {
    margin: 0 0 6px;
    color: #1a1d24;
    font-size: 24px;
    line-height: 1.16;
}

.listing-card__heading,
.profile-detail__title {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 12px;
}

.listing-card__heading {
    margin-bottom: 6px;
}

.listing-card__heading h3,
.profile-detail__title h2 {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
}

.listing-card__body h3 a {
    color: inherit;
    text-decoration: none;
}

.listing-card__body h3 a:hover {
    color: var(--accent);
}

.profile-plan-stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    margin-left: 7px;
    color: #e5a600;
    font-size: .72em;
    line-height: 1;
    vertical-align: .08em;
    white-space: nowrap;
}

.profile-plan-stars__star {
    display: inline-block;
    color: #d58a00;
    text-shadow: 0 1px 0 #fff1a6, 0 0 2px rgba(105, 61, 0, .5);
    filter: drop-shadow(0 1px 1px rgba(80, 45, 0, .5));
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .profile-plan-stars__star {
        background: linear-gradient(180deg, #ffd84d 0%, #e8a900 48%, #a85f00 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }
}

.listing-card__top-badge {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 4px 6px;
    border: 1px solid #064da8;
    border-radius: 5px;
    background: #1268d5;
    box-shadow: 0 2px 6px rgba(0, 39, 91, .28);
    color: #ffffff;
    pointer-events: none;
    white-space: nowrap;
}

.listing-card__top-badge-label {
    color: #ffffff;
    font-size: 10px;
    font-weight: 950;
    line-height: 1;
}

.listing-card__top-badge .profile-plan-stars {
    gap: 1px;
    margin-left: 0;
    color: #ffffff;
    font-size: 13px;
    vertical-align: 0;
}

.listing-card__top-badge .profile-plan-stars__star {
    background: none;
    background-clip: border-box;
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
    filter: drop-shadow(0 1px 0 rgba(0, 38, 88, .8));
    text-shadow: none;
}

.listing-card__video-link {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a80f40;
    border-radius: 50%;
    background: #c91550;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(143, 23, 52, .24);
    margin-left: auto;
    pointer-events: auto;
    text-decoration: none;
}

.listing-card__video-link span {
    margin-left: 2px;
    font-size: 11px;
    line-height: 1;
}

.listing-card__video-link:hover {
    border-color: #7c0b2e;
    background: #9f123e;
    color: #ffffff;
}

.listing-card__video-link:focus-visible {
    outline: 3px solid rgba(201, 21, 80, .3);
    outline-offset: 2px;
}

.profile-plan-stars--detail {
    font-size: .68em;
}

.profile-view-count {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 8px;
    border: 1px solid #d8dde6;
    border-radius: 999px;
    background: #f4f6f9;
    color: #56606e;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.profile-view-count strong {
    color: #1a1d24;
    font-variant-numeric: tabular-nums;
}

.profile-view-count__icon {
    color: var(--secondary);
    font-size: 14px;
    line-height: 1;
}

.profile-view-count--detail {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
}

.profile-rating-summary {
    width: max-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px;
    color: #606977;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.profile-rating-summary__stars {
    display: inline-flex;
    gap: 2px;
    color: #c8ced7;
    font-size: 17px;
    line-height: 1;
    letter-spacing: .02em;
}

.profile-rating-summary__star--filled {
    color: #f2a900;
}

.profile-rating-summary__score {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
}

.profile-rating-summary__score strong {
    color: #1a1d24;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
}

.profile-rating-summary--detail {
    margin-bottom: 0;
    font-size: 13px;
}

.profile-rating-summary--detail .profile-rating-summary__stars {
    font-size: 21px;
}

.profile-rating-summary--detail .profile-rating-summary__score strong {
    font-size: 16px;
}

.listing-card__route {
    margin: 0 0 12px;
    color: #5c6470;
    font-size: 14px;
    font-weight: 900;
}

.listing-card__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 12px;
}

.listing-card__facts span,
.listing-card__facts strong {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 4px;
    background: #f0f2f6;
    color: #27303b;
    font-size: 12px;
    font-weight: 900;
}

.listing-card__facts strong {
    background: rgba(22, 163, 74, .13);
    color: #15803d;
}

.listing-card__facts .listing-card__minimum-rate {
    color: var(--accent);
    font-weight: 950;
}

.listing-card__description,
.listing-card__availability {
    margin: 0 0 12px;
    color: #4f5866;
    line-height: 1.55;
}

.listing-card .profile-contact {
    max-width: 560px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.listing-card--empty .listing-card__media {
    display: grid;
    place-items: center;
    min-height: 180px;
}

.profile-page {
    background: #f1f2f4;
}

.profile-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 28px 0 52px;
}

.profile-detail__media,
.profile-detail__content {
    border: 1px solid #d8dde6;
    background: #ffffff;
}

.profile-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    padding: 14px;
}

.profile-gallery--videos {
    grid-template-columns: minmax(0, 640px);
    justify-content: center;
}

.profile-gallery--photos {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 320px));
    justify-content: center;
}

.profile-gallery-section + .profile-gallery-section {
    border-top: 1px solid #d8dde6;
}

.profile-gallery-section__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 14px 0;
}

.profile-gallery-section__heading h2 {
    margin: 0;
    color: #1a1d24;
    font-size: 18px;
    line-height: 1.2;
}

.profile-gallery__item {
    margin: 0;
    overflow: hidden;
    border: 1px solid #e1e5ec;
    background: #10131a;
}

.profile-gallery__item img,
.profile-gallery__item video {
    width: 100%;
    max-height: 680px;
    display: block;
    object-fit: contain;
    background: #10131a;
}

.profile-gallery__item figcaption {
    padding: 10px 12px;
    background: #ffffff;
    color: #4f5866;
    font-size: 13px;
    font-weight: 800;
}

.profile-gallery__empty {
    min-height: 420px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #1a1d24, var(--accent));
    color: #ffffff;
    font-size: 64px;
    font-weight: 900;
}

.profile-detail__content {
    display: grid;
    gap: 16px;
    padding: 26px;
}

.profile-detail__kicker {
    width: max-content;
    margin: 0;
    padding: 7px 10px;
    border-radius: 4px;
    background: rgba(22, 163, 74, .13);
    color: #15803d;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.profile-detail__content h2,
.profile-detail__contact h2 {
    margin: 0;
    color: #1a1d24;
}

.profile-detail__title h2 {
    font-size: 38px;
    line-height: 1.05;
}

.profile-detail__route {
    margin: 0;
    color: #5c6470;
    font-weight: 900;
}

.profile-detail__facts {
    margin-bottom: 0;
}

.profile-detail__description {
    color: #3f4754;
    line-height: 1.65;
}

.profile-detail__info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.profile-detail__info div {
    padding: 13px;
    border: 1px solid #e1e5ec;
    background: #f8f9fb;
}

.profile-detail__info dt {
    color: #68707d;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.profile-detail__info dd {
    margin: 6px 0 0;
    color: #1d2128;
    font-weight: 900;
}

.profile-detail__info a {
    color: inherit;
    text-decoration: none;
}

.profile-rating-panel {
    display: grid;
    gap: 14px;
    padding: 20px;
    border: 1px solid #e1cf9a;
    border-radius: 10px;
    background: #fffaf0;
}

.profile-rating-panel__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.profile-rating-panel__heading > div {
    min-width: 0;
}

.profile-rating-panel__heading p,
.profile-rating-panel__heading h2,
.profile-rating-panel__intro,
.profile-rating-panel__current,
.profile-rating-panel__note,
.profile-rating-feedback {
    margin: 0;
}

.profile-rating-panel__heading p {
    margin-bottom: 4px;
    color: #8a6500;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.profile-rating-panel__heading > span {
    color: #f2a900;
    font-size: 30px;
    line-height: 1;
}

.profile-rating-panel__intro,
.profile-rating-panel__current,
.profile-rating-panel__note {
    color: #5c6470;
    font-size: 13px;
    line-height: 1.5;
}

.profile-rating-panel__current strong {
    color: #1a1d24;
}

.profile-rating-feedback {
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.profile-rating-feedback--success {
    border-color: #94d3aa;
    background: #edf9f1;
    color: #176b35;
}

.profile-rating-feedback--error {
    border-color: #e4a5b0;
    background: #fff0f2;
    color: #9f2138;
}

.profile-rating-form,
.profile-rating-form fieldset {
    min-width: 0;
    margin: 0;
}

.profile-rating-form {
    display: grid;
    gap: 12px;
}

.profile-rating-form fieldset {
    padding: 0;
    border: 0;
}

.profile-rating-form legend {
    margin-bottom: 10px;
    color: #303742;
    font-size: 13px;
    font-weight: 900;
}

.profile-rating-options {
    display: grid;
    grid-template-columns: repeat(5, minmax(48px, 1fr));
    gap: 8px;
}

.profile-rating-option {
    position: relative;
    min-width: 0;
    cursor: pointer;
}

.profile-rating-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.profile-rating-option > span {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 5px;
    border: 1px solid #d6c68e;
    border-radius: 7px;
    background: #ffffff;
    color: #6c5a1d;
    font-size: 16px;
    line-height: 1;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

.profile-rating-option > span > span {
    color: #f2a900;
}

.profile-rating-option:hover > span {
    border-color: #d6a600;
    transform: translateY(-1px);
}

.profile-rating-option input:checked + span {
    border-color: #c89300;
    background: #fff1bd;
    color: #4e3c00;
    box-shadow: inset 0 0 0 1px #c89300;
}

.profile-rating-option input:focus-visible + span {
    outline: 3px solid var(--secondary);
    outline-offset: 3px;
}

.profile-rating-submit {
    min-height: 46px;
    padding: 10px 16px;
    border: 0;
    border-radius: 7px;
    background: var(--accent);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

.profile-rating-submit:hover {
    filter: brightness(.94);
}

.profile-rating-panel__note {
    color: #777f8a;
    font-size: 12px;
}

.profile-detail__contact {
    display: grid;
    gap: 2px;
    margin-top: 4px;
    padding-top: 18px;
    border-top: 1px solid #e1e5ec;
}

.profile-detail__contact .profile-contact {
    max-width: 620px;
}

.classified-safety {
    padding: 42px 0;
    background: #ffffff;
    color: #1d2128;
}

.classified-safety__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.classified-safety article {
    padding: 20px;
    border: 1px solid #d8dde6;
}

.classified-safety span {
    color: var(--accent);
    font-weight: 900;
}

.classified-safety h2 {
    margin: 10px 0 8px;
    font-size: 20px;
}

.classified-safety p {
    margin: 0;
    color: #616a78;
    line-height: 1.55;
}

.classified-footer {
    padding: 20px 0;
    background: #101010;
    color: #ffffff;
}

.classified-footer .classified-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.classified-footer strong {
    color: var(--accent);
}

.classified-footer__details {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.classified-footer__email {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.classified-footer__email:hover {
    color: var(--accent);
    text-decoration: underline;
}

.classified-footer span {
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
}

.has-tooltip {
    position: relative;
}

h1.has-tooltip,
h2.has-tooltip,
h3.has-tooltip {
    display: flex;
    align-items: center;
}

h1.has-tooltip > span:first-child,
h2.has-tooltip > span:first-child,
h3.has-tooltip > span:first-child {
    min-width: 0;
}

.has-tooltip > .tooltip-indicator {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: var(--accent);
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    text-transform: none;
    vertical-align: middle;
    cursor: help;
    opacity: .82;
}

.has-tooltip > .tooltip-bubble {
    position: absolute;
    z-index: 50;
    top: calc(100% + 10px);
    left: 50%;
    width: max-content;
    max-width: min(360px, calc(100vw - 40px));
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 6px;
    background: #17191f;
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
    color: #ffffff;
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    text-align: left;
    text-transform: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -4px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
    pointer-events: none;
}

.has-tooltip > .tooltip-bubble::before {
    content: "";
    position: absolute;
    top: -6px;
    left: calc(50% - 6px);
    border-right: 6px solid transparent;
    border-bottom: 6px solid #17191f;
    border-left: 6px solid transparent;
}

.has-tooltip > .tooltip-bubble--above {
    top: auto;
    bottom: calc(100% + 10px);
}

.has-tooltip > .tooltip-bubble--above::before {
    top: auto;
    bottom: -6px;
    border-top: 6px solid #17191f;
    border-right: 6px solid transparent;
    border-bottom: 0;
    border-left: 6px solid transparent;
}

.has-tooltip:hover > .tooltip-bubble,
.has-tooltip:focus > .tooltip-bubble,
.has-tooltip:focus-within > .tooltip-bubble {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.has-tooltip:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 4px;
}

.market-footer strong.has-tooltip {
    display: inline-flex;
    align-items: center;
}

.city-page {
    background: #ffffff;
}

.city-hero {
    padding: 72px 48px 46px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f6f7fa 100%);
    color: #17191f;
}

.city-hero > * {
    width: min(1120px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.city-back {
    display: inline-flex;
    width: auto;
    margin-bottom: 24px;
    color: var(--accent);
    font-weight: 900;
    text-decoration: none;
}

.city-hero h1 {
    max-width: 860px;
    margin-top: 0;
    margin-bottom: 14px;
    color: #17191f;
    font-size: 58px;
    line-height: 1;
}

.city-hero p:not(.market-kicker) {
    max-width: 760px;
    color: #5f6673;
    font-size: 18px;
    line-height: 1.6;
}

.city-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 180px));
    gap: 12px;
    margin-top: 28px;
}

.city-summary div {
    padding: 16px;
    border: 1px solid #e4e7ed;
    border-radius: 8px;
    background: #ffffff;
}

.city-summary dt {
    color: #17191f;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.city-summary dd {
    margin: 8px 0 0;
    color: #68707d;
    font-size: 13px;
    font-weight: 800;
}

.city-browser {
    padding: 44px 48px;
    color: #17191f;
}

.city-browser__heading,
.city-filter-grid {
    width: min(1120px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.city-browser__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.city-browser__heading h2 {
    margin: 0;
    color: #17191f;
    font-size: 34px;
    line-height: 1.05;
}

.city-browser__heading a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 4px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
}

.city-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.city-filter-grid a {
    min-height: 42px;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid #e4e7ed;
    border-radius: 8px;
    background: #ffffff;
    color: #17191f;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.city-filter-grid a > span:first-child {
    min-width: 0;
    overflow-wrap: anywhere;
}

.city-filter-grid a > .tooltip-indicator {
    margin-left: 0;
}

.city-filter-grid a::after {
    content: ">";
    color: var(--accent);
}

.city-filter-grid a.is-active {
    border-color: var(--accent);
    background: rgba(216, 58, 86, .08);
    color: var(--accent);
}

.city-results {
    padding-top: 44px;
}

@media (max-width: 1040px) {
    .classified-brandbar__inner {
        min-height: 138px;
        grid-template-columns: 1fr auto;
    }

    .classified-logo {
        grid-column: 1;
        justify-self: start;
    }

    .classified-publish {
        grid-column: 2;
    }

    .classified-content {
        grid-template-columns: 1fr;
    }

    .classified-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .classified-sidebar section:last-child {
        grid-column: 1 / -1;
    }

    .classified-safety__grid {
        grid-template-columns: 1fr;
    }

    .market-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .market-hero__copy,
    .market-search {
        justify-self: center;
    }

    .market-trust-grid,
    .market-profile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .city-filter-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .market-filters {
        grid-template-columns: 1fr;
    }

    .market-filters > div,
    .market-chip-row {
        justify-self: center;
        width: min(760px, 100%);
    }
}

@media (max-width: 760px) {
    .classified-container {
        width: min(100% - 24px, 1160px);
    }

    .classified-topbar__inner {
        min-height: auto;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding-top: 10px;
    }

    .classified-topbar nav {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .classified-topbar nav a {
        min-width: max-content;
        padding-inline: 16px;
    }

    .classified-brandbar__inner {
        min-height: 126px;
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 16px 0;
    }

    .classified-logo,
    .classified-publish {
        grid-column: auto;
        justify-self: center;
    }

    .classified-logo img {
        max-width: min(72vw, 220px);
        max-height: 104px;
    }

    .classified-publish {
        width: 100%;
    }

    .classified-titlebar h1 {
        font-size: 24px;
    }

    .directory-search {
        gap: 18px;
        margin-top: 14px;
        padding: 16px;
    }

    .directory-search__categories {
        gap: 6px;
    }

    .directory-search__category span {
        min-height: 50px;
        padding: 7px 6px;
        font-size: 12px;
    }

    .directory-search__location-options {
        grid-template-columns: 1fr;
    }

    .directory-search__location-panel {
        padding: 12px;
    }

    .classified-banner {
        min-height: 230px;
        margin-top: 16px;
    }

    .classified-banner__copy {
        padding: 22px;
    }

    .classified-banner__copy h2 {
        font-size: 26px;
    }

    .classified-banner--center-stage .classified-banner__copy,
    .classified-banner--split-focus .classified-banner__copy {
        justify-self: stretch;
        text-align: left;
    }

    .classified-banner--center-stage .classified-banner__message,
    .classified-banner--split-focus .classified-banner__message {
        padding-right: 0;
        padding-left: 12px;
        border-right: 0;
        border-left: 3px solid var(--accent);
    }

    .classified-offer,
    .classified-list__heading,
    .classified-footer .classified-container {
        align-items: stretch;
        flex-direction: column;
    }

    .classified-footer__details {
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
    }

    .classified-offer a,
    .classified-list__heading > a {
        width: 100%;
    }

    .classified-sidebar {
        grid-template-columns: 1fr;
    }

    .classified-sidebar section:last-child {
        grid-column: auto;
    }

    .listing-card {
        grid-template-columns: 1fr;
    }

    .listing-card__media {
        min-height: auto;
        aspect-ratio: 4 / 3;
    }

    .listing-card__body h3 {
        font-size: 21px;
    }

    .listing-card .profile-contact {
        grid-template-columns: 1fr;
    }

    .profile-detail {
        grid-template-columns: 1fr;
        padding-top: 18px;
    }

    .profile-detail__content {
        padding: 20px;
    }

    .profile-detail__title h2 {
        font-size: 30px;
    }

    .profile-detail__info {
        grid-template-columns: 1fr;
    }

    .profile-gallery__empty {
        min-height: 280px;
    }

    .market-header {
        grid-template-columns: 1fr auto;
        gap: 10px;
        min-height: 60px;
        padding: 0 16px;
    }

    .market-header__brand img {
        width: 132px;
        height: auto;
        max-height: 46px;
    }

    .market-header__nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        order: 3;
        width: calc(100vw - 32px);
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .market-header__nav a {
        white-space: nowrap;
    }

    .market-header__cta {
        min-height: 34px;
        padding-inline: 10px;
        font-size: 13px;
        white-space: nowrap;
    }

    .market-hero {
        padding: 44px 20px 36px;
    }

    .market-hero h1 {
        font-size: 42px;
    }

    .market-hero__copy > p:not(.market-kicker) {
        font-size: 16px;
    }

    .market-stats,
    .market-link-grid,
    .market-trust-grid,
    .market-profile-grid {
        grid-template-columns: 1fr;
    }

    .market-stats dt {
        font-size: 30px;
    }

    .market-links,
    .market-directory,
    .market-trust,
    .market-filters,
    .market-city-seo {
        padding-left: 20px;
        padding-right: 20px;
    }

    .market-section-heading h2,
    .market-filters h2,
    .market-city-seo h2 {
        font-size: 32px;
    }

    .market-chip-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .market-chip-row a {
        white-space: nowrap;
    }

    .profile-contact {
        grid-template-columns: 1fr;
    }

    .profile-contact__portal-age-placeholder {
        display: none;
    }

    .market-city-seo {
        display: grid;
    }

    .market-footer {
        padding: 20px;
    }

    .city-hero,
    .city-browser {
        padding-left: 20px;
        padding-right: 20px;
    }

    .city-hero h1 {
        font-size: 40px;
    }

    .city-hero p:not(.market-kicker) {
        font-size: 16px;
    }

    .city-summary,
    .city-filter-grid {
        grid-template-columns: 1fr;
    }

    .city-browser__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .city-browser__heading h2 {
        font-size: 30px;
    }

    .hero-banner {
        min-height: 100vh;
        padding: 28px 20px 90px;
    }

    .hero-banner h1 {
        font-size: 44px;
    }

    .hero-banner__copy {
        font-size: 17px;
    }

    .hero-banner__meta {
        left: 20px;
        right: 20px;
        justify-content: flex-start;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .provider-panel__grid,
    .provider-summary dl {
        grid-template-columns: 1fr;
    }

    .access-grid,
    .provider-media-list {
        grid-template-columns: 1fr;
    }

    .access-option {
        min-height: 230px;
    }

    .provider-media-item {
        grid-template-columns: 82px 1fr;
    }

    .provider-media-item img,
    .provider-media-item video {
        width: 82px;
    }

    .directory-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .form-hero h1,
    .message-panel h1 {
        font-size: 38px;
    }

    .age-certification__card {
        padding: 42px 18px 34px;
    }

    .age-certification__card h2 {
        font-size: 21px;
    }

    .age-certification__card p {
        margin-bottom: 24px;
        font-size: 18px;
    }

    .age-certification__actions {
        gap: 12px;
    }

    .age-certification__button {
        min-height: 50px;
        font-size: 18px;
    }
}

@media (max-width: 380px) {
    .directory-search {
        padding-right: 10px;
        padding-left: 10px;
    }

    .directory-search__categories {
        gap: 5px;
    }

    .directory-search__category span {
        padding-right: 4px;
        padding-left: 4px;
        font-size: 12px;
    }

    .directory-search__location-picker,
    .directory-search__location-picker summary {
        width: 100%;
    }

    .profile-rating-panel {
        padding: 15px;
    }

    .profile-rating-options {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 5px;
    }

    .profile-rating-option > span {
        min-height: 46px;
        padding-right: 3px;
        padding-left: 3px;
        font-size: 14px;
    }
}

/* Responsive layout hardening */

img,
video {
    max-width: 100%;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 3px;
}

.classified-topbar__inner > *,
.classified-brandbar__inner > *,
.classified-content > *,
.listing-card > *,
.profile-detail > *,
.form-grid > *,
.provider-panel__grid > *,
.provider-media-item > span {
    min-width: 0;
}

.classified-publish {
    text-align: center;
}

.classified-titlebar p,
.listing-card__route,
.listing-card__description,
.profile-detail__route,
.profile-detail__description,
.profile-detail__info dd,
.provider-summary dd,
.field-note {
    overflow-wrap: anywhere;
}

.provider-fieldset {
    min-width: 0;
}

@media (max-width: 1040px) {
    .classified-list {
        order: 1;
    }

    .classified-sidebar {
        order: 2;
    }
}

@media (max-width: 900px) {
    .provider-panel__grid {
        grid-template-columns: 1fr;
    }

    .provider-summary dl {
        grid-template-columns: minmax(100px, auto) minmax(0, 1fr);
    }

    .provider-media-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .classified-topbar__inner {
        align-items: center;
        padding: 10px 0;
    }

    .classified-topbar__inner > span {
        text-align: center;
    }

    .classified-topbar nav {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
    }

    .classified-topbar nav a,
    .classified-topbar nav > span {
        min-width: 0;
        min-height: 42px;
        flex: 1 1 120px;
        justify-content: center;
        padding-inline: 12px;
        text-align: center;
        overflow-wrap: anywhere;
    }

    .classified-content {
        padding-top: 18px;
    }

    .classified-sidebar {
        gap: 12px;
        min-width: 0;
        width: 100%;
    }

    .classified-sidebar section {
        min-width: 0;
        max-width: 100%;
    }

    .classified-sidebar nav {
        display: flex;
        width: 100%;
        min-width: 0;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline proximity;
        scrollbar-width: thin;
    }

    .classified-sidebar nav a {
        min-width: max-content;
        min-height: 44px;
        flex: 0 0 auto;
        border-right: 1px solid #edf0f4;
        border-bottom: 0;
        scroll-snap-align: start;
    }

    .classified-stats {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0;
        padding: 0;
    }

    .classified-stats div,
    .classified-stats div:last-child {
        display: grid;
        justify-items: center;
        gap: 4px;
        padding: 12px 8px;
        border-right: 1px solid #edf0f4;
        border-bottom: 0;
        text-align: center;
    }

    .classified-stats div:last-child {
        border-right: 0;
    }

    .listing-card__media {
        aspect-ratio: 4 / 5;
    }

    .listing-card__media img {
        object-position: center 20%;
    }

    .profile-detail__media {
        min-width: 0;
        overflow: hidden;
    }

    .profile-gallery {
        grid-template-columns: minmax(0, 1fr);
        grid-auto-flow: row;
        grid-auto-columns: auto;
        align-items: start;
        overflow-x: visible;
        overscroll-behavior-inline: auto;
        scroll-snap-type: none;
    }

    .profile-gallery__item {
        scroll-snap-align: none;
    }

    .profile-gallery__item img,
    .profile-gallery__item video {
        max-height: min(68vh, 560px);
    }

    .profile-gallery-section__heading {
        padding-top: 14px;
    }

    .public-page {
        padding: 24px 12px;
    }

    .form-hero {
        padding: 18px 4px;
    }

    .form-panel,
    .message-panel {
        padding: 20px;
    }

    .stack-form {
        gap: 16px;
    }

    .stack-form > .primary-button {
        width: 100%;
        justify-self: stretch;
        margin-top: 4px;
    }

    .stack-form > .back-link {
        margin-bottom: 0;
    }

    .message-panel .primary-button {
        width: 100%;
        margin-top: 12px;
    }

    .provider-fieldset {
        padding: 16px;
    }

    .provider-summary dl {
        grid-template-columns: minmax(96px, auto) minmax(0, 1fr);
    }
}

@media (max-width: 620px) {
    .provider-media-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 380px) {
    .provider-media-item {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 10px;
    }

    .provider-media-item img,
    .provider-media-item video {
        width: 72px;
    }
}

/* Provider account workflow and consistent profile media */

:root {
    --profile-media-ratio: 3 / 4;
}

.provider-auth-page .form-hero,
.provider-auth-page .provider-auth-card {
    max-width: 620px;
}

.provider-auth-card,
.provider-registration-card,
.provider-history {
    min-width: 0;
}

.provider-auth-help,
.provider-section-intro,
.provider-submit-note {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}

.provider-auth-eyebrow {
    color: var(--secondary) !important;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.provider-activation-identity {
    display: grid;
    gap: 6px;
    margin-bottom: 22px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .07);
}

.provider-activation-identity span {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.provider-activation-identity h2,
.provider-activation-identity p {
    margin: 0;
    overflow-wrap: anywhere;
}

.provider-password-section {
    border-color: rgba(47, 159, 143, .55);
    background: rgba(47, 159, 143, .1);
}

.provider-registration-form input[type="file"],
.provider-update-form input[type="file"] {
    min-width: 0;
    max-width: 100%;
}

.provider-request-editor {
    min-width: 0;
}

.provider-summary {
    align-self: start;
    position: sticky;
    top: 20px;
}

.provider-summary__section {
    display: grid;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.provider-summary__section + .provider-summary__section {
    margin-top: 18px;
}

.provider-summary__section h3,
.provider-summary__section p {
    margin: 0;
}

.provider-summary__section h3 {
    font-size: 16px;
}

.provider-summary__section > p {
    color: rgba(255, 255, 255, .64);
    font-size: 13px;
    line-height: 1.45;
}

.provider-summary__section--private {
    padding: 16px;
    border: 1px solid rgba(47, 159, 143, .34);
    background: rgba(47, 159, 143, .09);
}

.provider-summary__section dl {
    margin: 0;
}

.provider-media-item {
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: start;
}

.provider-media-item__preview {
    width: 104px;
    aspect-ratio: var(--profile-media-ratio);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .15);
    background: #0b0d12;
}

.provider-media-item__preview img,
.provider-media-item__preview video {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    display: block;
    background: #0b0d12;
}

.provider-media-item--photo .provider-media-item__preview img {
    object-fit: cover;
    object-position: center 20%;
}

.provider-media-item--video .provider-media-item__preview video {
    object-fit: contain;
}

.provider-media-item__body {
    min-width: 0;
    display: grid;
    gap: 12px;
}

.provider-media-item__body > strong {
    overflow-wrap: anywhere;
}

.provider-media-removal {
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(216, 58, 86, .36);
    background: rgba(216, 58, 86, .11);
    color: #ffffff;
    font-size: 13px;
    line-height: 1.4;
}

.provider-media-removal input {
    width: auto;
    min-height: auto;
    margin: 3px 0 0;
}

.provider-media-primary {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(214, 166, 48, .5);
    background: rgba(214, 166, 48, .12);
    color: #ffffff;
    font-size: 13px;
    line-height: 1.4;
}

.provider-media-primary input {
    width: auto;
    min-height: auto;
    margin: 3px 0 0;
}

.provider-history {
    margin-top: 24px;
}

.provider-history__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 22px;
}

.provider-history__heading h2 {
    margin: 4px 0 0;
    font-size: clamp(25px, 4vw, 34px);
}

.provider-history__stats {
    min-width: min(100%, 410px);
    display: grid;
    grid-template-columns: repeat(4, minmax(76px, 1fr));
    gap: 8px;
    margin: 0;
}

.provider-history__stats div {
    min-width: 0;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    text-align: center;
}

.provider-history__stats dt {
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.provider-history__stats dd {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
}

.provider-request-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.provider-request-card {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
}

.provider-request-card header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.provider-request-card header > div {
    min-width: 0;
    display: grid;
    gap: 8px;
}

.provider-request-card h3,
.provider-request-card p,
.provider-request-card time {
    margin: 0;
}

.provider-request-card h3 {
    overflow-wrap: anywhere;
    font-size: 18px;
}

.provider-request-card time {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
}

.provider-request-status {
    width: max-content;
    max-width: 100%;
    display: inline-flex;
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, .2);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.provider-request-status--new,
.provider-request-status--pending {
    border-color: rgba(245, 158, 11, .58);
    background: rgba(245, 158, 11, .18);
}

.provider-request-status--in_review {
    border-color: rgba(59, 130, 246, .58);
    background: rgba(59, 130, 246, .18);
}

.provider-request-status--approved,
.provider-request-status--resolved {
    border-color: rgba(47, 159, 143, .62);
    background: rgba(47, 159, 143, .2);
}

.provider-request-status--rejected {
    border-color: rgba(216, 58, 86, .62);
    background: rgba(216, 58, 86, .2);
}

.provider-request-card__summary,
.provider-history__empty {
    color: rgba(255, 255, 255, .76);
    line-height: 1.55;
}

.provider-request-card__counts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.provider-request-card__counts li {
    padding: 6px 8px;
    background: rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .8);
    font-size: 12px;
    font-weight: 800;
}

.provider-request-card__note {
    display: grid;
    gap: 6px;
    padding: 12px;
    border-left: 4px solid var(--secondary);
    background: rgba(47, 159, 143, .1);
}

.provider-request-card__note strong {
    color: var(--secondary);
    font-size: 12px;
    text-transform: uppercase;
}

.provider-request-card__note p {
    color: rgba(255, 255, 255, .84);
    line-height: 1.5;
    overflow-wrap: anywhere;
}

/* Every public profile image keeps one portrait frame. */
.profile-card__avatar,
.listing-card__media,
.profile-gallery__item img,
.profile-gallery__item video {
    aspect-ratio: var(--profile-media-ratio);
}

.listing-card__media {
    min-height: 0;
    align-self: start;
}

.profile-card__avatar,
.listing-card__media img,
.profile-gallery__item--photo img {
    object-fit: cover;
    object-position: center 20%;
}

.profile-gallery__item img,
.profile-gallery__item video {
    width: 100%;
    height: auto;
    max-height: none;
    background: #10131a;
}

.profile-gallery__item--video video {
    object-fit: contain;
}

@media (max-width: 900px) {
    .profile-detail {
        grid-template-columns: 1fr;
    }

    .provider-summary {
        position: static;
    }

    .provider-request-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .provider-history__heading {
        align-items: stretch;
        flex-direction: column;
    }

    .provider-history__stats {
        width: 100%;
        min-width: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .provider-media-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .provider-media-item {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .provider-media-item__preview {
        width: 88px;
    }
}

@media (max-width: 620px) {
    .provider-media-list {
        grid-template-columns: 1fr;
    }

    .provider-request-card header {
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .provider-media-item {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 10px;
    }

    .provider-media-item__preview {
        width: 76px;
    }

    .provider-history__stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* Highlight requests and private request conversations */
.alert--info {
    border-color: #9fc5e8;
    background: #eef7ff;
    color: #244968;
}

.provider-highlight-request {
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
    padding: 18px;
    border-top: 4px solid #d83a56;
    background: #ffffff;
}

.provider-highlight-request__heading {
    display: grid;
    gap: 6px;
}

.provider-highlight-request__heading h2,
.provider-highlight-request__heading p {
    margin: 0;
}

.provider-highlight-request__heading h2 {
    font-size: 24px;
    line-height: 1.2;
}

.provider-highlight-request__heading > p:last-child {
    color: #665f69;
    line-height: 1.5;
}

.provider-highlight-request__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, .72fr);
    gap: 14px;
    align-items: start;
}

.provider-highlight-request__form > label {
    min-width: 0;
}

.provider-highlight-request__form > button {
    grid-column: 1 / -1;
    justify-self: start;
    min-width: min(100%, 280px);
}

.provider-conversation {
    display: grid;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid #e5dfe3;
}

.provider-conversation h4 {
    margin: 0;
    font-size: 18px;
}

.provider-conversation__messages {
    display: grid;
    gap: 10px;
    max-height: 520px;
    overflow-y: auto;
    padding: 4px;
}

.provider-conversation__message {
    width: min(88%, 680px);
    display: grid;
    gap: 7px;
    padding: 12px 14px;
    border: 1px solid #ded8dc;
    background: #f7f7f7;
}

.provider-conversation__message--provider {
    justify-self: end;
    border-color: #efb3c0;
    background: #fff2f5;
}

.provider-conversation__message--admin {
    justify-self: start;
    border-left: 4px solid #1f2937;
    background: #f1f4f7;
}

.provider-conversation__message header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 6px 12px;
}

.provider-conversation__message header span,
.provider-conversation__message time {
    color: #756c72;
    font-size: 12px;
    font-weight: 700;
}

.provider-conversation__message p {
    margin: 0;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.provider-conversation__reply {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 10px;
}

.provider-conversation__reply label,
.provider-conversation__reply textarea {
    min-width: 0;
}

.provider-conversation__reply textarea {
    min-height: 96px;
    resize: vertical;
}

.provider-conversation__reply .primary-button {
    min-width: 170px;
}

@media (max-width: 760px) {
    .provider-highlight-request__form,
    .provider-conversation__reply {
        grid-template-columns: 1fr;
    }

    .provider-highlight-request__form > button,
    .provider-conversation__reply .primary-button {
        width: 100%;
        min-width: 0;
    }

    .provider-conversation__message {
        width: 94%;
    }
}

@media (max-width: 420px) {
    .provider-highlight-request {
        padding: 14px;
    }

    .provider-highlight-request__heading h2 {
        font-size: 21px;
    }

    .provider-conversation__message {
        width: 100%;
    }
}

/* Unified LOQUOSEXBCN theme for every public route. */
.public-site-header,
.classified-shell,
.public-page {
    --secondary: var(--accent);
}

.public-site-header {
    background: #ffffff;
    color: #1d2128;
}

.classified-topbar nav a:hover,
.classified-topbar nav a:focus-visible {
    background: var(--accent);
    color: #ffffff;
}

.classified-publish:hover,
.classified-publish:focus-visible,
.primary-button:hover,
.primary-button:focus-visible,
.access-option__action:hover,
.access-option__action:focus-visible {
    filter: brightness(.92);
}

.age-certification__button--yes {
    border-color: var(--accent);
    background: var(--accent);
}

.age-certification__button--yes:hover,
.age-certification__button--yes:focus-visible {
    border-color: var(--accent);
    background: var(--accent);
    filter: brightness(.92);
}

.public-page {
    min-height: calc(100vh - 212px);
    padding: 34px 20px 58px;
    background: #f1f2f4;
    color: #1d2128;
}

.public-page .form-hero,
.public-page .form-panel,
.public-page .message-panel {
    width: min(980px, 100%);
}

.public-page .form-hero {
    padding: 4px 0 26px;
}

.public-page .form-hero h1,
.public-page .message-panel h1 {
    margin-bottom: 10px;
    color: var(--accent);
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 36px;
    line-height: 1.15;
}

.public-page .form-hero p,
.public-page .message-panel p,
.public-page .provider-auth-help,
.public-page .provider-section-intro,
.public-page .provider-submit-note,
.public-page .provider-request-card__summary,
.public-page .provider-history__empty {
    color: #5f6673;
}

.public-page .back-link,
.public-page .access-links a,
.public-page .access-option__label,
.public-page .provider-auth-eyebrow,
.public-page .provider-activation-identity span,
.public-page .provider-request-card__note strong {
    color: var(--accent) !important;
}

.public-page .back-link:hover,
.public-page .back-link:focus-visible,
.public-page .access-links a:hover,
.public-page .access-links a:focus-visible {
    color: #a91545;
    text-decoration: underline;
}

.public-page .form-panel,
.public-page .message-panel,
.public-page .access-option {
    border: 1px solid #dde1e8;
    border-radius: 8px;
    background: #ffffff;
    color: #1d2128;
    box-shadow: 0 12px 32px rgba(24, 31, 42, .09);
}

.public-page .message-panel {
    max-width: 640px;
}

.public-page .access-option {
    min-height: 240px;
}

.public-page .access-option:hover,
.public-page .access-option:focus-visible {
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(216, 58, 86, .16);
    outline: 0;
}

.public-page .access-option em {
    color: #5f6673;
}

.public-page .access-option strong {
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 32px;
    line-height: 1.12;
}

.public-page .access-option__action,
.public-page .access-option--provider .access-option__action {
    border-radius: 4px;
    background: var(--accent);
    color: #ffffff;
}

.public-page label {
    color: #252934;
}

.public-page input,
.public-page select,
.public-page textarea {
    border-color: #cfd4dd;
    border-radius: 4px;
    background: #ffffff;
    color: #1d2128;
}

.public-page input:focus,
.public-page select:focus,
.public-page textarea:focus {
    border-color: var(--accent);
    outline: 3px solid rgba(216, 58, 86, .14);
    outline-offset: 0;
}

.public-page .field-note {
    color: #68707d;
}

.public-page .primary-button {
    border-radius: 4px;
    background: var(--accent);
}

.classified-publish,
.directory-search__submit,
.classified-banner__copy a,
.classified-offer a,
.classified-list__heading > a,
.classified-inline-button,
.market-button--primary,
.market-search__form button,
.profile-contact__button--phone,
.public-page .primary-button,
.public-page .access-option__action,
.public-page .access-option--provider .access-option__action {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
}

.profile-contact__button--phone:hover {
    background: var(--accent);
    color: #ffffff;
    filter: brightness(.92);
}

.profile-contact__button--whatsapp {
    border-color: #128c4a;
    background: #128c4a;
    color: #ffffff;
}

.profile-contact__button--whatsapp:hover {
    border-color: #0b7139;
    background: #0b7139;
    color: #ffffff;
    filter: none;
}

.profile-contact__button:focus-visible {
    outline-color: var(--accent);
}

.public-page .provider-fieldset {
    border-color: #d9dde6;
    border-radius: 6px;
    background: #fafbfc;
}

.public-page .provider-fieldset legend {
    color: #1d2128;
}

.public-page .provider-password-section,
.public-page .provider-summary__section--private {
    border-color: rgba(216, 58, 86, .34);
    background: #fff2f6;
}

.public-page .provider-summary {
    border-color: #e0e4ec;
    border-radius: 6px;
    background: #fafbfc;
}

.public-page .provider-summary dt,
.public-page .provider-summary__section > p {
    color: #68707d;
}

.public-page .provider-summary__section {
    border-top-color: #e0e4ec;
}

.public-page .provider-activation-identity,
.public-page .provider-history__stats div,
.public-page .provider-request-card,
.public-page .provider-media-item {
    border-color: #e0e4ec;
    border-radius: 6px;
    background: #fafbfc;
    color: #1d2128;
}

.public-page .provider-media-item span,
.public-page .provider-request-card time,
.public-page .provider-history__stats dt {
    color: #68707d;
}

.public-page .provider-media-item strong,
.public-page .provider-history__stats dd {
    color: #1d2128;
}

.public-page .provider-media-removal {
    border-color: rgba(216, 58, 86, .32);
    background: #fff2f6;
    color: #752039;
}

.public-page .provider-media-primary {
    border-color: rgba(188, 135, 16, .38);
    background: #fff9e8;
    color: #705010;
}

.public-page .provider-request-card__counts li {
    background: #eef1f4;
    color: #4f5866;
}

.public-page .provider-request-card__note {
    border-left-color: var(--accent);
    background: #fff2f6;
}

.public-page .provider-request-card__note p {
    color: #4f5866;
}

.public-page .alert--error {
    border-color: #ef9aaa;
    background: #fff3f5;
    color: #9b1c1c;
}

.public-page .alert--success {
    border-color: #e8a5ba;
    background: #fff2f6;
    color: #9b214a;
}

.provider-summary__title {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.provider-summary__title h2 {
    margin: 0;
}

.provider-top-status {
    width: max-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border: 1px solid #e5bd55;
    border-radius: 4px;
    background: #fff7d6;
    color: #7a4a00;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.provider-top-status--large {
    min-height: 36px;
    padding-inline: 13px;
}

.provider-profile-actions {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    border: 1px solid #d9dde6;
    border-radius: 6px;
    background: #fafbfc;
}

.provider-profile-actions__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.provider-profile-actions__heading h2,
.provider-profile-actions__heading p {
    margin: 0;
}

.provider-profile-actions__heading h2 {
    margin-top: 4px;
    font-size: 24px;
}

.provider-profile-actions__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.provider-action-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    padding: 14px;
    border: 1px solid #dfe3ea;
    border-radius: 6px;
    background: #ffffff;
    color: #252934;
    text-decoration: none;
}

.provider-action-card > span {
    color: #68707d;
    font-size: 12px;
    line-height: 1.45;
}

.provider-action-card--link strong {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid var(--accent);
    border-radius: 4px;
    color: var(--accent);
    text-align: center;
}

.provider-action-card--link:hover,
.provider-action-card--link:focus-visible {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(216, 58, 86, .12);
    outline: 0;
}

.provider-action-button,
.provider-delete-button {
    width: 100%;
    min-height: 46px;
    margin: 0;
    padding: 10px 14px;
    border-radius: 4px;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.provider-delete-button {
    border: 1px solid #b4233c;
    background: #ffffff;
    color: #a01932;
}

.provider-delete-button:hover,
.provider-delete-button:focus-visible {
    background: #fff1f3;
    outline: 3px solid rgba(180, 35, 60, .12);
}

.provider-action-button:disabled,
.provider-delete-button:disabled {
    border-color: #c9ced7;
    background: #e8ebef;
    color: #747b86;
    cursor: not-allowed;
    filter: none;
}

#provider-media-editor {
    scroll-margin-top: 24px;
}

#provider-media-editor:focus {
    outline: 3px solid rgba(216, 58, 86, .16);
    outline-offset: 3px;
}

.provider-new-media {
    padding: 16px;
    border: 1px dashed #c8ced8;
    border-radius: 6px;
    background: #fafbfc;
}

@media (max-width: 760px) {
    .public-page {
        min-height: calc(100vh - 214px);
        padding: 24px 12px 42px;
    }

    .public-page .form-hero {
        padding: 2px 4px 20px;
    }

    .public-page .form-hero h1,
    .public-page .message-panel h1 {
        font-size: 30px;
    }

    .public-page .access-option {
        min-height: 220px;
    }

    .provider-profile-actions__grid {
        grid-template-columns: 1fr;
    }

    .provider-profile-actions__heading {
        align-items: stretch;
        flex-direction: column;
    }
}

/* Public listing view selector */
.classified-list__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    margin-left: auto;
}

.classified-list__actions > a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 4px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
}

.listing-view-toggle {
    min-width: 190px;
    min-height: 42px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 6px;
    background: #11141a;
}

.listing-view-toggle button {
    min-width: 0;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 9px;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: rgba(255, 255, 255, .72);
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.listing-view-toggle button[aria-pressed="true"] {
    background: var(--accent);
    color: #ffffff;
}

.listing-view-toggle button:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
}

.listing-view-toggle__icon {
    flex: 0 0 auto;
    font-size: 17px;
    line-height: 1;
}

.classified-list[data-listing-view="grid"] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
}

.classified-list[data-listing-view="grid"] .classified-list__heading,
.classified-list[data-listing-view="grid"] .listing-card--empty {
    grid-column: 1 / -1;
}

.classified-list[data-listing-view="grid"] .classified-list__heading,
.classified-list[data-listing-view="grid"] .listing-card {
    margin-bottom: 0;
}

.classified-list[data-listing-view="grid"] .listing-card {
    height: 100%;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    min-height: 0;
}

.classified-list[data-listing-view="grid"] .listing-card__media {
    min-height: 0;
    aspect-ratio: 4 / 5;
}

.classified-list[data-listing-view="grid"] .listing-card__media-link {
    min-height: 0;
}

.classified-list[data-listing-view="grid"] .listing-card__body {
    padding: 16px;
}

.classified-list[data-listing-view="grid"] .listing-card__body h3 {
    font-size: 21px;
}

.classified-list[data-listing-view="grid"] .listing-card__description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.classified-list[data-listing-view="grid"] .listing-card .profile-contact {
    max-width: none;
    grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 760px) {
    .classified-list__actions {
        width: 100%;
        justify-content: space-between;
        margin-left: 0;
    }

    .classified-list__actions > a {
        flex: 1 1 130px;
        margin-top: 0;
    }

    .listing-view-toggle {
        flex: 1 1 190px;
    }

    .classified-list[data-listing-view="list"] .listing-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .classified-list[data-listing-view="list"] .listing-card__media {
        order: 1;
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .classified-list[data-listing-view="list"] .listing-card__media-link {
        min-height: 0;
    }

    .classified-list[data-listing-view="list"] .listing-card__body {
        order: 2;
    }

    .listing-card__heading {
        grid-template-columns: minmax(0, 1fr);
    }

    .classified-list[data-listing-view="grid"] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .classified-list[data-listing-view="grid"] .listing-card__body {
        padding: 11px;
    }

    .classified-list[data-listing-view="grid"] .listing-card__body h3 {
        font-size: 17px;
        line-height: 1.2;
    }

    .classified-list[data-listing-view="grid"] .listing-card__route,
    .classified-list[data-listing-view="grid"] .listing-card__description,
    .classified-list[data-listing-view="grid"] .listing-card__availability {
        font-size: 12px;
    }

    .classified-list[data-listing-view="grid"] .listing-card__facts {
        gap: 4px;
    }

    .classified-list[data-listing-view="grid"] .listing-card__facts span,
    .classified-list[data-listing-view="grid"] .listing-card__facts strong {
        min-height: 24px;
        padding: 4px 6px;
        font-size: 10px;
    }

    .classified-list[data-listing-view="grid"] .listing-card__description {
        -webkit-line-clamp: 3;
    }

    .classified-list[data-listing-view="grid"] .profile-contact__button {
        min-width: 0;
        min-height: 44px;
        padding: 7px 6px;
        font-size: 11px;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .classified-list[data-listing-view="grid"] .profile-contact__phone-text {
        min-width: 0;
    }

    .classified-list[data-listing-view="grid"] .profile-contact__phone-text small,
    .classified-list[data-listing-view="grid"] .profile-contact__phone-text strong {
        font-size: 11px;
        overflow-wrap: anywhere;
    }

    .classified-list[data-listing-view="grid"] .profile-contact__phone-icon,
    .classified-list[data-listing-view="grid"] .profile-contact__whatsapp-icon {
        flex: 0 0 auto;
        font-size: 20px;
    }
}

@media (max-width: 360px) {
    .classified-list[data-listing-view="grid"] {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Direct requests from the advertiser panel */
.provider-admin-request {
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
    padding: 18px;
    border-left: 5px solid #d83a56;
    background: #fff7f9;
}

.provider-admin-request__heading {
    display: grid;
    gap: 6px;
}

.provider-admin-request__heading h2,
.provider-admin-request__heading p {
    margin: 0;
}

.provider-admin-request__heading h2 {
    font-size: 24px;
    line-height: 1.2;
}

.provider-admin-request__heading > p:last-child {
    color: #665f69;
    line-height: 1.5;
}

.provider-admin-request__form {
    display: grid;
    grid-template-columns: minmax(180px, .45fr) minmax(0, 1.55fr);
    gap: 14px;
    align-items: end;
}

.provider-admin-request__form label {
    min-width: 0;
}

.provider-admin-request__message {
    grid-row: span 2;
}

.provider-admin-request__message textarea {
    min-height: 132px;
    resize: vertical;
}

.provider-admin-request__form .primary-button {
    width: 100%;
    min-height: 48px;
}

@media (max-width: 760px) {
    .provider-admin-request__form {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .provider-admin-request__message {
        grid-row: auto;
    }
}

@media (max-width: 420px) {
    .provider-admin-request {
        padding: 14px;
    }

    .provider-admin-request__heading h2 {
        font-size: 21px;
    }
}

.file-selection-status {
    display: block;
    width: 100%;
    margin-top: 6px;
    color: #5c5460;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.listing-card .profile-contact--whatsapp-only {
    grid-template-columns: minmax(0, 1fr);
}

/* Full-screen public video viewer */
.media-viewer-page {
    min-width: 0;
    min-height: 100vh;
    margin: 0;
    overflow: hidden;
    background: #050505;
    color: #ffffff;
}

.media-viewer {
    position: relative;
    width: 100%;
    min-width: 0;
    height: 100vh;
    height: 100dvh;
    display: grid;
    place-items: center;
    padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    background: #050505;
}

.media-viewer__stage {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    display: grid;
    place-items: center;
}

.media-viewer__video {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
    background: #000000;
}

.media-viewer__close {
    position: fixed;
    z-index: 10;
    top: max(14px, env(safe-area-inset-top));
    right: max(14px, env(safe-area-inset-right));
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    background: rgba(10, 10, 10, .82);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .38);
    color: #ffffff;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
}

.media-viewer__close span {
    transform: translateY(-1px);
}

.media-viewer__close:hover,
.media-viewer__close:focus-visible {
    border-color: #ffffff;
    background: #d83a56;
    color: #ffffff;
}

@media (max-width: 620px) {
    .media-viewer {
        padding: 0;
    }

    .media-viewer__close {
        top: max(10px, env(safe-area-inset-top));
        right: max(10px, env(safe-area-inset-right));
        width: 44px;
        height: 44px;
        font-size: 32px;
    }
}

/* Accessible horizontal navigation on compact screens */
.classified-sidebar nav {
    overscroll-behavior-inline: contain;
    scrollbar-color: #d83a56 #e6e9ed;
    scrollbar-width: auto;
    -webkit-overflow-scrolling: touch;
}

.classified-sidebar nav::-webkit-scrollbar {
    height: 11px;
}

.classified-sidebar nav::-webkit-scrollbar-track {
    background: #e6e9ed;
}

.classified-sidebar nav::-webkit-scrollbar-thumb {
    border: 2px solid #e6e9ed;
    border-radius: 8px;
    background: #d83a56;
}

.classified-sidebar nav:focus-visible {
    outline: 3px solid rgba(216, 58, 86, .35);
    outline-offset: 3px;
}

/* Precision responsive sizing */
.public-site-header > *,
.classified-topbar__inner > *,
.classified-brandbar__inner > *,
.classified-shell > *,
.classified-content > *,
.public-page > *,
.form-panel > *,
.message-panel > *,
.directory-search > *,
.classified-list__heading > *,
.profile-detail__content > *,
.stack-form > *,
.provider-profile-actions > *,
.provider-history > *,
.provider-request-card > *,
fieldset {
    min-width: 0;
}

.classified-publish,
.directory-search__submit,
.classified-banner__copy a,
.classified-offer a,
.classified-inline-button,
.primary-button,
.access-option__action,
.profile-contact__button,
.listing-view-toggle button,
.provider-action-button,
.provider-delete-button {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
}

.provider-history__heading h2 {
    font-size: 34px;
}

.public-page input[type="file"] {
    max-width: 100%;
    min-height: 50px;
    padding: 5px 7px;
    overflow: hidden;
    font-size: 14px;
}

.public-page input[type="file"]::file-selector-button {
    min-height: 38px;
    max-width: 100%;
    margin-right: 8px;
    padding: 7px 10px;
    border: 1px solid #b7bec9;
    border-radius: 4px;
    background: #f1f3f6;
    color: #252b34;
    font: inherit;
    font-weight: 800;
    white-space: normal;
    cursor: pointer;
}

@media (max-width: 760px) {
    .classified-brandbar__inner {
        gap: 14px;
    }

    .classified-publish {
        min-height: 50px;
        padding: 11px 14px;
    }

    .directory-search__location-row {
        align-items: stretch;
    }

    .directory-search__location-picker[open],
    .directory-search__location-panel {
        width: 100%;
    }

    .classified-list__heading,
    .classified-list__actions,
    .provider-history__heading,
    .provider-profile-actions__heading {
        gap: 14px;
    }

    .provider-history__heading h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .classified-container {
        width: calc(100% - 20px);
    }

    .classified-brandbar__inner {
        min-height: auto;
        padding: 14px 0 16px;
    }

    .classified-logo img {
        max-width: min(76vw, 210px);
        max-height: 92px;
    }

    .classified-publish {
        font-size: 14px;
        line-height: 1.35;
    }

    .classified-titlebar {
        padding: 16px 0 14px;
    }

    .classified-titlebar h1 {
        font-size: 24px;
        overflow-wrap: anywhere;
    }

    .directory-search {
        gap: 16px;
        padding: 14px;
    }

    .directory-search__location-panel {
        gap: 12px;
        padding: 12px;
    }

    .classified-banner__copy,
    .classified-list__heading,
    .listing-card__body,
    .profile-detail__content {
        padding: 16px;
    }

    .classified-banner__copy h2,
    .classified-list__heading h2 {
        font-size: 24px;
        overflow-wrap: anywhere;
    }

    .profile-detail__title {
        grid-template-columns: minmax(0, 1fr);
    }

    .profile-detail__title h2 {
        font-size: 28px;
    }

    .public-page {
        padding: 22px 10px 38px;
    }

    .public-page .form-panel,
    .public-page .message-panel,
    .public-page .access-option {
        padding: 16px;
    }

    .public-page .form-hero {
        padding-inline: 2px;
    }

    .public-page .form-hero h1,
    .public-page .message-panel h1 {
        font-size: 28px;
        line-height: 1.18;
        overflow-wrap: anywhere;
    }

    .public-page .access-option {
        min-height: 0;
    }

    .provider-fieldset,
    .provider-profile-actions,
    .provider-request-card {
        padding: 14px;
    }

    .public-page input,
    .public-page select,
    .public-page textarea {
        padding: 10px;
        font-size: 16px;
    }

    .public-page input[type="file"] {
        padding: 5px;
        font-size: 12px;
    }

    .public-page input[type="file"]::file-selector-button {
        margin-right: 6px;
        padding-inline: 8px;
        font-size: 12px;
    }

    .age-certification__card {
        padding: 34px 14px 26px;
    }

    .age-certification__card h2 {
        font-size: 19px;
    }

    .age-certification__card p {
        margin-bottom: 20px;
        font-size: 17px;
    }

    .age-certification__actions {
        gap: 8px;
    }
}

@media (max-width: 360px) {
    .classified-container {
        width: calc(100% - 16px);
    }

    .directory-search {
        padding: 12px 10px;
    }

    .directory-search__category span {
        min-height: 48px;
        padding: 6px 3px;
    }

    .public-page {
        padding-inline: 8px;
    }

    .public-page .form-panel,
    .public-page .message-panel,
    .public-page .access-option {
        padding: 14px;
    }
}
