@import url("https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;600;700;800&display=swap");

:root {
    --fcd-primary: #0f5c4f;
    --fcd-primary-dark: #0b4a40;
    --fcd-primary-tint: #e8f1ee;
    --fcd-secondary: #2c5f7c;
    --fcd-ink: #1c1c1a;
    --fcd-body: #4a4842;
    --fcd-muted: #78756d;
    --fcd-border: #d8d4cb;
    --fcd-border-light: #e4e0d6;
    --fcd-bg: #f7f5f1;
    --fcd-surface: #fff;
    --fcd-soft: #f0ede6;
    --fcd-warning: #8a5a00;
    --fcd-warning-bg: #fcf3e3;
    --fcd-error: #b3261e;
    --fcd-error-bg: #fbedec;
    --fcd-radius: 12px;
    --fcd-shadow: 0 1px 3px rgba(0, 0, 0, .06);
}

html,
body {
    background: var(--fcd-bg);
}

body {
    color: var(--fcd-body);
    font-family: "Public Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.6;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

a {
    color: var(--fcd-secondary);
}

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

h1,
h2,
h3 {
    color: var(--fcd-ink);
    line-height: 1.2;
}

h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
}

h2,
.h-index {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
}

.screen,
.screen--inner,
#wrapper {
    background: var(--fcd-bg);
}

.container-fluid {
    max-width: 1200px;
}

.fcd-site-header {
    background: var(--fcd-surface);
    border-bottom: 1px solid var(--fcd-border-light);
}

.fcd-site-header__inner {
    align-items: center;
    display: flex;
    gap: 32px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    min-height: 70px;
    padding: 12px 40px;
}

.fcd-brand {
    align-items: center;
    color: var(--fcd-ink);
    display: inline-flex;
    font-size: 19px;
    font-weight: 800;
    gap: 10px;
    min-height: 44px;
    text-decoration: none;
    white-space: nowrap;
}

.fcd-brand__icon {
    align-items: center;
    background: var(--fcd-primary);
    border-radius: 8px;
    display: inline-flex;
    flex: 0 0 34px;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.fcd-brand__icon > span {
    background: #fff;
    border-radius: 50% 50% 50% 0;
    display: block;
    height: 14px;
    position: relative;
    transform: rotate(-45deg);
    width: 14px;
}

.fcd-brand__icon > span::after {
    background: var(--fcd-primary);
    border-radius: 50%;
    content: "";
    height: 5px;
    left: 4.5px;
    position: absolute;
    top: 4.5px;
    width: 5px;
}

.fcd-brand__text span {
    color: var(--fcd-primary);
}

.fcd-site-nav {
    align-items: center;
    display: flex;
}

.fcd-main-menu {
    align-items: center;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.fcd-main-menu li {
    list-style: none;
}

.fcd-main-menu a {
    border-bottom: 2px solid transparent;
    color: var(--fcd-ink);
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    min-height: 44px;
    padding: 4px 2px;
    text-decoration: none;
}

.fcd-main-menu a:hover {
    border-color: var(--fcd-primary);
    color: var(--fcd-primary);
}

.fcd-main-menu .fcd-main-menu__primary {
    background: var(--fcd-primary);
    border: 0;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    padding: 11px 20px;
}

.fcd-main-menu .fcd-main-menu__primary:hover {
    background: var(--fcd-primary-dark);
    color: #fff;
}

.fcd-menu-toggle {
    background: transparent;
    border: 0;
    min-height: 44px;
    min-width: 44px;
}

.button-add-listing,
.button-search,
.button-primary,
.form-easy input[type="submit"],
.form-easy button[type="submit"] {
    background: var(--fcd-primary) !important;
    border: 0 !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    min-height: 48px;
    padding: 12px 22px !important;
    text-decoration: none !important;
}

.button-add-listing:hover,
.button-search:hover,
.button-primary:hover,
.form-easy input[type="submit"]:hover,
.form-easy button[type="submit"]:hover {
    background: var(--fcd-primary-dark) !important;
}

.main-screen {
    background: var(--fcd-primary-tint);
    padding-bottom: 40px;
    padding-top: 52px;
}

.fcd-hero {
    background: var(--fcd-primary-tint);
    border: 1px solid #d8e4e0;
    border-radius: 16px;
    margin: 0 0 28px;
    padding: 54px 24px 36px;
    text-align: center;
}

.fcd-hero__inner {
    margin: 0 auto;
    max-width: 760px;
}

.fcd-hero h1 {
    margin-bottom: 12px;
}

.fcd-hero p {
    color: var(--fcd-body);
    font-size: 18px;
    margin: 0 auto 24px;
    max-width: 620px;
}

.fcd-hero-search {
    background: var(--fcd-surface);
    border: 3px solid var(--fcd-primary);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(15, 92, 79, .12);
    margin: 0 auto;
    max-width: 700px;
    padding: 20px;
    text-align: left;
}

.fcd-hero-search label {
    color: var(--fcd-ink);
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.fcd-hero-search__row {
    display: flex;
    gap: 10px;
}

.fcd-hero-search input {
    border: 2px solid var(--fcd-muted);
    border-radius: 8px;
    flex: 1;
    font-size: 16px;
    min-height: 52px;
    padding: 12px 14px;
}

.fcd-hero-search button {
    background: var(--fcd-primary);
    border: 0;
    border-radius: 8px;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    min-height: 52px;
    padding: 0 24px;
}

.fcd-notice {
    border-radius: 8px;
    margin: 18px auto 0;
    max-width: 700px;
    padding: 14px 18px;
    text-align: left;
}

.fcd-notice--emergency {
    background: var(--fcd-error-bg);
    border: 2px solid var(--fcd-error);
}

.fcd-notice--warning {
    background: var(--fcd-warning-bg);
    border: 2px solid var(--fcd-warning);
}

.fcd-service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 0 0 28px;
}

.fcd-service-pills a {
    background: var(--fcd-primary-tint);
    border: 1px solid var(--fcd-primary);
    border-radius: 999px;
    color: var(--fcd-primary);
    font-size: 14px;
    font-weight: 700;
    min-height: 44px;
    padding: 10px 18px;
    text-decoration: none;
}

.fcd-service-pills a:hover {
    background: var(--fcd-primary);
    color: #fff;
}

.fcd-section {
    background: var(--fcd-surface);
    border: 1px solid var(--fcd-border-light);
    border-radius: var(--fcd-radius);
    box-shadow: var(--fcd-shadow);
    margin: 0 0 28px;
    padding: 28px;
}

.fcd-section__header {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 18px;
}

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

.fcd-steps div {
    border: 1px solid var(--fcd-border-light);
    border-radius: 10px;
    padding: 18px;
}

.fcd-steps span {
    align-items: center;
    background: var(--fcd-primary);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    height: 32px;
    justify-content: center;
    margin-bottom: 10px;
    width: 32px;
}

.fcd-steps strong {
    color: var(--fcd-ink);
    display: block;
}

.fcd-steps p,
.fcd-guide-card p {
    margin: 6px 0 0;
}

.fcd-ad-section {
    margin: 0 0 28px;
    padding: 14px;
    text-align: center;
}

.adslot_1 {
    display: inline-block;
    height: 90px;
    max-width: 100%;
    width: 728px;
}

@media (max-width: 600px) {
    .adslot_1 {
        height: 100px;
        width: 320px;
    }
}

.fcd-state-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(10, minmax(0, 1fr));
}

.fcd-state-grid a {
    border: 1px solid var(--fcd-border-light);
    border-radius: 6px;
    color: var(--fcd-ink);
    font-size: 13px;
    font-weight: 800;
    min-height: 42px;
    padding: 10px 4px;
    text-align: center;
    text-decoration: none;
}

.fcd-state-grid a:hover {
    border-color: var(--fcd-primary);
    color: var(--fcd-primary);
}

.fcd-state-grid--collapsed a:nth-child(n+11) {
    display: none;
}

.fcd-state-toggle {
    background: none;
    border: 0;
    color: var(--fcd-primary);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    margin-top: 12px;
    padding: 0;
}

.fcd-state-toggle:hover {
    text-decoration: underline;
}

.fcd-muted {
    color: var(--fcd-muted);
    font-size: 14px;
}

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

.fcd-guide-card {
    border: 1px solid var(--fcd-border-light);
    border-radius: var(--fcd-radius);
    color: inherit;
    display: block;
    padding: 22px;
    text-decoration: none;
}

.fcd-guide-card:hover {
    border-color: var(--fcd-primary);
    box-shadow: 0 2px 8px rgba(15, 92, 79, .1);
}

.fcd-guide-card span {
    color: var(--fcd-secondary);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.fcd-guide-card strong {
    color: var(--fcd-ink);
    display: block;
    font-size: 19px;
    line-height: 1.3;
}

.fcd-recent-clinics {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fcd-recent-card {
    border: 1px solid var(--fcd-border-light);
    border-radius: var(--fcd-radius);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.fcd-recent-card__top {
    align-items: flex-start;
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.fcd-recent-card h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.fcd-recent-card h3 a {
    color: var(--fcd-ink);
    text-decoration: none;
}

.fcd-recent-card__meta {
    color: var(--fcd-muted);
    font-size: 13.5px;
    margin: 0;
}

.fcd-recent-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fcd-status-pill,
.fcd-chip {
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    padding: 4px 10px;
}

.fcd-status-pill {
    flex: 0 0 auto;
}

.fcd-status-pill--confirmed {
    background: var(--fcd-primary-tint);
    color: var(--fcd-primary);
}

.fcd-status-pill--warning,
.fcd-chip--warning {
    background: var(--fcd-warning-bg);
    color: var(--fcd-warning);
}

.fcd-chip {
    background: var(--fcd-soft);
    color: var(--fcd-body);
}

.fcd-chip--cost {
    background: var(--fcd-warning-bg);
    color: var(--fcd-warning);
}

.fcd-recent-card__button {
    align-items: center;
    background: var(--fcd-primary);
    border-radius: 8px;
    color: #fff;
    display: flex;
    font-size: 15px;
    font-weight: 700;
    justify-content: center;
    margin-top: auto;
    min-height: 44px;
    padding: 12px;
    text-align: center;
    text-decoration: none;
}

.fcd-recent-card__button:hover {
    background: var(--fcd-primary-dark);
    color: #fff;
}

.fcd-clinic-owner {
    align-items: center;
    background: var(--fcd-soft);
    border-radius: var(--fcd-radius);
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    padding: 24px 28px;
}

.fcd-clinic-owner h2 {
    margin: 0;
}

.fcd-clinic-owner p {
    margin: 6px 0 0;
}

.fcd-clinic-owner .fcd-action-row {
    align-items: center;
    gap: 20px;
}

.fcd-text-link {
    color: var(--fcd-secondary);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.fcd-text-link:hover {
    text-decoration: underline;
}

.fcd-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.button-secondary {
    background: #fff !important;
    border: 2px solid var(--fcd-primary) !important;
    border-radius: 8px !important;
    color: var(--fcd-primary) !important;
    display: inline-block;
    font-size: 16px !important;
    font-weight: 700 !important;
    min-height: 48px;
    padding: 10px 20px !important;
    text-decoration: none !important;
}

.fcd-disclaimer {
    color: var(--fcd-muted);
    font-size: 14px;
    margin: 0 0 28px;
}

.fcd-page {
    margin: 0 auto;
    max-width: 960px;
}

.fcd-page--wide {
    max-width: 1180px;
}

.fcd-search-page,
.fcd-search-card {
    background: var(--fcd-surface);
    border: 1px solid var(--fcd-border-light);
    border-radius: var(--fcd-radius);
    box-shadow: var(--fcd-shadow);
}

.fcd-search-page {
    padding: 28px;
}

.fcd-search-page__intro {
    max-width: 720px;
}

.fcd-notice--info {
    background: var(--fcd-primary-tint);
    border: 2px solid var(--fcd-primary);
}

.fcd-search-card {
    display: grid;
    gap: 18px;
    margin-top: 20px;
    padding: 20px;
}

.fcd-results-search {
    background: var(--fcd-surface);
    border: 1px solid var(--fcd-border-light);
    border-radius: var(--fcd-radius);
    box-shadow: var(--fcd-shadow);
    margin-bottom: 18px;
    padding: 20px;
}

.fcd-results-search__form {
    align-items: end;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(240px, 360px) auto 1fr;
}

.fcd-advanced-toggle {
    align-items: center;
    background: transparent;
    border: 2px solid var(--fcd-secondary);
    border-radius: 8px;
    color: var(--fcd-secondary);
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    justify-self: start;
    min-height: 48px;
    padding: 0 18px;
}

.fcd-results-advanced__grid {
    background: var(--fcd-bg);
    border: 1px solid var(--fcd-border-light);
    border-radius: var(--fcd-radius);
    display: grid;
    gap: 12px;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 14px;
}

.fcd-results-advanced__grid[hidden] {
    display: none;
}

.fcd-results-page {
    background: var(--fcd-surface);
    border: 1px solid var(--fcd-border-light);
    border-radius: var(--fcd-radius);
    box-shadow: var(--fcd-shadow);
    padding: 28px;
}

.fcd-results-page .fcd-notice {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

.fcd-results-header {
    align-items: flex-start;
    border-bottom: 1px solid var(--fcd-border-light);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 18px;
}

.fcd-results-header h1 {
    margin: 0 0 8px;
}

.fcd-results-header p {
    margin: 0;
}

.fcd-sort-control {
    align-items: center;
    display: flex;
    gap: 8px;
    white-space: nowrap;
}

.fcd-sort-control span {
    color: var(--fcd-muted);
    font-size: 14px;
    font-weight: 700;
}

.fcd-sort-control select {
    background: #fff;
    border: 1px solid var(--fcd-border);
    border-radius: 8px;
    min-height: 40px;
    padding: 8px 12px;
}

.fcd-results-layout {
    align-items: flex-start;
    display: grid;
    gap: 28px;
    grid-template-columns: 220px minmax(0, 1fr);
}

.fcd-results-filters {
    display: grid;
    gap: 20px;
}

.fcd-results-filters h2,
.fcd-results-filters h3 {
    font-size: 14px;
    margin: 0 0 10px;
}

.fcd-results-filters label {
    align-items: center;
    display: flex;
    font-size: 14px;
    gap: 8px;
    margin-bottom: 8px;
}

.fcd-results-filters input {
    height: 18px;
    width: 18px;
}

.fcd-results-filters p {
    color: var(--fcd-muted);
    font-size: 13px;
    margin: 0;
}

.fcd-results-list {
    min-width: 0;
}

.fcd-result-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.fcd-result-card {
    align-items: center;
    border: 1px solid var(--fcd-border-light);
    border-radius: var(--fcd-radius);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin: 0;
    padding: 18px 20px;
}

.fcd-result-card:hover {
    border-color: var(--fcd-primary);
    box-shadow: 0 2px 8px rgba(15, 92, 79, .08);
}

.fcd-result-card__main {
    flex: 1;
    min-width: 0;
}

.fcd-result-card__title-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 4px;
}

.fcd-result-card h2 {
    font-size: 17px;
    margin: 0;
}

.fcd-result-card h2 a {
    color: var(--fcd-ink);
    text-decoration: none;
}

.fcd-result-card__meta,
.fcd-result-card__excerpt {
    color: var(--fcd-muted);
    font-size: 13.5px;
    margin: 0 0 8px;
}

.fcd-result-card__excerpt {
    color: var(--fcd-body);
    margin: 8px 0 0;
}

.fcd-result-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.fcd-result-card__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.fcd-result-card__actions .button-primary,
.fcd-result-card__actions .button-secondary {
    align-items: center;
    display: inline-flex;
    min-height: 44px;
}

.fcd-results-ad {
    background: #eeebe3;
    border: 1px dashed #b8b3a6;
    border-radius: 8px;
    list-style: none;
    min-height: 114px;
    padding: 10px 16px;
}

.fcd-location-page {
    display: grid;
    gap: 28px;
}

.fcd-location-hero,
.fcd-location-search,
.fcd-location-section {
    background: var(--fcd-surface);
    border: 1px solid var(--fcd-border-light);
    border-radius: var(--fcd-radius);
    box-shadow: var(--fcd-shadow);
    padding: 28px;
}

.fcd-location-hero h1 {
    margin: 0 0 10px;
}

.fcd-location-hero p,
.fcd-location-section p {
    max-width: 780px;
}

.fcd-location-search__form {
    align-items: end;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(240px, 420px) auto;
}

.fcd-location-search label {
    color: var(--fcd-ink);
    font-size: 15px;
    font-weight: 700;
    grid-column: 1 / -1;
}

.fcd-location-search input {
    background: #fff;
    border: 2px solid var(--fcd-primary);
    border-radius: 8px;
    color: var(--fcd-ink);
    font-size: 16px;
    min-height: 48px;
    padding: 12px 14px;
}

.fcd-location-section h2 {
    font-size: 22px;
    margin: 0 0 16px;
}

.fcd-location-clinic-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 0;
}

.fcd-location-clinic-grid .fcd-result-card {
    align-items: stretch;
    flex-direction: column;
}

.fcd-location-clinic-grid .fcd-result-card__actions {
    flex-wrap: wrap;
}

.fcd-location-clinic-grid .fcd-result-card__actions a {
    justify-content: center;
}

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

.fcd-county-grid a {
    align-items: center;
    border: 1px solid var(--fcd-border-light);
    border-radius: 8px;
    color: var(--fcd-ink);
    display: flex;
    font-size: 14px;
    font-weight: 700;
    justify-content: space-between;
    min-height: 46px;
    padding: 12px 14px;
    text-decoration: none;
}

.fcd-county-grid a:hover {
    border-color: var(--fcd-primary);
    color: var(--fcd-primary);
}

.fcd-county-grid--collapsed a:nth-child(n+9) {
    display: none;
}

.fcd-county-grid small {
    color: var(--fcd-muted);
    font-size: 13px;
    font-weight: 600;
}

.fcd-location-alt-link {
    margin: 14px 0 0;
}

.fcd-location-alt-link a {
    color: var(--fcd-secondary);
    font-size: 14px;
    font-weight: 700;
}

.fcd-city-pills,
.fcd-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fcd-city-pills a {
    background: var(--fcd-primary-tint);
    border: 1px solid var(--fcd-primary);
    border-radius: 999px;
    color: var(--fcd-primary);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 18px;
    text-decoration: none;
}

.fcd-city-pills span {
    color: var(--fcd-muted);
}

.fcd-service-tags span {
    background: var(--fcd-soft);
    border-radius: 999px;
    color: var(--fcd-body);
    font-size: 13.5px;
    font-weight: 700;
    padding: 8px 16px;
}

.fcd-location-disclaimer {
    border-top: 1px solid var(--fcd-border-light);
    color: var(--fcd-muted);
    font-size: 13px;
    margin: 0;
    padding-top: 20px;
}

.fcd-nearby-section {
    background: var(--fcd-bg);
}

.fcd-related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.fcd-related-links a {
    color: var(--fcd-secondary);
    font-size: 14.5px;
    font-weight: 700;
}

.fcd-empty-state {
    background: var(--fcd-bg);
    border: 1px dashed var(--fcd-border);
    border-radius: var(--fcd-radius);
    margin-top: 20px;
    padding: 44px 20px;
    text-align: center;
}

.fcd-empty-state__icon {
    align-items: center;
    background: var(--fcd-border-light);
    border-radius: 50%;
    color: var(--fcd-muted);
    display: inline-flex;
    font-size: 22px;
    height: 48px;
    justify-content: center;
    margin-bottom: 16px;
    width: 48px;
}

.fcd-empty-state .fcd-action-row {
    justify-content: center;
}

.fcd-field {
    display: grid;
    gap: 6px;
}

.fcd-field label {
    color: var(--fcd-ink);
    font-size: 15px;
    font-weight: 700;
}

.fcd-field label span {
    color: var(--fcd-error);
}

.fcd-field input,
.fcd-field select,
.fcd-field textarea {
    background: #fff;
    border: 2px solid var(--fcd-muted);
    border-radius: 8px;
    color: var(--fcd-ink);
    font-size: 16px;
    min-height: 48px;
    padding: 12px 14px;
    width: 100%;
}

.fcd-field textarea {
    min-height: 132px;
}

.fcd-field-error {
    background: var(--fcd-error-bg);
    border: 2px solid var(--fcd-error);
    border-radius: 8px;
    color: var(--fcd-error);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 12px;
}

.fcd-advanced-search {
    border-top: 1px solid var(--fcd-border-light);
    padding-top: 12px;
}

.fcd-advanced-search summary {
    color: var(--fcd-secondary);
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
}

.fcd-form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 16px;
}

.main-screen__header {
    color: var(--fcd-ink);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
}

.main-search {
    background: var(--fcd-surface);
    border: 3px solid var(--fcd-primary);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(15, 92, 79, .12);
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
    padding: 20px;
}

.main-search__fields__col {
    display: flex;
    gap: 10px;
}

.main-search__legend {
    background: var(--fcd-error-bg);
    border: 2px solid var(--fcd-error);
    border-radius: 8px;
    color: var(--fcd-body);
    font-size: 14px;
    line-height: 1.45;
    margin-top: 16px;
    padding: 14px 18px;
}

.benefit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.benefit-list__item__link {
    background: var(--fcd-primary-tint);
    border: 1px solid var(--fcd-primary);
    border-radius: 999px;
    color: var(--fcd-primary);
    font-size: 14px;
    font-weight: 700;
    min-height: 44px;
    padding: 10px 18px;
}

.content {
    padding-bottom: 48px;
    padding-top: 32px;
}

.section,
.content-body__main,
.content-body__aside,
.form-easy,
.update.resource,
#primary,
#secondary {
    background: var(--fcd-surface);
    border: 1px solid var(--fcd-border-light);
    border-radius: var(--fcd-radius);
    box-shadow: var(--fcd-shadow);
}

.section,
.content-body__main,
.content-body__aside,
.form-easy,
.update.resource {
    padding: 24px;
}

.content-body {
    gap: 32px;
}

.breadcrumbs {
    color: var(--fcd-muted);
    font-size: 14px;
}

.breadcrumbs > *:not(:first-child)::before {
    color: var(--fcd-muted);
    content: "›";
    margin: 0 8px 0 4px;
}

.breadcrumbs > li:not(:last-child)::after {
    content: none;
}

.textinput,
.form-easy input,
.form-easy select,
.form-easy textarea,
.fcd-resource-search input {
    background: #fff;
    border: 2px solid var(--fcd-muted);
    border-radius: 8px;
    color: var(--fcd-ink);
    font-size: 16px;
    min-height: 48px;
    padding: 12px 14px;
}

.form-group ul,
.invalid-feedback {
    background: var(--fcd-error-bg);
    border: 2px solid var(--fcd-error);
    border-radius: 8px;
    color: var(--fcd-error);
    font-size: 14px;
    font-weight: 700;
    margin-top: 8px;
    padding: 8px 12px;
}

.clinics-list {
    display: grid;
    gap: 16px;
}

.clinics-list__item {
    background: var(--fcd-surface);
    border: 1px solid var(--fcd-border-light);
    border-radius: var(--fcd-radius);
    box-shadow: var(--fcd-shadow);
    margin: 0;
    padding: 20px;
}

.clinics-list__item__content__name {
    color: var(--fcd-ink);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    text-decoration: none;
}

.clinic-detail-list__item {
    color: var(--fcd-body);
    font-size: 15px;
}

.clinic-detail-list__item strong {
    color: var(--fcd-ink);
}

.fcd-ad-section,
.adsbygoogle,
[id^="ezoic-pub-ad-placeholder"],
#adcontainer1 {
    background: #eeebe3;
    border: 1px dashed #b8b3a6;
    border-radius: 8px;
}

ins.adsbygoogle[data-ad-status="unfilled"] {
    display: none !important;
}

.fcd-ad-section:not(:has(ins.adsbygoogle[data-ad-status="filled"], [id^="ezoic-pub-ad-placeholder"]:not(:empty), #adcontainer1:not(:empty))) {
    display: none;
}

li.fcd-results-ad:has(#adcontainer1:empty) {
    display: none;
}

.fcd-resource-tools {
    background: var(--fcd-primary-tint);
    border: 1px solid #d8e4e0;
    border-radius: var(--fcd-radius);
    display: grid;
    gap: 14px;
    margin: 0 0 20px;
    padding: 16px;
}

.fcd-resource-search {
    display: grid;
    gap: 6px;
}

.fcd-resource-search label {
    color: var(--fcd-ink);
    font-size: 14px;
    font-weight: 700;
}

.fcd-category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fcd-category-pills a {
    background: #fff;
    border: 1px solid var(--fcd-primary);
    border-radius: 999px;
    color: var(--fcd-primary);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 14px;
    text-decoration: none;
}

.fcd-resource-hero,
.fcd-article {
    background: var(--fcd-surface);
    border: 1px solid var(--fcd-border-light);
    border-radius: var(--fcd-radius);
    box-shadow: var(--fcd-shadow);
}

.fcd-resource-hero {
    margin-bottom: 24px;
    padding: 30px;
}

.fcd-resource-hero h1 {
    margin: 0 0 10px;
}

.fcd-resource-hero p {
    max-width: 720px;
}

.fcd-resource-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.fcd-resource-card {
    background: var(--fcd-surface);
    border: 1px solid var(--fcd-border-light);
    border-radius: var(--fcd-radius);
    box-shadow: var(--fcd-shadow);
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 100%;
    padding: 22px;
}

.fcd-resource-card__category {
    color: var(--fcd-secondary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.fcd-resource-card h2 {
    font-size: 20px;
    margin: 0;
}

.fcd-resource-card h2 a {
    color: var(--fcd-ink);
    text-decoration: none;
}

.fcd-resource-card__excerpt {
    color: var(--fcd-body);
    font-size: 15px;
}

.fcd-resource-card__excerpt > :first-child {
    margin-top: 0;
}

.fcd-resource-card__excerpt > :last-child {
    margin-bottom: 0;
}

.fcd-read-link {
    color: var(--fcd-primary);
    font-weight: 800;
    margin-top: auto;
}

.fcd-pagination {
    margin-top: 24px;
}

.fcd-article-page {
    max-width: 900px;
}

.fcd-article {
    padding: 32px;
}

.fcd-article-header {
    border-bottom: 1px solid var(--fcd-border-light);
    margin-bottom: 28px;
    padding-bottom: 24px;
}

.fcd-article-header h1 {
    margin: 8px 0 12px;
}

.fcd-article-header p {
    font-size: 18px;
    margin: 0 0 16px;
}

.fcd-article-meta {
    color: var(--fcd-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    gap: 8px 18px;
}

.fcd-article-meta span + span::before {
    content: "\00b7";
    margin-right: 18px;
}

.fcd-article-layout--with-toc {
    align-items: start;
    display: grid;
    gap: 40px;
    grid-template-columns: 210px minmax(0, 1fr);
}

.fcd-article-toc {
    position: sticky;
    top: 24px;
}

.fcd-article-toc__title {
    color: var(--fcd-ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.fcd-article-toc ul {
    margin: 0;
    padding: 0;
}

.fcd-article-toc li {
    margin-bottom: 10px;
}

.fcd-article-toc a {
    color: var(--fcd-body);
    font-size: 14px;
    text-decoration: none;
}

.fcd-article-toc a:hover {
    color: var(--fcd-secondary);
    text-decoration: underline;
}

.fcd-article-body h2 {
    scroll-margin-top: 24px;
}

@media (max-width: 991px) {
    .fcd-article-layout--with-toc {
        grid-template-columns: 1fr;
    }

    .fcd-article-toc {
        position: static;
    }
}

.fcd-article-image {
    border-radius: var(--fcd-radius);
    height: auto;
    margin: 0 0 24px;
    max-height: 440px;
    object-fit: cover;
    width: 100%;
}

.fcd-article-body {
    color: var(--fcd-body);
    font-size: 17px;
    line-height: 1.75;
}

.fcd-article-body h2,
.fcd-article-body h3 {
    margin-top: 32px;
}

.fcd-article-body blockquote {
    background: var(--fcd-bg);
    border-left: 4px solid var(--fcd-primary);
    margin: 24px 0;
    padding: 16px 20px;
}

.fcd-ad-section--article {
    margin: 32px 0;
    min-height: 114px;
}

.fcd-find-care-callout {
    align-items: center;
    background: var(--fcd-primary-tint);
    border: 2px solid var(--fcd-primary);
    border-radius: var(--fcd-radius);
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 32px;
    padding: 22px;
}

.fcd-find-care-callout h2 {
    font-size: 20px;
    margin: 0 0 4px;
}

.fcd-find-care-callout p {
    margin: 0;
}

.fcd-article-disclaimer {
    border-top: 1px solid var(--fcd-border-light);
    color: var(--fcd-muted);
    font-size: 13px;
    margin-top: 28px;
    padding-top: 20px;
}

.resource-table-wrapper {
    margin: 20px 0;
    overflow-x: auto;
}

.resource-table-wrapper table,
.update.resource table {
    border-collapse: collapse;
    min-width: 640px;
    width: 100%;
}

.resource-table-wrapper th,
.resource-table-wrapper td,
.update.resource th,
.update.resource td {
    border: 1px solid var(--fcd-border);
    padding: 10px 12px;
    text-align: left;
}

.resource-table-wrapper th,
.update.resource th {
    background: var(--fcd-primary-tint);
    color: var(--fcd-ink);
}

.fcd-footer {
    background: var(--fcd-primary);
    color: #fff;
    margin-top: 24px;
    padding: 40px;
}

.fcd-footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin: 0 auto 24px;
    max-width: 1100px;
}

.fcd-footer__brand {
    align-items: flex-start;
    display: inline-flex;
}

.fcd-footer__brand img {
    height: 30px;
    width: auto;
}

.fcd-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 56px;
}

.fcd-footer__nav div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 150px;
}

.fcd-footer__nav h2 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 4px;
}

.fcd-footer__nav a {
    color: #dceae6;
    font-size: 14px;
    line-height: 1.35;
    text-decoration: none;
}

.fcd-footer__nav a:hover {
    text-decoration: underline;
}

.fcd-footer__spacer {
    opacity: 0;
}

.fcd-footer__disclaimer {
    border-top: 1px solid rgba(255, 255, 255, .15);
    color: #b7d6cc;
    font-size: 12.5px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
    padding-top: 16px;
    text-align: center;
}

@media (max-width: 991px) {
    .fcd-site-header__inner {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 16px;
    }

    .fcd-site-nav {
        margin-left: auto;
    }

    .fcd-main-menu {
        background: var(--fcd-surface);
        border-top: 1px solid var(--fcd-border-light);
        display: none;
        flex-basis: 100%;
        flex-direction: column;
        gap: 0;
        left: 0;
        margin-top: 0;
        padding: 8px 16px 16px;
        position: absolute;
        top: 100%;
        width: 100%;
        z-index: 20;
    }

    .fcd-site-header {
        position: relative;
    }

    .fcd-site-nav:has(#hamburger.opened) .fcd-main-menu,
    #hamburger.opened + .fcd-main-menu {
        display: flex;
    }

    .fcd-main-menu a {
        border-bottom: 1px solid var(--fcd-soft);
        justify-content: flex-start;
        min-height: 48px;
        padding: 14px 4px;
        width: 100%;
    }

    .fcd-main-menu .fcd-main-menu__primary {
        border-bottom: 0;
        justify-content: center;
        margin-top: 10px;
        padding: 13px;
    }

    .main-search__fields__col {
        flex-direction: column;
    }

    .fcd-results-header,
    .fcd-find-care-callout {
        align-items: stretch;
        flex-direction: column;
    }

    .fcd-results-search__form,
    .fcd-results-advanced__grid,
    .fcd-results-layout,
    .fcd-location-search__form,
    .fcd-location-clinic-grid,
    .fcd-county-grid {
        grid-template-columns: 1fr;
    }

    .fcd-advanced-toggle {
        justify-content: center;
        justify-self: stretch;
        width: 100%;
    }

    .fcd-results-filters {
        border-bottom: 1px solid var(--fcd-border-light);
        padding-bottom: 18px;
    }

    .fcd-result-card {
        align-items: stretch;
        flex-direction: column;
    }

    .fcd-result-card__actions {
        flex-wrap: wrap;
    }

    .fcd-result-card__actions a {
        justify-content: center;
        flex: 1 1 140px;
    }

    .fcd-resource-hero,
    .fcd-results-page,
    .fcd-article,
    .fcd-location-hero,
    .fcd-location-search,
    .fcd-location-section {
        padding: 20px;
    }

    .fcd-resource-grid {
        grid-template-columns: 1fr;
    }

    .fcd-recent-clinics {
        grid-template-columns: 1fr;
    }

    .fcd-recent-card__top {
        flex-direction: column;
    }

    .fcd-footer {
        padding: 24px 16px;
    }

    .fcd-footer__inner,
    .fcd-footer__nav {
        flex-direction: column;
        gap: 16px;
    }

    .fcd-footer__nav {
        margin-bottom: 16px;
    }

    .fcd-footer__spacer {
        display: none;
    }

    .fcd-footer__disclaimer {
        font-size: 11.5px;
        text-align: left;
    }
}

/* ---- Clinic detail page ---- */

.fcd-detail-header {
    background: var(--fcd-surface);
    border: 1px solid var(--fcd-border-light);
    border-radius: var(--fcd-radius);
    box-shadow: var(--fcd-shadow);
    margin-bottom: 24px;
    padding: 28px;
}

.fcd-detail-header__top {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}

.fcd-detail-header__title {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.fcd-detail-header__title h1 {
    font-size: clamp(24px, 3vw, 32px);
    margin: 0;
}

.fcd-detail-header__title h1.fcd-detail-closed-name {
    color: var(--fcd-muted);
}

.fcd-detail-header__address {
    color: var(--fcd-body);
    font-size: 15px;
    margin-top: 8px;
}

.fcd-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fcd-detail-actions .button-primary,
.fcd-detail-actions .button-secondary {
    align-items: center;
    display: inline-flex;
}

.fcd-detail-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 16px;
}

.fcd-detail-links a {
    color: var(--fcd-secondary);
    font-size: 14px;
    font-weight: 600;
}

.fcd-status-pill--closed {
    background: var(--fcd-error);
    color: #fff;
}

.fcd-detail-layout {
    align-items: flex-start;
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 1fr) 300px;
}

.fcd-detail-main {
    display: grid;
    gap: 32px;
}

.fcd-detail-section h2 {
    font-size: 22px;
    margin: 0 0 12px;
}

.fcd-detail-section--glance h2 {
    color: var(--fcd-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.fcd-glance {
    background: var(--fcd-surface);
    border: 1px solid var(--fcd-border-light);
    border-radius: var(--fcd-radius);
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 22px;
}

.fcd-glance div > span {
    color: var(--fcd-muted);
    display: block;
    font-size: 12.5px;
    margin-bottom: 4px;
}

.fcd-glance div > strong {
    color: var(--fcd-ink);
    font-size: 15px;
    overflow-wrap: anywhere;
}

.fcd-cost-callout {
    align-items: flex-start;
    background: var(--fcd-primary-tint);
    border: 2px solid var(--fcd-primary);
    border-radius: 8px;
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    padding: 14px 18px;
}

.fcd-cost-callout > span {
    align-items: center;
    background: var(--fcd-primary);
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex: none;
    font-size: 14px;
    font-weight: 800;
    height: 24px;
    justify-content: center;
    width: 24px;
}

.fcd-service-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fcd-service-chips span {
    background: var(--fcd-soft);
    border-radius: 100px;
    color: var(--fcd-body);
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 14px;
}

.fcd-hours-card {
    background: var(--fcd-surface);
    border: 1px solid var(--fcd-border-light);
    border-radius: var(--fcd-radius);
    padding: 16px 18px;
}

.fcd-verification-list {
    display: grid;
    gap: 10px;
}

.fcd-verification-list > div {
    display: flex;
    font-size: 14.5px;
    gap: 12px;
}

.fcd-verification-list > div::before {
    color: var(--fcd-primary);
    content: "\2713";
    font-weight: 800;
}

.fcd-review-card,
.fcd-question-card {
    background: var(--fcd-surface);
    border: 1px solid var(--fcd-border-light);
    border-radius: 10px;
    margin-bottom: 14px;
    padding: 16px;
}

.fcd-review-card strong,
.fcd-question-card strong {
    color: var(--fcd-ink);
}

.fcd-attribution {
    color: var(--fcd-muted);
    font-size: 12.5px;
}

.fcd-closed-banner {
    align-items: flex-start;
    background: var(--fcd-error-bg);
    border: 2px solid var(--fcd-error);
    border-radius: 8px;
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    padding: 16px 20px;
}

.fcd-closed-banner > span {
    align-items: center;
    background: var(--fcd-error);
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex: none;
    font-size: 14px;
    font-weight: 800;
    height: 26px;
    justify-content: center;
    width: 26px;
}

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

.fcd-photo-grid img {
    border-radius: 8px;
    height: 110px;
    object-fit: cover;
    width: 100%;
}

.fcd-nearby-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 0;
}

.fcd-detail-sidebar {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 20px;
}

.fcd-sidebar-card {
    background: var(--fcd-surface);
    border: 1px solid var(--fcd-border-light);
    border-radius: 10px;
    padding: 18px;
}

.fcd-sidebar-card h2 {
    font-size: 15px;
    margin: 0 0 10px;
}

.fcd-sidebar-card p {
    font-size: 13.5px;
    margin: 0 0 12px;
}

.fcd-sidebar-card .button-primary,
.fcd-sidebar-card .button-secondary {
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

.fcd-sidebar-card img {
    border-radius: 8px;
    height: auto;
    max-width: 100%;
}

.fcd-map-embed iframe {
    border: 0;
    border-radius: var(--fcd-radius);
    height: 320px;
    width: 100%;
}

.fcd-detail-disclaimer {
    border-top: 1px solid var(--fcd-border-light);
    color: var(--fcd-muted);
    font-size: 13px;
    padding-top: 20px;
}

/* ---- Grouped form pages ---- */

.fcd-form-page {
    margin: 0 auto;
    max-width: 720px;
}

.fcd-form-panel {
    background: var(--fcd-surface);
    border: 1px solid var(--fcd-border-light);
    border-radius: var(--fcd-radius);
    box-shadow: var(--fcd-shadow);
    padding: 28px;
}

.fcd-form-panel form {
    display: grid;
    gap: 32px;
}

.fcd-eyebrow {
    color: var(--fcd-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

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

.fcd-form-section > .fcd-eyebrow {
    margin-bottom: 0;
}

.fcd-field-row {
    display: grid;
    gap: 14px;
    grid-template-columns: 2fr 1fr 1fr;
}

.fcd-field small {
    color: var(--fcd-muted);
    font-size: 13px;
}

.fcd-checkbox-label {
    align-items: flex-start;
    color: var(--fcd-body);
    display: flex;
    font-size: 14px;
    gap: 10px;
}

.fcd-checkbox-label input[type="checkbox"] {
    flex: none;
    height: 18px;
    margin-top: 3px;
    width: 18px;
}

.fcd-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.fcd-success-state {
    background: var(--fcd-surface);
    border: 1px solid var(--fcd-border-light);
    border-radius: var(--fcd-radius);
    padding: 56px 24px;
    text-align: center;
}

.fcd-success-state__icon {
    align-items: center;
    background: var(--fcd-primary-tint);
    border-radius: 50%;
    color: var(--fcd-primary);
    display: inline-flex;
    font-size: 26px;
    height: 56px;
    justify-content: center;
    margin-bottom: 20px;
    width: 56px;
}

/* ---- Policy pages ---- */

.fcd-policy-layout {
    align-items: flex-start;
    display: grid;
    gap: 40px;
    grid-template-columns: 230px minmax(0, 1fr);
}

.fcd-policy-nav {
    position: sticky;
    top: 20px;
}

.fcd-policy-nav nav {
    display: grid;
    gap: 10px;
}

.fcd-policy-nav a {
    color: var(--fcd-body);
    font-size: 14px;
    text-decoration: none;
}

.fcd-policy-nav a:hover {
    color: var(--fcd-primary);
    text-decoration: underline;
}

.fcd-policy-nav a.active {
    color: var(--fcd-primary);
    font-weight: 700;
}

.fcd-policy-body {
    background: var(--fcd-surface);
    border: 1px solid var(--fcd-border-light);
    border-radius: var(--fcd-radius);
    box-shadow: var(--fcd-shadow);
    max-width: 760px;
    padding: 32px;
}

.fcd-policy-body h1 {
    font-size: 30px;
    margin: 0 0 6px;
}

.fcd-policy-body h2,
.fcd-policy-body h3 {
    font-size: 20px;
    margin: 28px 0 10px;
}

.fcd-policy-body p,
.fcd-policy-body li {
    font-size: 16px;
    line-height: 1.75;
}

/* ---- Account pages ---- */

.fcd-auth-card {
    background: var(--fcd-surface);
    border: 1px solid var(--fcd-border-light);
    border-radius: 14px;
    margin: 40px auto;
    max-width: 460px;
    padding: 36px;
}

.fcd-auth-card--wide {
    max-width: 620px;
}

.fcd-auth-card h1 {
    font-size: 22px;
    margin: 0 0 6px;
    text-align: center;
}

.fcd-auth-card > p {
    color: var(--fcd-muted);
    font-size: 14px;
    margin: 0 0 24px;
    text-align: center;
}

.fcd-auth-card form {
    display: grid;
    gap: 16px;
}

.fcd-auth-links {
    font-size: 14px;
    margin-top: 18px;
    text-align: center;
}

.fcd-auth-links p {
    margin: 0 0 10px;
}

/* ---- Error pages ---- */

.fcd-error-card {
    background: var(--fcd-surface);
    border: 1px solid var(--fcd-border-light);
    border-radius: var(--fcd-radius);
    margin: 48px auto;
    max-width: 480px;
    padding: 36px 24px;
    text-align: center;
}

.fcd-error-card h1 {
    font-size: 22px;
    margin: 0 0 8px;
}

.fcd-error-card p {
    color: var(--fcd-muted);
    font-size: 14.5px;
    margin: 0 0 20px;
}

.fcd-error-card .fcd-action-row {
    justify-content: center;
}

.fcd-error-card__icon--error {
    background: var(--fcd-error-bg);
    color: var(--fcd-error);
}

@media (max-width: 991px) {
    .fcd-detail-layout,
    .fcd-glance,
    .fcd-nearby-grid,
    .fcd-field-row,
    .fcd-policy-layout {
        grid-template-columns: 1fr;
    }

    .fcd-glance {
        grid-template-columns: 1fr 1fr;
    }

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

    .fcd-detail-sidebar,
    .fcd-policy-nav {
        position: static;
    }

    .fcd-detail-header {
        padding: 20px;
    }

    .fcd-detail-actions {
        width: 100%;
    }

    .fcd-detail-actions .button-primary,
    .fcd-detail-actions .button-secondary {
        flex: 1 1 120px;
        justify-content: center;
    }

    .fcd-form-panel,
    .fcd-policy-body {
        padding: 20px;
    }

    .fcd-auth-card {
        margin: 20px auto;
        padding: 24px;
    }
}
