﻿/* ===========================================================================
   Frontage demo - base component library.
   Every tenant site is rendered from these components; the entire visual
   identity reduces to the token block below, overridden per tenant in
   wwwroot/demo/frontage/skins/<slug>.css. Zero template edits per skin.
   =========================================================================== */

:root {
    /* Colour tokens */
    --fd-primary: #233044;
    --fd-primary-ink: #ffffff;
    --fd-accent: #b08d3f;
    --fd-accent-soft: #d9c08a;
    --fd-surface: #ffffff;
    --fd-surface-alt: #f4f1ea;
    --fd-text: #20242c;
    --fd-text-muted: #6b7280;
    --fd-line: #e5e3dc;
    --fd-success: #1d7a4f;
    --fd-error: #b3372b;

    /* Type tokens */
    --fd-font-display: Georgia, "Times New Roman", serif;
    --fd-font-body: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --fd-scale: 1.2;
    --fd-heading-weight: 600;
    --fd-heading-spacing: 0;
    --fd-heading-transform: none;

    /* Shape tokens */
    --fd-radius: 6px;
    --fd-radius-lg: 12px;
    --fd-border-w: 1px;

    /* Buttons: solid | outline (skin chooses via these vars) */
    --fd-btn-radius: var(--fd-radius);
    --fd-btn-weight: 600;
    --fd-btn-transform: none;
    --fd-btn-spacing: 0.01em;

    /* Imagery treatment + placeholder media tones */
    --fd-media-a: #2c3a52;
    --fd-media-b: #46586f;

    /* Layout */
    --fd-shell: 1180px;
    --fd-section-pad: 4.5rem;
    --fd-card-pad: 1.25rem;
    --fd-gap: 1.5rem;
}

/* --- Reset-lite ---------------------------------------------------------- */
.fd-site * { box-sizing: border-box; }
body { margin: 0; }
.fd-site {
    font-family: var(--fd-font-body);
    color: var(--fd-text);
    background: var(--fd-surface);
    line-height: 1.6;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
}
.fd-site h1, .fd-site h2, .fd-site h3 {
    font-family: var(--fd-font-display);
    font-weight: var(--fd-heading-weight);
    letter-spacing: var(--fd-heading-spacing);
    text-transform: var(--fd-heading-transform);
    line-height: 1.15;
    margin: 0 0 0.6em;
    color: var(--fd-text);
}
.fd-site h1 { font-size: calc(1.6rem * var(--fd-scale) * var(--fd-scale)); }
.fd-site h2 { font-size: calc(1.25rem * var(--fd-scale) * var(--fd-scale)); }
.fd-site h3 { font-size: calc(1.05rem * var(--fd-scale)); }
.fd-site a { color: inherit; }
.fd-site p { margin: 0 0 1em; }
.fd-shell { max-width: var(--fd-shell); margin: 0 auto; padding: 0 1.25rem; }

/* --- Buttons -------------------------------------------------------------- */
.fd-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: var(--fd-btn-radius);
    border: var(--fd-border-w) solid transparent;
    font-family: var(--fd-font-body);
    font-weight: var(--fd-btn-weight);
    font-size: 0.95rem;
    letter-spacing: var(--fd-btn-spacing);
    text-transform: var(--fd-btn-transform);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    text-align: center;
}
.fd-btn--primary { background: var(--fd-accent); color: #fff; border-color: var(--fd-accent); }
.fd-btn--primary:hover { background: var(--fd-primary); border-color: var(--fd-primary); color: var(--fd-primary-ink); }
.fd-btn--ghost { background: transparent; color: var(--fd-primary); border-color: var(--fd-primary); }
.fd-btn--ghost:hover { background: var(--fd-primary); color: var(--fd-primary-ink); }
.fd-btn--invert { background: #fff; color: var(--fd-primary); border-color: #fff; }
.fd-btn--invert:hover { background: transparent; color: #fff; }
.fd-btn--block { display: block; width: 100%; }

/* ".fd-site a { color: inherit }" outranks the single-class rules above, so
   anchor buttons were inheriting the surrounding section's text colour
   (dark-on-brass in the nav, white-on-white on the navy bands). Re-assert
   button text colours at higher specificity. */
.fd-site a.fd-btn--primary { color: #fff; }
.fd-site a.fd-btn--primary:hover { color: var(--fd-primary-ink); }
.fd-site a.fd-btn--ghost { color: var(--fd-primary); }
.fd-site a.fd-btn--ghost:hover { color: var(--fd-primary-ink); }
.fd-site a.fd-btn--invert { color: var(--fd-primary); }
.fd-site a.fd-btn--invert:hover { color: #fff; }

.fd-link-arrow {
    color: var(--fd-accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
}
.fd-link-arrow:hover { text-decoration: underline; }

/* --- Header --------------------------------------------------------------- */
.fd-header {
    position: sticky;
    top: var(--olxr-frame-h, 0px);
    z-index: 50;
    background: var(--fd-surface);
    border-bottom: var(--fd-border-w) solid var(--fd-line);
}
.fd-header__pre {
    background: var(--fd-primary);
    color: var(--fd-primary-ink);
    font-size: 0.8rem;
    padding: 0.4rem 0;
}
.fd-header__pre-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.fd-header__pre a { color: inherit; text-decoration: none; }
.fd-header__pre a:hover { text-decoration: underline; }
.fd-header__pre-contact { display: flex; gap: 0.5rem; }

.fd-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}
.fd-header__brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1.2; }
.fd-header__brand-name {
    font-family: var(--fd-font-display);
    font-weight: var(--fd-heading-weight);
    letter-spacing: var(--fd-heading-spacing);
    text-transform: var(--fd-heading-transform);
    font-size: 1.45rem;
    color: var(--fd-brand-ink, var(--fd-primary));
    /* Skins can render the wordmark as a solid colour block (set all three vars) */
    background: var(--fd-brand-bg, transparent);
    padding: var(--fd-brand-pad, 0);
    border-radius: var(--fd-radius);
    align-self: flex-start;
}
.fd-header__brand-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--fd-text-muted);
}
.fd-header__nav { display: flex; align-items: center; gap: 1.4rem; }
/* :not(.fd-btn) keeps these link rules off the nav CTA button, which would
   otherwise lose its button padding/colour to this higher-specificity rule */
.fd-header__nav > a:not(.fd-btn) {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--fd-text);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
}
.fd-header__nav > a:not(.fd-btn):hover { color: var(--fd-accent); border-bottom-color: var(--fd-accent); }
.fd-header__cta { margin-left: 0.5rem; padding: 0.55rem 1.2rem; font-size: 0.9rem; }
.fd-header__toggle { display: none; }

/* Minimal nav variant: no pre-bar, lighter chrome */
.fd-header--minimal { border-bottom: none; }
.fd-header--minimal .fd-header__bar { padding-top: 1.2rem; padding-bottom: 1.2rem; }
.fd-header--minimal .fd-header__brand-sub { display: none; }
.fd-header--minimal .fd-header__nav > a:not(.fd-btn) { font-size: 0.9rem; }

@media (max-width: 900px) {
    .fd-header__toggle {
        display: inline-flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: 0;
        padding: 0.5rem;
        cursor: pointer;
    }
    .fd-header__toggle span { width: 22px; height: 2px; background: var(--fd-primary); transition: transform 0.2s; }
    .fd-header__nav {
        display: none;
        position: absolute;
        left: 0; right: 0;
        top: 100%;
        background: var(--fd-surface);
        border-bottom: var(--fd-border-w) solid var(--fd-line);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.25rem 1.25rem;
        gap: 0.9rem;
    }
    .fd-header__nav.is-open { display: flex; }
    .fd-header__cta { margin-left: 0; }
}

/* --- Media placeholders (photography slots) ------------------------------- */
.fd-media {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--fd-media-a), var(--fd-media-b));
    display: flex;
    align-items: center;
    justify-content: center;
}
.fd-media__slot {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    padding: 0 1rem;
}
.fd-media__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fd-media__type {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
}
/* Tone variations so a grid of placeholders doesn't read as a single block */
.fd-media--t1 { filter: none; }
.fd-media--t2 { filter: hue-rotate(12deg) brightness(1.06); }
.fd-media--t3 { filter: hue-rotate(-14deg) brightness(0.94); }
.fd-media--t4 { filter: hue-rotate(24deg) brightness(1.12) saturate(0.9); }
.fd-media--t5 { filter: hue-rotate(-26deg) brightness(0.88) saturate(1.1); }
.fd-media--t6 { filter: brightness(1.18) saturate(0.8); }

/* --- Hero ------------------------------------------------------------------ */
.fd-hero { position: relative; color: #fff; }
.fd-hero__media { position: absolute; inset: 0; }
.fd-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 16, 28, 0.45), rgba(10, 16, 28, 0.72));
}
.fd-hero__inner { position: relative; z-index: 1; padding-top: 5rem; padding-bottom: 5rem; }
.fd-hero__copy { max-width: 640px; margin-bottom: 2.25rem; }
.fd-hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--fd-accent-soft);
    margin-bottom: 0.9rem;
}
/* .fd-site prefix needed: the global ".fd-site h1" colour rule outranks a lone class */
.fd-site .fd-hero__title { color: #fff; font-size: calc(1.8rem * var(--fd-scale) * var(--fd-scale)); margin-bottom: 0.5em; }
.fd-hero__sub { color: rgba(255, 255, 255, 0.82); font-size: 1.05rem; }

/* Image-full hero: taller, more cinematic - photo above the copy as well */
.fd-hero--full .fd-hero__inner { padding-top: 8rem; }

/* Image-full hero: centre the copy so it sits on the same axis as the
   floating search card beneath it */
.fd-hero--full .fd-hero__copy {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 720px;
}

.fd-hero--split .fd-hero__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.fd-hero--split .fd-hero__copy { margin-bottom: 0; }
.fd-hero--minimal .fd-hero__inner { padding-top: 2.75rem; padding-bottom: 2.75rem; }
.fd-hero--minimal .fd-hero__copy { margin-bottom: 1.5rem; }
.fd-hero--minimal .fd-hero__title { font-size: calc(1.4rem * var(--fd-scale) * var(--fd-scale)); }

/* --- Hero search ------------------------------------------------------------ */
.fd-search {
    background: var(--fd-surface);
    color: var(--fd-text);
    border-radius: var(--fd-radius-lg);
    box-shadow: 0 18px 50px rgba(8, 12, 22, 0.28);
    overflow: hidden;
    max-width: 980px;
}
/* Search page variant: full width, softer chrome (the hero keeps the compact card) */
.fd-search--full { max-width: none; box-shadow: none; border: var(--fd-border-w) solid var(--fd-line); }
/* Hero variant: compact centred card that straddles the hero's bottom edge,
   carrying the eye into the section beneath. The card hangs 70px out of the
   hero (negative margin); the following section compensates so nothing
   overlaps its content. Positioned + z-index so the next section's
   background paints behind the hanging half. */
.fd-search--hero {
    max-width: 860px;
    margin: 2rem auto 0;
    position: relative;
    z-index: 5;
    box-shadow: 0 24px 60px rgba(8, 12, 22, 0.35);
}

/* IMAGE-FULL hero only: the card straddles the hero's bottom edge. The
   photo band between strapline and card matches the hero's top padding,
   vertically centring the copy; the -96px hang puts the photo edge just
   beneath the card's tab strip. display: flow-root stops the negative
   margin collapsing through the hero's edge (measured hang was 0px
   without it). */
.fd-hero--full .fd-search--hero { margin: 7.5rem auto -96px; }
.fd-hero--full.fd-hero--has-search .fd-hero__inner { padding-bottom: 0; display: flow-root; }
.fd-hero--full.fd-hero--has-search + .fd-section { padding-top: calc(var(--fd-section-pad) + 96px); }
.fd-hero--full.fd-hero--has-search + .fd-band { padding-top: calc(3.25rem + 96px); }
@media (max-width: 900px) {
    /* the stacked two-column form roughly doubles the card height */
    .fd-hero--full .fd-search--hero { margin-bottom: -200px; }
    .fd-hero--full.fd-hero--has-search + .fd-section { padding-top: calc(var(--fd-section-pad) + 200px); }
    .fd-hero--full.fd-hero--has-search + .fd-band { padding-top: calc(3.25rem + 200px); }
}

/* SPLIT hero (e.g. Mews): copy and search sit side by side; the card fills
   its grid column and the form drops to two columns to fit. */
.fd-hero--split .fd-search--hero { margin: 0; max-width: none; }
.fd-hero--split .fd-search__form { grid-template-columns: 1fr 1fr; }
.fd-hero--split .fd-search__submit { grid-column: 1 / -1; }

/* MINIMAL-BAR hero (e.g. Letterbox): compact banner, centred copy, search
   directly beneath at full shell width - no straddle. */
.fd-hero--minimal .fd-search--hero { margin: 1.5rem auto 0; max-width: none; }
.fd-hero--minimal .fd-hero__copy { text-align: center; margin-left: auto; margin-right: auto; }
.fd-search__tabs { display: flex; border-bottom: var(--fd-border-w) solid var(--fd-line); }
.fd-search__tab {
    flex: 0 0 auto;
    padding: 0.8rem 1.75rem;
    background: none;
    border: 0;
    border-bottom: 3px solid transparent;
    font-family: var(--fd-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--fd-text-muted);
    cursor: pointer;
}
.fd-search__tab.is-active { color: var(--fd-primary); border-bottom-color: var(--fd-accent); }
.fd-search__form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 0.9rem;
    padding: 1.1rem 1.25rem 1.25rem;
    align-items: end;
}
/* min-width: 0 lets grid columns shrink below the selects' intrinsic width -
   without it the form overflows narrow viewports */
.fd-search__field { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.78rem; font-weight: 600; color: var(--fd-text-muted); min-width: 0; }
.fd-search__field select {
    width: 100%;
    font-family: var(--fd-font-body);
    font-size: 0.92rem;
    color: var(--fd-text);
    padding: 0.55rem 0.6rem;
    border: var(--fd-border-w) solid var(--fd-line);
    border-radius: var(--fd-radius);
    background: var(--fd-surface);
}
.fd-search__submit { align-self: end; }
.fd-search__more {
    grid-column: 1 / -1;
    justify-self: start;
    background: none;
    border: 0;
    padding: 0;
    font-family: var(--fd-font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--fd-accent);
    cursor: pointer;
}
.fd-search__more:hover { text-decoration: underline; }
.fd-search__more[aria-expanded="true"] span { display: inline-block; transform: rotate(180deg); }
.fd-search__extra {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    padding-top: 0.25rem;
    border-top: 1px dashed var(--fd-line);
}
/* display:flex above would defeat the hidden attribute (author CSS outranks
   the UA [hidden] rule) - re-assert it so the panel really collapses */
.fd-search__extra[hidden] { display: none; }
.fd-search__extra label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    color: var(--fd-text);
    font-weight: 500;
}
@media (max-width: 900px) {
    .fd-search__form { grid-template-columns: 1fr 1fr; }
    .fd-search__submit { grid-column: 1 / -1; }
}

/* --- Sections / grids -------------------------------------------------------- */
.fd-section { padding: var(--fd-section-pad) 0; }
.fd-section--alt { background: var(--fd-surface-alt); }
.fd-section--tight { padding: 1.75rem 0; }
.fd-section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}
.fd-section__head h2 { margin-bottom: 0; }
.fd-grid { display: grid; gap: var(--fd-gap); }
.fd-grid--2 { grid-template-columns: repeat(2, 1fr); }
.fd-grid--3 { grid-template-columns: repeat(3, 1fr); }
.fd-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) {
    .fd-grid--3, .fd-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .fd-grid--2, .fd-grid--3, .fd-grid--4 { grid-template-columns: 1fr; }
}

/* --- Listing card ------------------------------------------------------------- */
.fd-card {
    display: flex;
    flex-direction: column;
    background: var(--fd-surface);
    border: var(--fd-border-w) solid var(--fd-line);
    border-radius: var(--fd-radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.fd-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(15, 20, 30, 0.12); }
.fd-card__media { aspect-ratio: 4 / 3; }
.fd-card__banner {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: var(--fd-primary);
    color: var(--fd-primary-ink);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
}
.fd-card__banner--featured { background: var(--fd-accent); bottom: auto; left: auto; top: 0.75rem; right: 0.75rem; }
.fd-card__banner--open { background: var(--fd-success); }

.fd-openhouse {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 1.25rem;
    padding: 0.9rem 1.1rem;
    border: var(--fd-border-w) solid var(--fd-success);
    border-radius: var(--fd-radius-lg);
    background: #f0f7f2;
    font-size: 0.92rem;
}
.fd-openhouse__badge {
    flex: 0 0 auto;
    background: var(--fd-success);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
}
.fd-card--under-offer .fd-card__media { opacity: 0.82; }
.fd-card__body { padding: var(--fd-card-pad); display: flex; flex-direction: column; gap: 0.35rem; }
.fd-card__price { font-family: var(--fd-font-display); font-weight: var(--fd-heading-weight); font-size: 1.3rem; color: var(--fd-primary); margin: 0; }
.fd-card__price-prefix { display: block; font-family: var(--fd-font-body); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fd-text-muted); }
.fd-card__available { display: block; font-family: var(--fd-font-body); font-size: 0.78rem; font-weight: 600; color: var(--fd-success); }
.fd-card__address { font-weight: 600; margin: 0; }
.fd-card__summary { font-size: 0.9rem; color: var(--fd-text-muted); margin: 0; }
.fd-card__meta { display: flex; align-items: center; gap: 0.9rem; font-size: 0.82rem; color: var(--fd-text-muted); margin: 0.35rem 0 0; }
.fd-card__type { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fd-text-muted); margin: 0.3rem 0 0; }
.fd-card__meta-item { display: inline-flex; align-items: center; gap: 0.32rem; font-weight: 600; }
.fd-card__meta-item svg { width: 17px; height: 17px; opacity: 0.75; }

/* Compact density variant */
[data-density="compact"] .fd-card__body { padding: 0.9rem; gap: 0.25rem; }
[data-density="compact"] .fd-card__summary { display: none; }

/* --- Bands ---------------------------------------------------------------------- */
.fd-band { padding: 3.25rem 0; }
.fd-band--valuation { background: var(--fd-primary); color: var(--fd-primary-ink); }
.fd-band--valuation h2 { color: var(--fd-primary-ink); }
.fd-band--valuation p { color: rgba(255, 255, 255, 0.8); margin: 0; }
.fd-band--alerts { background: var(--fd-surface-alt); border-top: var(--fd-border-w) solid var(--fd-line); border-bottom: var(--fd-border-w) solid var(--fd-line); }
.fd-band--alerts h2 { margin-bottom: 0.3em; }
.fd-band--alerts p { color: var(--fd-text-muted); margin: 0; }
.fd-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.fd-band__inner > div { max-width: 640px; }

/* --- Area / news / team cards ------------------------------------------------------ */
.fd-area-card { text-decoration: none; display: block; }
.fd-area-card__media { aspect-ratio: 16 / 10; border-radius: var(--fd-radius-lg); margin-bottom: 0.7rem; }
.fd-area-card__name { font-family: var(--fd-font-display); font-weight: var(--fd-heading-weight); font-size: 1.15rem; color: var(--fd-primary); margin: 0 0 0.15rem; }
.fd-area-card__strap { font-size: 0.88rem; color: var(--fd-text-muted); margin: 0; }
.fd-area-card--wide { display: grid; grid-template-columns: 240px 1fr; gap: 1.25rem; align-items: center; background: var(--fd-surface); border: var(--fd-border-w) solid var(--fd-line); border-radius: var(--fd-radius-lg); padding: 1rem; }
.fd-area-card--wide .fd-area-card__media { margin-bottom: 0; }
.fd-area-card__price { font-size: 0.85rem; font-weight: 600; color: var(--fd-accent); margin: 0.4rem 0; }
@media (max-width: 640px) {
    .fd-area-card--wide { grid-template-columns: 1fr; }
}

.fd-news-card {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: var(--fd-surface);
    border: var(--fd-border-w) solid var(--fd-line);
    border-radius: var(--fd-radius-lg);
    padding: 1.4rem;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.fd-news-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(15, 20, 30, 0.1); }
.fd-news-card__date { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fd-text-muted); margin: 0; }
.fd-news-card__title { font-family: var(--fd-font-display); font-weight: var(--fd-heading-weight); font-size: 1.15rem; color: var(--fd-primary); margin: 0; line-height: 1.3; }
.fd-news-card__excerpt { font-size: 0.9rem; color: var(--fd-text-muted); margin: 0 0 0.4rem; }

.fd-team-card {
    background: var(--fd-surface);
    border: var(--fd-border-w) solid var(--fd-line);
    border-radius: var(--fd-radius-lg);
    padding: 1.5rem;
    text-align: center;
}
.fd-team-card__photo {
    width: 170px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--fd-radius-lg);
    margin-bottom: 0.9rem;
}
.fd-team-card__avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fd-media-a), var(--fd-media-b));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd-font-display);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}
.fd-team-card__name { font-weight: 700; margin: 0; }
.fd-team-card__role { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fd-accent); margin: 0.15rem 0 0.6rem; }
.fd-team-card__bio { font-size: 0.88rem; color: var(--fd-text-muted); }
.fd-team-card__contact { font-size: 0.85rem; margin: 0; }
.fd-team-card__contact a { color: var(--fd-primary); text-decoration: none; }
.fd-team-card__contact a:hover { text-decoration: underline; }

/* --- Why-us / stats ------------------------------------------------------------------ */
.fd-why { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.fd-why__stats { display: grid; grid-template-columns: 1fr 1fr; gap: var(--fd-gap); }
.fd-stat {
    background: var(--fd-surface-alt);
    border-radius: var(--fd-radius-lg);
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
}
.fd-stat__value { font-family: var(--fd-font-display); font-size: 2.1rem; font-weight: var(--fd-heading-weight); color: var(--fd-primary); line-height: 1.1; }
.fd-stat__label { font-size: 0.82rem; color: var(--fd-text-muted); }
@media (max-width: 900px) {
    .fd-why { grid-template-columns: 1fr; }
}

/* --- Page head / breadcrumb / prose --------------------------------------------------- */
.fd-page-head { background: var(--fd-primary); color: var(--fd-primary-ink); padding: 3rem 0 2.5rem; }
.fd-page-head h1 { color: var(--fd-primary-ink); margin-bottom: 0.25em; }
.fd-page-head__sub { color: rgba(255, 255, 255, 0.78); max-width: 720px; margin: 0; }
.fd-page-head .fd-breadcrumb { margin-bottom: 1rem; }
.fd-page-head .fd-breadcrumb a, .fd-page-head .fd-breadcrumb span { color: rgba(255, 255, 255, 0.7); }
.fd-breadcrumb { font-size: 0.8rem; display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.25rem; color: var(--fd-text-muted); }
.fd-breadcrumb a { color: var(--fd-text-muted); text-decoration: none; }
.fd-breadcrumb a:hover { text-decoration: underline; }
.fd-prose { max-width: 860px; font-size: 1.02rem; }
.fd-prose--narrow { max-width: 720px; }

/* --- Property page --------------------------------------------------------------------- */
.fd-gallery { margin-bottom: 2rem; }
.fd-gallery__main { aspect-ratio: 16 / 8; border-radius: var(--fd-radius-lg); }
.fd-gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; margin-top: 0.6rem; }
.fd-gallery__thumb { aspect-ratio: 4 / 3; border: 2px solid transparent; border-radius: var(--fd-radius); cursor: pointer; padding: 0; }
.fd-gallery__thumb.is-active { border-color: var(--fd-accent); }

.fd-property { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
.fd-property__head { display: flex; justify-content: space-between; gap: 2rem; align-items: flex-start; flex-wrap: wrap; }
.fd-property__head h1 { margin-bottom: 0.1em; }
.fd-property__area { color: var(--fd-text-muted); margin: 0; }
.fd-property__price { font-family: var(--fd-font-display); font-size: 1.8rem; font-weight: var(--fd-heading-weight); color: var(--fd-primary); margin: 0; text-align: right; }
.fd-property__price-prefix { display: block; font-family: var(--fd-font-body); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fd-text-muted); }
.fd-property__available { display: block; font-family: var(--fd-font-body); font-size: 0.85rem; font-weight: 600; color: var(--fd-success); }
.fd-property__desc, .fd-property__keyfacts { margin-top: 2rem; }
.fd-property__keyfacts ul { columns: 2; gap: 2rem; padding-left: 1.1rem; margin: 0; }
.fd-property__keyfacts li { margin-bottom: 0.4rem; font-size: 0.95rem; }
@media (max-width: 1000px) {
    .fd-property { grid-template-columns: 1fr; }
    .fd-property__price { text-align: left; }
    .fd-property__keyfacts ul { columns: 1; }
}

.fd-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 2rem;
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 1rem 1.25rem;
    background: var(--fd-surface-alt);
    border-radius: var(--fd-radius-lg);
    font-size: 0.95rem;
}

/* --- Floorplan + EPC cards ----------------------------------------------- */
.fd-property__docs { margin-top: 2rem; align-items: start; }
.fd-panel__share-title { font-size: 1rem !important; margin-bottom: 0.8rem; }
.fd-share { display: flex; gap: 0.6rem; margin-bottom: 1rem; }
.fd-share__btn {
    width: 40px;
    height: 40px;
    background: var(--fd-primary);
    border: var(--fd-border-w) solid var(--fd-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
/* .fd-site prefix: the ".fd-site a { color: inherit }" rule outranks a lone class */
.fd-site a.fd-share__btn { color: var(--fd-primary-ink); }
.fd-share__btn:hover { background: var(--fd-accent); border-color: var(--fd-accent); }
.fd-site a.fd-share__btn:hover { color: #fff; }
.fd-doc-card {
    border: var(--fd-border-w) solid var(--fd-line);
    border-radius: var(--fd-radius-lg);
    padding: 1.25rem;
    background: var(--fd-surface);
}
.fd-doc-card__title { font-size: 1.05rem !important; margin-bottom: 0.9rem; }
.fd-doc-card__plan { width: 100%; height: auto; display: block; }

.fd-epc { display: flex; flex-direction: column; gap: 4px; }
.fd-epc__row { display: flex; align-items: center; gap: 8px; }
.fd-epc__band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.28rem 0.55rem;
    border-radius: 2px;
    min-width: 70px;
}
.fd-epc__band .fd-epc__range { font-weight: 600; font-size: 0.68rem; opacity: 0.9; }
.fd-epc__row:nth-child(4) .fd-epc__band { color: #4a4a00; } /* D band: dark text on yellow */
.fd-epc__marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    padding: 0.28rem 0.5rem;
    border-radius: 2px;
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    position: relative;
}
.fd-epc__marker::before {
    content: "";
    position: absolute;
    left: -6px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid currentColor;
    color: inherit;
    filter: brightness(1);
}
.fd-epc__row:nth-child(4) .fd-epc__marker { color: #4a4a00; }
.fd-epc__exempt { font-size: 0.9rem; color: var(--fd-text-muted); margin: 0; }

.fd-doc-slot, .fd-map-slot {
    border: 2px dashed var(--fd-line);
    border-radius: var(--fd-radius-lg);
    padding: 2.25rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 2rem;
}
.fd-doc-slot__label { font-weight: 700; color: var(--fd-primary); }
.fd-doc-slot__hint { font-size: 0.82rem; color: var(--fd-text-muted); }

/* --- Panels & forms ---------------------------------------------------------------------- */
.fd-panel {
    background: var(--fd-surface);
    border: var(--fd-border-w) solid var(--fd-line);
    border-radius: var(--fd-radius-lg);
    padding: 1.6rem;
    margin-bottom: 1.25rem;
}
.fd-panel--muted { background: var(--fd-surface-alt); }
.fd-panel--instant { border-color: var(--fd-accent); }
.fd-panel__eyebrow { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fd-accent); margin: 0 0 0.4rem; }
.fd-panel__sub { color: var(--fd-text-muted); font-size: 0.9rem; margin-top: -0.4rem; }
.fd-panel__agent { display: flex; align-items: center; gap: 0.8rem; margin: 0.25rem 0 0.9rem; }
.fd-panel__agent-photo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; object-position: top; flex: 0 0 auto; }
.fd-panel__agent-name { font-weight: 700; margin: 0; }
.fd-panel__agent-role { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--fd-accent); margin: 0.1rem 0 0; }
.fd-panel__contact { font-size: 0.95rem; }
.fd-panel__contact a { color: var(--fd-primary); text-decoration: none; font-weight: 600; }
.fd-panel__price { font-weight: 700; color: var(--fd-primary); margin-bottom: 0; }

.fd-form { display: flex; flex-direction: column; gap: 0.9rem; }
.fd-form label { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.82rem; font-weight: 600; color: var(--fd-text-muted); }
.fd-form input, .fd-form textarea, .fd-form select {
    font-family: var(--fd-font-body);
    font-size: 0.95rem;
    color: var(--fd-text);
    padding: 0.6rem 0.7rem;
    border: var(--fd-border-w) solid var(--fd-line);
    border-radius: var(--fd-radius);
    background: var(--fd-surface);
}
.fd-form input:focus, .fd-form textarea:focus, .fd-form select:focus { outline: 2px solid var(--fd-accent); outline-offset: 1px; }
.fd-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.fd-form__radios, .fd-form__checks { border: 0; padding: 0; margin: 0; display: flex; gap: 1.2rem; flex-wrap: wrap; }
.fd-form__radios label, .fd-form__checks label { flex-direction: row; align-items: center; gap: 0.45rem; font-weight: 500; color: var(--fd-text); font-size: 0.92rem; }
.fd-form__checks { flex-direction: column; gap: 0.5rem; }
.fd-form__checks legend { font-size: 0.82rem; font-weight: 600; color: var(--fd-text-muted); margin-bottom: 0.4rem; }
@media (max-width: 640px) {
    .fd-form__row { grid-template-columns: 1fr; }
}

.fd-form-success {
    background: #f0f7f2;
    border: var(--fd-border-w) solid var(--fd-success);
    border-radius: var(--fd-radius-lg);
    padding: 1.2rem 1.4rem;
    font-size: 0.92rem;
}
.fd-form-success p { margin: 0 0 0.5em; }
.fd-form-success p:last-child { margin-bottom: 0; }

.fd-ticks { list-style: none; padding: 0; margin: 0; }
.fd-ticks li { padding-left: 1.5rem; position: relative; margin-bottom: 0.55rem; font-size: 0.92rem; }
.fd-ticks li::before { content: "\2713"; position: absolute; left: 0; color: var(--fd-success); font-weight: 700; }

.fd-hours { list-style: none; padding: 0; margin: 0; font-size: 0.92rem; }
.fd-hours li { padding: 0.3rem 0; border-bottom: 1px dashed var(--fd-line); }
.fd-hours li:last-child { border-bottom: 0; }

/* --- Page-level two-column layouts ----------------------------------------------------------- */
.fd-valuation, .fd-register, .fd-contact, .fd-area-detail { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: start; }
@media (max-width: 900px) {
    .fd-valuation, .fd-register, .fd-contact, .fd-area-detail { grid-template-columns: 1fr; }
}

.fd-empty { text-align: center; max-width: 560px; margin: 2rem auto; }

/* --- Search results bar + pagination --------------------------------------------- */
.fd-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    font-size: 0.88rem;
    color: var(--fd-text-muted);
}
.fd-results-bar__controls { display: inline-flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.fd-results-bar__size { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 500; }
.fd-results-bar__size select {
    font-family: var(--fd-font-body);
    font-size: 0.88rem;
    color: var(--fd-text);
    padding: 0.3rem 0.5rem;
    border: var(--fd-border-w) solid var(--fd-line);
    border-radius: var(--fd-radius);
    background: var(--fd-surface);
}
.fd-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 2.25rem;
}
.fd-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    padding: 0.45rem 0.75rem;
    border: var(--fd-border-w) solid var(--fd-line);
    border-radius: var(--fd-radius);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fd-text);
    background: var(--fd-surface);
}
.fd-pagination__link:hover { border-color: var(--fd-accent); color: var(--fd-accent); }
.fd-pagination__link.is-current { background: var(--fd-primary); border-color: var(--fd-primary); color: var(--fd-primary-ink); }

/* --- Footer ------------------------------------------------------------------------------------ */
.fd-footer { background: var(--fd-footer-bg, var(--fd-primary)); color: var(--fd-primary-ink); padding: 3.5rem 0 1.5rem; margin-top: 0; }
.fd-footer a { color: var(--fd-primary-ink); }
.fd-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.fd-footer__brand { font-family: var(--fd-font-display); font-weight: var(--fd-heading-weight); font-size: 1.4rem; margin: 0 0 0.3rem; }
.fd-footer__strap { color: rgba(255, 255, 255, 0.72); font-size: 0.92rem; margin: 0 0 0.3rem; }
.fd-footer__est { color: var(--fd-footer-est, var(--fd-accent-soft)); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }
.fd-footer__heading { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.55); margin: 0 0 0.7rem; }
.fd-footer__links { list-style: none; padding: 0; margin: 0; }
.fd-footer__links li { margin-bottom: 0.45rem; }
.fd-footer__links a { text-decoration: none; font-size: 0.92rem; color: rgba(255, 255, 255, 0.85); }
.fd-footer__links a:hover { color: #fff; text-decoration: underline; }
.fd-footer p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.85); }
.fd-footer__social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.fd-footer__social a {
    width: 32px; height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
}
.fd-footer__base {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.4rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}
.fd-footer__demo-badge a { color: var(--fd-footer-est, var(--fd-accent-soft)); }
@media (max-width: 900px) {
    .fd-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .fd-footer__grid { grid-template-columns: 1fr; }
}


/* === PhotoBanner homepage composition (config: HeroVariant.PhotoBanner) ===
   Bolder, brand-heavy layout: uppercase hero over a full photo, a solid
   accent-coloured search band with attached primary search block, featured
   listings beside an intro column, an icon CTA panel over a photo band,
   and testimonials. */

.fd-hero--banner .fd-hero__inner { padding-top: 7.5rem; }
.fd-hero--banner .fd-hero__copy { text-align: center; margin: 0 auto; max-width: 780px; }
.fd-site .fd-hero--banner .fd-hero__title { color: #fff; text-transform: uppercase; letter-spacing: 0.05em; }
.fd-hero--banner .fd-hero__eyebrow { color: var(--fd-accent-soft); }

/* straddle, like the image-full hero but shallower */
.fd-hero--banner .fd-search--hero { margin: 5.5rem auto -56px; max-width: 1020px; position: relative; }
.fd-hero--banner.fd-hero--has-search .fd-hero__inner { padding-bottom: 0; display: flow-root; }
.fd-hero--banner.fd-hero--has-search + .fd-section { padding-top: calc(var(--fd-section-pad) + 56px); }
.fd-hero--banner.fd-hero--has-search + .fd-band { padding-top: calc(3.25rem + 56px); }

/* the solid accent search band with tabs perched on top */
.fd-hero--banner .fd-search { background: var(--fd-accent); overflow: visible; border-radius: 6px; }
.fd-hero--banner .fd-search__tabs { position: absolute; top: -42px; left: 0; border-bottom: 0; }
.fd-hero--banner .fd-search__tab { background: var(--fd-primary); color: rgba(255, 255, 255, 0.85); border-radius: 6px 6px 0 0; padding: 0.7rem 1.7rem; margin-right: 2px; }
.fd-hero--banner .fd-search__tab.is-active { background: var(--fd-accent); color: #fff; border-bottom-color: transparent; }
.fd-hero--banner .fd-search__form { padding: 1.4rem 0 1.4rem 1.6rem; gap: 1.4rem; grid-template-columns: repeat(4, 1fr) 170px; }
.fd-hero--banner .fd-search__field span { color: #fff; text-transform: uppercase; letter-spacing: 0.07em; font-size: 0.68rem; }
.fd-hero--banner .fd-search__field select {
    background: transparent;
    border: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 0;
    color: #fff;
    padding-left: 0;
}
.fd-hero--banner .fd-search__field select:focus { outline: none; border-bottom-color: #fff; }
.fd-hero--banner .fd-search__field select option { color: #1d2a2b; background: #fff; }
.fd-hero--banner .fd-search__submit {
    align-self: stretch;
    margin: -1.4rem 0;
    border-radius: 0 6px 6px 0;
    background: var(--fd-primary);
    border-color: var(--fd-primary);
}
.fd-hero--banner .fd-search__submit:hover { background: var(--fd-primary); filter: brightness(1.18); }
@media (max-width: 900px) {
    .fd-hero--banner .fd-search--hero { margin-bottom: -56px; }
    .fd-hero--banner .fd-search__form { grid-template-columns: 1fr 1fr; padding: 1.25rem 1.25rem 1.4rem; }
    .fd-hero--banner .fd-search__submit { grid-column: 1 / -1; margin: 0; border-radius: 6px; align-self: auto; }
}

/* featured listings beside an intro column */
.fd-eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.75rem; font-weight: 700; color: var(--fd-accent); margin: 0 0 0.6rem; }
.fd-featured-side { display: grid; grid-template-columns: 320px 1fr; gap: 3rem; align-items: start; }
.fd-featured-side__intro p { color: var(--fd-text-muted); }
.fd-featured-side__intro .fd-btn { margin-top: 0.5rem; }
.fd-featured-side__more { margin: 1.25rem 0 0; text-align: right; }

/* Featured listings as a horizontal scroller: two cards in view with the
   next peeking, the rest scroll. Stops three cards being crammed into the
   column beside the intro. */
.fd-featured-side__cards {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.25rem 0.25rem 0.75rem;
    margin: -0.25rem -0.25rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--fd-line) transparent;
}
.fd-featured-side__cards > * {
    flex: 0 0 46%;
    scroll-snap-align: start;
}
.fd-featured-side__cards::-webkit-scrollbar { height: 6px; }
.fd-featured-side__cards::-webkit-scrollbar-thumb { background: var(--fd-line); border-radius: 3px; }
@media (max-width: 1000px) {
    .fd-featured-side { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
    .fd-featured-side__cards > * { flex-basis: 82%; }
}

/* icon CTA panel over a photo band */
.fd-ctaband { position: relative; padding: 4.5rem 0; background: var(--fd-surface-alt); }
.fd-ctaband__media { position: absolute; inset: 0; }
.fd-ctaband__shell { position: relative; display: flex; justify-content: center; }
.fd-ctaband__panel {
    width: 480px;
    max-width: 100%;
    /* --fd-panel-bg lets a skin darken the panel so it separates from the
       band's media (the placeholder gradient shares the primary palette) */
    background: var(--fd-panel-bg, var(--fd-primary));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--fd-radius-lg);
    padding: 1rem 1.9rem;
    box-shadow: 0 24px 60px rgba(8, 12, 22, 0.3);
}
.fd-ctaband__row {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.15rem 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.fd-ctaband__row:last-child { border-bottom: 0; }
.fd-ctaband__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--fd-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: transform 0.15s ease;
}
.fd-ctaband__icon svg { width: 24px; height: 24px; }
.fd-ctaband__row:hover .fd-ctaband__icon { transform: scale(1.08); }
.fd-ctaband__eyebrow { display: block; color: rgba(255, 255, 255, 0.72); font-size: 0.8rem; }
.fd-ctaband__label { display: block; color: #fff; font-weight: 700; font-size: 1.08rem; font-family: var(--fd-font-display); }
.fd-ctaband__arrow { margin-left: auto; color: var(--fd-accent-soft); font-size: 1.2rem; }

/* testimonial cards */
.fd-quote {
    background: var(--fd-surface);
    border: var(--fd-border-w) solid var(--fd-line);
    border-radius: var(--fd-radius-lg);
    padding: 1.75rem;
    margin: 0;
}
.fd-quote__mark { font-family: var(--fd-font-display); font-size: 3.2rem; line-height: 0.4; color: var(--fd-accent); display: block; margin: 0.6rem 0 0.9rem; }
.fd-quote__text { margin: 0 0 1rem; border: 0; padding: 0; font-size: 0.94rem; }
.fd-quote__by { font-size: 0.78rem; font-weight: 700; color: var(--fd-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
