/**
 * EVContractors.io — Homepage Styles
 * File: evc-homepage.css
 * Location: /wp-content/themes/generatepress-child/
 *
 * Covers: Hero section + Trust Bar (Phase 1)
 * Remaining homepage sections will be appended in subsequent phases.
 *
 * Fonts loaded: Plus Jakarta Sans (headings) + Barlow Condensed (eyebrow/stats)
 * via Google Fonts — add to wp_enqueue_scripts or paste @import into style.css
 */

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


/* ──────────────────────────────────────────────────────────────
   CSS VARIABLES
────────────────────────────────────────────────────────────── */

:root {
    --evc-navy:          #1B4F72;
    --evc-navy-dark:     #12374F;
    --evc-navy-deeper:   #0D2535;
    --evc-green:         #1E8449;
    --evc-green-hover:   #176538;
    --evc-green-light:   #27AE60;
    --evc-white:         #FFFFFF;
    --evc-off-white:     #F4F6F8;
    --evc-border:        #D5D8DC;
    --evc-text:          #1A202C;
    --evc-text-muted:    #566573;

    --evc-font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
    --evc-font-accent:  'Barlow Condensed', system-ui, sans-serif;

    --evc-radius-sm:    6px;
    --evc-radius-md:    12px;
    --evc-radius-lg:    20px;
    --evc-radius-pill:  999px;

    --evc-shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
    --evc-shadow-md:  0 6px 24px rgba(0,0,0,0.12);
    --evc-shadow-lg:  0 16px 48px rgba(0,0,0,0.18);

    --evc-transition: 0.2s ease;
}


/* ──────────────────────────────────────────────────────────────
   UTILITY: CONTAINER
────────────────────────────────────────────────────────────── */

.evc-container {
    max-width: 1160px;
    margin-left:  auto;
    margin-right: auto;
    padding-left:  clamp(20px, 4vw, 48px);
    padding-right: clamp(20px, 4vw, 48px);
}


/* ──────────────────────────────────────────────────────────────
   RESET: GENERALPRESS INTERFERENCE
   Remove GeneratePress header padding from homepage hero
────────────────────────────────────────────────────────────── */

body.home #page {
    padding-top: 0;
}

body.home .site-content {
    padding-top: 0;
}


/* ──────────────────────────────────────────────────────────────
   HERO — WRAPPER
────────────────────────────────────────────────────────────── */

.evc-hero {
    position: relative;
    min-height: 580px;
    background: linear-gradient(
        155deg,
        var(--evc-navy-deeper)  0%,
        var(--evc-navy)         45%,
        #1A5276               100%
    );
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: clamp(72px, 10vw, 120px) 0 clamp(80px, 10vw, 120px);
}


/* ──────────────────────────────────────────────────────────────
   HERO — BACKGROUND GRID TEXTURE
   Pure CSS — no image dependency
────────────────────────────────────────────────────────────── */

.evc-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 0;
}


/* ──────────────────────────────────────────────────────────────
   HERO — DIAGONAL ACCENT SHAPE (top-right energy)
────────────────────────────────────────────────────────────── */

.evc-hero__accent {
    position: absolute;
    top: -80px;
    right: -120px;
    width: 520px;
    height: 520px;
    background: radial-gradient(
        ellipse at center,
        rgba(30, 132, 73, 0.18) 0%,
        transparent 70%
    );
    z-index: 0;
    pointer-events: none;
}


/* ──────────────────────────────────────────────────────────────
   HERO — INNER CONTENT
────────────────────────────────────────────────────────────── */

.evc-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    /* Left-aligned layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* ──────────────────────────────────────────────────────────────
   HERO — EYEBROW
────────────────────────────────────────────────────────────── */

.evc-hero__eyebrow {
    font-family: var(--evc-font-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--evc-green-light);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 20px;
    opacity: 0;
    animation: evc-fadeUp 0.6s ease 0.1s forwards;
}

.evc-hero__eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--evc-green-light);
    flex-shrink: 0;
    animation: evc-pulse 2s ease-in-out 0.8s infinite;
}


/* ──────────────────────────────────────────────────────────────
   HERO — HEADLINE
────────────────────────────────────────────────────────────── */

.evc-hero__headline {
    font-family: var(--evc-font-display);
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--evc-white);
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    max-width: 820px;
    opacity: 0;
    animation: evc-fadeUp 0.65s ease 0.2s forwards;
}

.evc-hero__headline-accent {
    color: var(--evc-green-light);
    position: relative;
    display: inline-block;
}

/* Underline decoration on the accent span */
.evc-hero__headline-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--evc-green-light), transparent);
    border-radius: 2px;
    opacity: 0.5;
}


/* ──────────────────────────────────────────────────────────────
   HERO — SUBHEADLINE
────────────────────────────────────────────────────────────── */

.evc-hero__sub {
    font-family: var(--evc-font-display);
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 40px;
    max-width: 600px;
    opacity: 0;
    animation: evc-fadeUp 0.65s ease 0.3s forwards;
}

/* Suppress the <br> on small screens */
@media (max-width: 600px) {
    .evc-hero__sub-br { display: none; }
}


/* ──────────────────────────────────────────────────────────────
   HERO — SEARCH FORM WRAPPER
────────────────────────────────────────────────────────────── */

.evc-hero__search-wrap {
    width: 100%;
    max-width: 680px;
    opacity: 0;
    animation: evc-fadeUp 0.65s ease 0.4s forwards;
}

.evc-hero__search-form {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--evc-radius-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 6px 6px 20px;
    gap: 0;
    transition: border-color var(--evc-transition), box-shadow var(--evc-transition);
}

.evc-hero__search-form:focus-within {
    border-color: rgba(39, 174, 96, 0.6);
    box-shadow: 0 0 0 4px rgba(30, 132, 73, 0.15);
}


/* ──────────────────────────────────────────────────────────────
   HERO — SEARCH INPUT
────────────────────────────────────────────────────────────── */

.evc-hero__search-icon {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    margin-right: 10px;
}

.evc-hero__search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--evc-white);
    font-family: var(--evc-font-display);
    font-size: 16px;
    font-weight: 500;
    padding: 14px 0;
    min-width: 0;
    /* Override GeneratePress input styles */
    box-shadow: none !important;
    border-radius: 0 !important;
}

.evc-hero__search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.evc-hero__search-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #1B4F72 inset;
    -webkit-text-fill-color: var(--evc-white);
}


/* ──────────────────────────────────────────────────────────────
   HERO — SEARCH BUTTON
────────────────────────────────────────────────────────────── */

.evc-hero__search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--evc-green);
    color: var(--evc-white);
    font-family: var(--evc-font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: none;
    border-radius: var(--evc-radius-md);
    padding: 0 28px;
    cursor: pointer;
    white-space: nowrap;
    transition:
        background var(--evc-transition),
        transform  var(--evc-transition),
        box-shadow var(--evc-transition);
    min-height: 52px;
    /* Override GeneratePress button styles */
    text-transform: none;
    line-height: 1;
}

.evc-hero__search-btn:hover,
.evc-hero__search-btn:focus-visible {
    background: var(--evc-green-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30, 132, 73, 0.4);
    color: var(--evc-white);
    text-decoration: none;
}

.evc-hero__search-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Hide button text label on very small screens, keep icon */
@media (max-width: 420px) {
    .evc-hero__search-btn span { display: none; }
    .evc-hero__search-btn { padding: 0 18px; }
}


/* ──────────────────────────────────────────────────────────────
   HERO — POPULAR CITIES
────────────────────────────────────────────────────────────── */

.evc-hero__popular {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin-top: 16px;
}

.evc-hero__popular-label {
    font-family: var(--evc-font-display);
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.evc-hero__popular-link {
    font-family: var(--evc-font-display);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    padding: 3px 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--evc-radius-pill);
    transition:
        color            var(--evc-transition),
        border-color     var(--evc-transition),
        background       var(--evc-transition);
}

.evc-hero__popular-link:hover,
.evc-hero__popular-link:focus-visible {
    color: var(--evc-white);
    border-color: rgba(39, 174, 96, 0.5);
    background: rgba(30, 132, 73, 0.15);
    text-decoration: none;
}


/* ──────────────────────────────────────────────────────────────
   HERO — SCROLL INDICATOR
────────────────────────────────────────────────────────────── */

.evc-hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.35;
    animation: evc-fadeUp 0.6s ease 1s forwards;
}

.evc-hero__scroll-line {
    display: block;
    width: 1.5px;
    height: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.8), transparent);
    animation: evc-scrollPulse 1.8s ease-in-out 1.2s infinite;
}


/* ──────────────────────────────────────────────────────────────
   TRUST BAR
────────────────────────────────────────────────────────────── */

.evc-trust-bar {
    background: var(--evc-off-white);
    border-bottom: 1px solid var(--evc-border);
    padding: 32px 0;
}

.evc-trust-bar__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.evc-trust-bar__item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 180px;
    /* Separator lines between items */
    position: relative;
}

.evc-trust-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    width: 1px;
    background: var(--evc-border);
}

/* Hide dividers when items wrap */
@media (max-width: 720px) {
    .evc-trust-bar__item:not(:last-child)::after { display: none; }
    .evc-trust-bar__item { min-width: 140px; }
}

.evc-trust-bar__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--evc-radius-md);
    background: var(--evc-navy);
    color: var(--evc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--evc-shadow-sm);
}

.evc-trust-bar__stat {
    font-family: var(--evc-font-accent);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--evc-navy);
    display: block;
    line-height: 1.1;
}

.evc-trust-bar__label {
    font-family: var(--evc-font-display);
    font-size: 13px;
    font-weight: 500;
    color: var(--evc-text-muted);
    display: block;
    line-height: 1.3;
    margin-top: 2px;
}

/* Stack stat + label vertically inside the flex item */
.evc-trust-bar__item > span:not(.evc-trust-bar__icon) {
    display: flex;
    flex-direction: column;
}


/* ──────────────────────────────────────────────────────────────
   ANIMATIONS
────────────────────────────────────────────────────────────── */

@keyframes evc-fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes evc-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}

@keyframes evc-scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.35; }
    50%       { transform: scaleY(0.5); opacity: 0.15; }
}


/* ──────────────────────────────────────────────────────────────
   RESPONSIVE — TABLET (max 900px)
────────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
    .evc-hero {
        min-height: 520px;
        padding: 80px 0 90px;
    }

    .evc-hero__search-form {
        flex-wrap: wrap;
        border-radius: var(--evc-radius-md);
        padding: 12px;
        gap: 10px;
    }

    .evc-hero__search-icon { display: none; }

    .evc-hero__search-input {
        width: 100%;
        padding: 10px 8px;
    }

    .evc-hero__search-btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        border-radius: var(--evc-radius-sm);
    }
}


/* ──────────────────────────────────────────────────────────────
   RESPONSIVE — MOBILE (max 560px)
────────────────────────────────────────────────────────────── */

@media (max-width: 560px) {
    .evc-hero {
        padding: 72px 0 80px;
        min-height: auto;
    }

    .evc-hero__headline {
        letter-spacing: -0.015em;
    }

    .evc-trust-bar__list {
        justify-content: flex-start;
    }
}


/* ──────────────────────────────────────────────────────────────
   REDUCED MOTION
────────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .evc-hero__eyebrow,
    .evc-hero__headline,
    .evc-hero__sub,
    .evc-hero__search-wrap,
    .evc-hero__scroll {
        animation: none;
        opacity: 1;
    }

    .evc-hero__eyebrow-dot { animation: none; }
    .evc-hero__scroll-line  { animation: none; }
}


/* ══════════════════════════════════════════════════════════════
   APPEND THIS TO THE BOTTOM OF evc-homepage.css
   Covers: Section 3 — Featured Installer Cards
════════════════════════════════════════════════════════════════ */


/* ──────────────────────────────────────────────────────────────
   SHARED SECTION HEADER
   Reused across Featured, Guides, and other homepage sections
────────────────────────────────────────────────────────────── */

.evc-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.evc-section-header__eyebrow {
    font-family: var(--evc-font-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--evc-green);
    margin: 0 0 8px;
}

.evc-section-header__title {
    font-family: var(--evc-font-display);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: var(--evc-text);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 10px;
}

.evc-section-header__sub {
    font-family: var(--evc-font-display);
    font-size: 15px;
    color: var(--evc-text-muted);
    margin: 0;
    max-width: 480px;
}

.evc-section-header__link {
    font-family: var(--evc-font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--evc-green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    padding-bottom: 4px; /* Align with baseline of subtitle */
    transition: gap var(--evc-transition), color var(--evc-transition);
}

.evc-section-header__link:hover,
.evc-section-header__link:focus-visible {
    color: var(--evc-green-hover);
    gap: 10px;
    text-decoration: none;
}


/* ──────────────────────────────────────────────────────────────
   SHARED: BADGE COMPONENTS
   Used on cards across homepage and location pages
────────────────────────────────────────────────────────────── */

.evc-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--evc-font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 3px 8px;
    border-radius: var(--evc-radius-pill);
    line-height: 1.4;
}

.evc-badge--verified {
    background: #EBF5FB;
    color: #1A5276;
    border: 1px solid #AED6F1;
}

.evc-badge--nevi {
    background: #EAFAF1;
    color: #1D6A39;
    border: 1px solid #A9DFBF;
}

/* ──────────────────────────────────────────────────────────────
   SHARED: TAG PILLS (certs + project types)
────────────────────────────────────────────────────────────── */

.evc-tag {
    display: inline-flex;
    font-family: var(--evc-font-display);
    font-size: 11.5px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: var(--evc-radius-pill);
    white-space: nowrap;
}

.evc-tag--cert {
    background: #EBF5FB;
    color: #1A5276;
    border: 1px solid #D6EAF8;
}

.evc-tag--project {
    background: #F5EEF8;
    color: #6C3483;
    border: 1px solid #E8DAEF;
}

/* ──────────────────────────────────────────────────────────────
   SHARED: BUTTON COMPONENTS
   Referenced in cards via evc-btn classes
────────────────────────────────────────────────────────────── */

.evc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--evc-font-display);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--evc-radius-sm);
    transition:
        background var(--evc-transition),
        color      var(--evc-transition),
        box-shadow var(--evc-transition),
        transform  var(--evc-transition);
    cursor: pointer;
    border: none;
    line-height: 1;
    white-space: nowrap;
}

.evc-btn--sm {
    font-size: 13px;
    padding: 9px 16px;
}

.evc-btn--primary {
    background: var(--evc-green);
    color: var(--evc-white);
}

.evc-btn--primary:hover,
.evc-btn--primary:focus-visible {
    background: var(--evc-green-hover);
    color: var(--evc-white);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 132, 73, 0.3);
}

.evc-btn--secondary {
    background: var(--evc-off-white);
    color: var(--evc-navy);
    border: 1px solid var(--evc-border);
}

.evc-btn--secondary:hover,
.evc-btn--secondary:focus-visible {
    background: #E8ECF0;
    color: var(--evc-navy-dark);
    text-decoration: none;
    transform: translateY(-1px);
}


/* ──────────────────────────────────────────────────────────────
   FEATURED SECTION — WRAPPER
────────────────────────────────────────────────────────────── */

.evc-featured {
    padding: clamp(64px, 8vw, 96px) 0;
    background: var(--evc-white);
}


/* ──────────────────────────────────────────────────────────────
   FEATURED SECTION — CARD GRID
────────────────────────────────────────────────────────────── */

.evc-featured__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 960px) {
    .evc-featured__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .evc-featured__grid {
        grid-template-columns: 1fr;
    }
}


/* ──────────────────────────────────────────────────────────────
   HOMEPAGE INSTALLER CARD
────────────────────────────────────────────────────────────── */

.evc-hp-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--evc-white);
    border: 1.5px solid var(--evc-border);
    border-radius: var(--evc-radius-md);
    padding: 24px;
    transition:
        border-color var(--evc-transition),
        box-shadow   var(--evc-transition),
        transform    var(--evc-transition);
}

.evc-hp-card:hover {
    border-color: #A9CCE3;
    box-shadow: var(--evc-shadow-md);
    transform: translateY(-3px);
}

/* Featured card — slightly elevated visual treatment */
.evc-hp-card--featured {
    border-color: #A9DFBF;
    background: linear-gradient(160deg, #FDFFFE 0%, #F0FAF4 100%);
}

.evc-hp-card--featured:hover {
    border-color: var(--evc-green);
    box-shadow: 0 8px 28px rgba(30, 132, 73, 0.12);
}


/* ──────────────────────────────────────────────────────────────
   CARD — FEATURED STAR BADGE (top-right corner)
────────────────────────────────────────────────────────────── */

.evc-hp-card__featured-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--evc-font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--evc-green);
    background: #EAFAF1;
    border: 1px solid #A9DFBF;
    border-radius: var(--evc-radius-pill);
    padding: 3px 10px 3px 8px;
    line-height: 1.4;
}


/* ──────────────────────────────────────────────────────────────
   CARD — LOGO
────────────────────────────────────────────────────────────── */

.evc-hp-card__logo-wrap {
    margin-bottom: 16px;
    flex-shrink: 0;
}

.evc-hp-card__logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: var(--evc-radius-sm);
    border: 1px solid var(--evc-border);
    background: var(--evc-off-white);
    padding: 4px;
    display: block;
}

.evc-hp-card__logo-placeholder {
    width: 72px;
    height: 72px;
    border-radius: var(--evc-radius-sm);
    background: var(--evc-navy);
    color: var(--evc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--evc-font-display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    user-select: none;
}


/* ──────────────────────────────────────────────────────────────
   CARD — BODY
────────────────────────────────────────────────────────────── */

.evc-hp-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.evc-hp-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 22px; /* Keep consistent card height when no badges */
}

.evc-hp-card__name {
    font-family: var(--evc-font-display);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--evc-text);
}

.evc-hp-card__name a {
    color: inherit;
    text-decoration: none;
    transition: color var(--evc-transition);
}

.evc-hp-card__name a:hover,
.evc-hp-card__name a:focus-visible {
    color: var(--evc-navy);
    text-decoration: underline;
}

.evc-hp-card__location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--evc-font-display);
    font-size: 13px;
    color: var(--evc-text-muted);
    margin: 0;
}

.evc-hp-card__nationwide {
    color: #7F8C8D;
    font-size: 12px;
}

.evc-hp-card__desc {
    font-family: var(--evc-font-display);
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--evc-text-muted);
    margin: 0;
    /* 3-line clamp */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.evc-hp-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}


/* ──────────────────────────────────────────────────────────────
   CARD — CTAs
────────────────────────────────────────────────────────────── */

.evc-hp-card__ctas {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--evc-border);
}

.evc-hp-card__phone {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--evc-font-display);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--evc-text-muted);
    text-decoration: none;
    margin-left: auto; /* Push phone to right */
    transition: color var(--evc-transition);
}

.evc-hp-card__phone:hover,
.evc-hp-card__phone:focus-visible {
    color: var(--evc-navy);
    text-decoration: none;
}

/* ──────────────────────────────────────────────────────────────
   FEATURED SECTION — EMPTY STATE
────────────────────────────────────────────────────────────── */

.evc-featured__empty {
    text-align: center;
    padding: 64px 24px;
    border: 2px dashed var(--evc-border);
    border-radius: var(--evc-radius-lg);
    background: var(--evc-off-white);
}

.evc-featured__empty-icon {
    color: var(--evc-border);
    margin-bottom: 16px;
}

.evc-featured__empty-title {
    font-family: var(--evc-font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--evc-text);
    margin: 0 0 10px;
}

.evc-featured__empty-text {
    font-family: var(--evc-font-display);
    font-size: 15px;
    color: var(--evc-text-muted);
    margin: 0;
}

.evc-featured__empty-text a {
    color: var(--evc-green);
    text-decoration: underline;
}

