/* ============================================================
   HERO
============================================================ */

.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(10, 20, 35, 0.72),
            rgba(10, 20, 35, 0.45)
        );
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 56px 0 40px;
}

.hero .eyebrow {
    margin: 0 0 14px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-title {
    max-width: 26ch;

    margin: 0;

    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;

    line-height: 1.15;

    color: var(--white-text);
}


/* ============================================================
   MAIN LISTINGS LAYOUT
============================================================ */

.listings-shell {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
    padding-top: 56px;
    padding-bottom: 20px;
    margin-top: 20px;
}


/* ============================================================
   FILTER PANEL
============================================================ */

.filters-panel {
    position: sticky;
    top: 94px;

    padding: 24px;

    background: var(--paper-warm);

    border: 1px solid var(--line);
    border-radius: 12px;
}

.filters-close {
    display: none;
}

.filter-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.filter-group {
    margin: 0;
    padding: 0;
    border: 0;
}

.filter-label {
    display: block;

    margin: 0 0 10px;
    padding: 0;

    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    color: var(--muted);
}


/* ============================================================
   SEARCH INPUT
============================================================ */

.input-icon {
    position: relative;
}

.input-icon svg {
    position: absolute;
    top: 50%;
    left: 12px;

    width: 16px;
    height: 16px;

    color: var(--muted);

    transform: translateY(-50%);

    pointer-events: none;
}

.input-icon input {
    width: 100%;

    padding: 11px 12px 11px 38px;

    border: 1px solid var(--line);
    border-radius: 8px;

    background: #fff;
    color: var(--ink);

    font-family: var(--font-body);
    font-size: 14px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.input-icon input:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(210, 162, 42, 0.10);
}


/* ============================================================
   STATUS PILLS
============================================================ */

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 14px;

    border: 1px solid var(--line);
    border-radius: 999px;

    background: #fff;

    color: var(--ink-soft);

    font-family: var(--font-body);
    font-size: 13px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.pill input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
    pointer-events: none;
}

.pill:has(input:checked) {
    background: var(--primary);
    border-color: var(--primary);

    color: var(--white-text);
}

.pill:hover {
    border-color: var(--primary);
}


/* ============================================================
   CHECKBOX GRID
============================================================ */

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px 14px;
}

.check {
    display: flex;
    align-items: center;

    gap: 8px;

    min-width: 0;

    color: var(--ink-soft);

    font-family: var(--font-body);
    font-size: 13.5px;

    cursor: pointer;
}

.check input {
    width: 15px;
    height: 15px;

    margin: 0;

    accent-color: var(--primary);

    flex-shrink: 0;
}

.hidden-extra {
    display: none;
}

.check-grid.expanded .hidden-extra {
    display: flex;
}

.show-more-btn {
    margin-top: 10px;
    padding: 0;

    background: none;
    border: 0;

    color: var(--brick);

    font-family: var(--font-mono);
    font-size: 12px;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    cursor: pointer;
}

.show-more-btn:hover {
    text-decoration: underline;
}


/* ============================================================
   PRICE RANGE
============================================================ */

.range-readout {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 10px;

    color: var(--ink-soft);

    font-family: var(--font-mono);
    font-size: 13px;
}

.range-sep {
    color: var(--muted-2);
}

.price-range {
    position: relative;

    display: flex;
    flex-direction: column;

    gap: 2px;
}

.filter-group input[type="range"] {
    width: 100%;

    margin: 4px 0;

    accent-color: var(--primary);
    cursor: pointer;
}


/* ============================================================
   SELECT
============================================================ */

.filter-group select {
    width: 100%;

    min-height: 42px;

    padding: 10px 12px;

    border: 1px solid var(--line);
    border-radius: 8px;

    background: #fff;
    color: var(--ink);

    font-family: var(--font-body);
    font-size: 14px;

    outline: none;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.filter-group select:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(210, 162, 42, 0.10);
}


/* ============================================================
   TWO COLUMN FILTER
============================================================ */

.two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px;
}


/* ============================================================
   FILTER BUTTONS
============================================================ */

.btn-submit-search,
.btn-reset-search {
    width: 100%;

    min-height: 44px;

    border-radius: 8px;

    font-family: var(--font-mono);
    font-size: 12px;

    letter-spacing: 0.05em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.btn-submit-search {
    padding: 14px;

    border: 1px solid var(--navy-deep);

    background: var(--navy-deep);
    color: var(--paper);
}

.btn-submit-search:hover {
    background: var(--primary);
    border-color: var(--primary);

    transform: translateY(-1px);
}

.btn-reset-search {
    padding: 12px;

    border: 1px solid var(--line);

    background: transparent;
    color: var(--muted);
}

.btn-reset-search:hover {
    border-color: var(--brick);
    color: var(--brick);
}


/* ============================================================
   RESULTS BAR
============================================================ */

.results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    margin-bottom: 26px;
}

.results-count {
    margin: 0;

    color: var(--muted);

    font-family: var(--font-body);
    font-size: 13.5px;
}

.results-count strong {
    color: var(--ink);
}

.results-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* ============================================================
   MOBILE FILTER BUTTON
============================================================ */

.filters-open {
    display: none;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 9px 16px;

    border: 1px solid var(--line);
    border-radius: 999px;

    background: var(--paper-warm);
    color: var(--ink);

    font-size: 13px;

    cursor: pointer;
}

.filters-open-icon {
    font-size: 14px;
}


/* ============================================================
   SORT
============================================================ */

.sort-select {
    min-height: 40px;

    padding: 9px 12px;

    border: 1px solid var(--line);
    border-radius: 8px;

    background: #fff;
    color: var(--ink);

    font-family: var(--font-body);
    font-size: 13px;

    outline: none;
}

.sort-select:focus {
    border-color: var(--primary);
}


/* ============================================================
   VIEW TOGGLE
============================================================ */

.view-toggle {
    display: flex;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: 8px;
}

.view-btn {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;

    background: #fff;
    color: var(--muted);

    font-size: 15px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.view-btn + .view-btn {
    border-left: 1px solid var(--line);
}

.view-btn.active {
    background: var(--navy);
    color: #fff;
}


/* ============================================================
   PROPERTY GRID
============================================================ */

.property-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 26px;
}


/* ============================================================
   PROPERTY CARD
============================================================ */

.property-card {
    position: relative;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--line);
    border-radius: 12px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.property-card:hover {
    transform: translateY(-3px);

    border-color: rgba(210, 162, 42, 0.45);

    box-shadow:
        0 14px 30px -18px rgba(18, 35, 61, 0.35);
}


/* ============================================================
   CARD MEDIA
============================================================ */

.card-media {
    position: relative;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: var(--paper-soft);
}

.card-media img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.property-card:hover .card-media img {
    transform: scale(1.04);
}


/* ============================================================
   MEDIA PLACEHOLDER
============================================================ */

.media-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--tone-a),
            var(--tone-b)
        );
}

.property-card[data-tone="1"] .media-placeholder {
    --tone-a: #12233D;
    --tone-b: #2c4670;
}

.property-card[data-tone="2"] .media-placeholder {
    --tone-a: #a8492f;
    --tone-b: #c76a4a;
}

.property-card[data-tone="3"] .media-placeholder {
    --tone-a: #4c7a52;
    --tone-b: #6f9d75;
}

.property-card[data-tone="4"] .media-placeholder {
    --tone-a: #6b6255;
    --tone-b: #948a79;
}

.property-card[data-tone="5"] .media-placeholder {
    --tone-a: #7FB8D9;
    --tone-b: #12233D;
}

.property-card[data-tone="6"] .media-placeholder {
    --tone-a: #fccb41;
    --tone-b: #a8492f;
}

.property-card[data-tone="7"] .media-placeholder {
    --tone-a: #0d1c31;
    --tone-b: #a8492f;
}

.property-card[data-tone="8"] .media-placeholder {
    --tone-a: #8f3c26;
    --tone-b: #12233D;
}

.media-icon {
    width: 46%;

    color: rgba(255, 255, 255, 0.55);
}


/* ============================================================
   PROPERTY TAGS
============================================================ */

.tag {
    position: absolute;

    font-family: var(--font-mono);
    font-size: 10.5px;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    padding: 5px 10px;

    border-radius: 999px;
}

.tag-featured {
    top: 12px;
    left: 12px;

    background: var(--primary);
    color: var(--white-text);
}

.tag-label {
    top: 12px;
    right: 12px;

    color: #fff;
}

.tag-resale {
    background: var(--navy);
}

.tag-new {
    background: var(--navy-deep);
}

.tag-status {
    position: static;

    display: inline-block;

    margin-bottom: 10px;

    background: var(--navy);
    color: var(--white-text);
    width:fit-content;
}


/* ============================================================
   CARD BODY
============================================================ */

.card-body {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 18px 20px 20px;
}

.card-title {
    margin: 0 0 4px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ink);
}

.card-title a {
    color: inherit;
    text-decoration: none;
}

.card-loc {
    margin: 0 0 12px;
    color: var(--muted);
    display:inline-block;
    font-family: var(--font-body);
    font-size: 13px;
}


/* ============================================================
   CARD META
============================================================ */

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
    color: var(--primary-dark);
    font-size: 12px;
}

.card-meta li {
    position: relative;

    padding-left: 12px;
}

.card-meta li::before {
    content: "";

    position: absolute;

    top: 6px;
    left: 0;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--primary);
}


/* ============================================================
   LIST VIEW
============================================================ */

.property-grid.is-list {
    grid-template-columns: 1fr;
}

.property-grid.is-list .property-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
}

.property-grid.is-list .card-media {
    height: 100%;
    aspect-ratio: auto;
}

.property-grid.is-list .card-body {
    min-width: 0;
}


/* ============================================================
   PAGINATION
============================================================ */

#pagination {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 40px;
    padding: 10px 0;
}

.pagination-btn {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid var(--line);
    border-radius: 10px;

    background: var(--paper);
    color: var(--navy);

    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary-soft);
    border-color: var(--primary);
    color: var(--primary);

    transform: translateY(-2px);
}

.pagination-btn.active {
    background: var(--primary);
    border-color: var(--primary);

    color: var(--white-text);

    box-shadow:
        0 6px 16px rgba(213, 49, 39, 0.18);
}

.pagination-btn.active:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);

    color: #fff;
}

.pagination-btn:disabled {
    opacity: 0.4;

    cursor: not-allowed;

    background: var(--paper-soft);
    color: var(--muted);

    border-color: var(--line-soft);

    transform: none;
    box-shadow: none;
}

.pagination-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}


/* ============================================================
   CTA
============================================================ */

.cta-section {
    margin-top: 20px;
    padding: 72px 0;

    background: var(--paper-warm);

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    flex-wrap: wrap;
}

.cta-grid > div:first-child {
    max-width: 650px;
}

.cta-grid h2 {
    margin: 0 0 8px;

    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;

    line-height: 1.25;

    color: var(--ink);
}

.cta-grid p {
    max-width: 46ch;

    margin: 0;

    color: var(--muted);

    font-family: var(--font-body);
    font-size: 14px;

    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}

.phone-link {
    color: var(--ink);

    font-family: var(--font-mono);
    font-size: 1.05rem;

    text-decoration: none;

    border-bottom: 1px solid var(--brick);

    padding-bottom: 2px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.phone-link:hover {
    color: var(--brick);

    transform: translateY(-2px);
}

.cta-btn.solid-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 12px 28px;

    background: var(--navy-deep);
    color: var(--paper);

    border: 1px solid var(--navy-deep);
    border-radius: 8px;

    font-family: var(--font-display);
    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.cta-btn.solid-dark:hover {
    background: var(--primary);
    border-color: var(--primary);

    color: var(--white-text);

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(210, 162, 42, 0.20);
}


/* ============================================================
   ACCESSIBILITY
============================================================ */

.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}

/* ============================================================
   TABLET
   1024px and below
============================================================ */

@media (max-width: 1024px) {

    /* --------------------------------------------------------
       HERO
    -------------------------------------------------------- */

    .hero {
        min-height: 50vh;
    }

    .hero-inner {
        padding: 48px 0 36px;
    }

    .hero-title {
        max-width: 24ch;
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }


    /* --------------------------------------------------------
       MAIN LISTINGS
    -------------------------------------------------------- */

    .listings-shell {
        grid-template-columns: 250px minmax(0, 1fr);
        gap: 24px;
        padding-top: 42px;
    }


    /* --------------------------------------------------------
       FILTER PANEL
    -------------------------------------------------------- */

    .filters-panel {
        top: 84px;
        padding: 20px;
    }

    .filter-form {
        gap: 18px;
    }

    .filter-label {
        font-size: 10.5px;
    }


    /* --------------------------------------------------------
       PROPERTY GRID
    -------------------------------------------------------- */

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

    .card-body {
        padding: 16px 17px 18px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-meta {
        gap: 6px 10px;
    }


    /* --------------------------------------------------------
       LIST VIEW
    -------------------------------------------------------- */

    .property-grid.is-list .property-card {
        grid-template-columns: 180px minmax(0, 1fr);
    }


    /* --------------------------------------------------------
       RESULTS BAR
    -------------------------------------------------------- */

    .results-bar {
        gap: 10px;
        margin-bottom: 20px;
    }

    .results-controls {
        gap: 8px;
    }

    .sort-select {
        min-height: 38px;
        padding: 8px 10px;
    }

    .view-btn {
        width: 38px;
        height: 38px;
    }


    /* --------------------------------------------------------
       CTA
    -------------------------------------------------------- */

    .cta-section {
        padding: 58px 0;
    }

    .cta-grid {
        gap: 24px;
    }

    .cta-grid > div:first-child {
        max-width: 560px;
    }

}


/* ============================================================
   MOBILE
   768px and below
============================================================ */

@media (max-width: 768px) {

    /* --------------------------------------------------------
       HERO
    -------------------------------------------------------- */

    .hero {
        min-height: 44vh;
    }

    .hero-inner {
        padding: 42px  24px;
    }

    .hero .eyebrow {
        margin-bottom: 10px;
        font-size: 0.7rem;
        letter-spacing: 0.12em;
        display: flex;
        justify-content: center;
    }

    .hero-title {
        max-width: 20ch;
        font-size: clamp(1.7rem, 7vw, 2.2rem);
        line-height: 1.18;
        text-align: center;
    }


    /* --------------------------------------------------------
       MAIN LISTINGS LAYOUT
    -------------------------------------------------------- */

    .listings-shell {
        display: block;

        padding-top: 30px;
        padding-bottom: 10px;

        margin-top: 0;
    }


    /* --------------------------------------------------------
       FILTER PANEL
       Hidden by default on mobile.
       JS can add .is-open to display it.
    -------------------------------------------------------- */

    .filters-panel {
        position: fixed;

        top: 0;
        left: 0;

        width: min(88vw, 360px);
        height: 100dvh;

        margin: 0;
        padding: 24px;

        z-index: 1000;

        overflow-y: auto;

        background: var(--paper-warm);

        border: 0;
        border-radius: 0;

        box-shadow: 12px 0 40px rgba(18, 35, 61, 0.18);

        transform: translateX(-105%);
        transition: transform 0.3s ease;
    }

    .filters-panel.is-open {
        transform: translateX(0);
    }


    /* --------------------------------------------------------
       FILTER CLOSE BUTTON
    -------------------------------------------------------- */

    .filters-close {
        display: flex;

        align-items: center;
        justify-content: center;

        width: 36px;
        height: 36px;

        margin-left: auto;
        margin-bottom: 18px;

        padding: 0;

        border: 1px solid var(--line);
        border-radius: 8px;

        background: #fff;
        color: var(--ink);

        cursor: pointer;
    }

    .filters-close:hover {
        border-color: var(--primary);
        color: var(--primary);
    }


    /* --------------------------------------------------------
       MOBILE FILTER BUTTON
    -------------------------------------------------------- */

    .filters-open {
        display: inline-flex;
        align-content: center;
        justify-content: center;
        font-size: 12px;
        width: 100%;
    }
    .filters-open-icon {
        font-size: 10px;
    }



    /* --------------------------------------------------------
       RESULTS BAR
    -------------------------------------------------------- */

   .results-bar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-bottom: 20px;
        justify-items: center;
        align-items: center;
        width: 100%;
    }
    
    .results-bar> :nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }
    
    .results-bar> :nth-child(2) {
        grid-column: 1 / -1;
        grid-row: 2;
    }
    
    .results-bar> :nth-child(3) {
        grid-column: 2;
        grid-row: 1;
    }

    .results-count {
        font-size: 12px;
    }

    .results-controls {
        gap: 7px;
        width: 100%;
    }


    /* --------------------------------------------------------
       PROPERTY GRID
    -------------------------------------------------------- */

    .property-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }


    /* --------------------------------------------------------
       PROPERTY CARD
    -------------------------------------------------------- */

    .property-card {
        border-radius: 10px;
    }

    .card-media {
        aspect-ratio: 16 / 10;
    }

    .card-body {
        padding: 16px;
    }

    .card-title {
        font-size: 17px;
    }

    .card-loc {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .card-meta {
        margin-bottom: 12px;
        gap: 6px 12px;
    }


    /* --------------------------------------------------------
       LIST VIEW
       On mobile, list cards become normal vertical cards.
    -------------------------------------------------------- */

    .property-grid.is-list {
        grid-template-columns: 1fr;
    }

    .property-grid.is-list .property-card {
        display: flex;
        grid-template-columns: none;
    }

    .property-grid.is-list .card-media {
        height: auto;
        aspect-ratio: 16 / 10;
    }


    /* --------------------------------------------------------
       SORT
    -------------------------------------------------------- */

    .sort-select {
        min-height: 38px;
        padding: 8px 10px;
        border-radius: 999px;
        font-size: 12px;
        padding-right: 8px;
    }


    /* --------------------------------------------------------
       VIEW TOGGLE
    -------------------------------------------------------- */

    .view-btn {
        width: 38px;
        height: 38px;
    }


    /* --------------------------------------------------------
       PAGINATION
    -------------------------------------------------------- */

    #pagination {
        gap: 6px;
        margin-top: 30px;
    }

    .pagination-btn {
        width: 38px;
        height: 38px;

        border-radius: 8px;

        font-size: 12px;
    }


    /* --------------------------------------------------------
       CTA
    -------------------------------------------------------- */

    .cta-section {
        margin-top: 16px;
        padding: 50px 0;
    }

    .cta-grid {
        flex-direction: column;
        align-items: flex-start;

        gap: 24px;
    }

    .cta-grid > div:first-child {
        max-width: 100%;
    }

    .cta-grid h2 {
        font-size: 1.6rem;
    }

    .cta-grid p {
        max-width: 100%;
        font-size: 13.5px;
    }

    .cta-actions {
        width: 100%;

        flex-direction: column;
        align-items: stretch;

        gap: 12px;
    }

    .phone-link {
        width: fit-content;
        font-size: 1rem;
    }

    .cta-btn.solid-dark {
        width: 100%;
    }

}

