/* ============================================================
   HutchConnect — component styles
   Accent: teal #0d9488
   ============================================================ */

/* ── Page container — constrains all public page content ─── */
.hc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =============================================================
   ADMIN UI — shared admin-section styles
   ============================================================= */

/* --- Admin form section header ---------------------------- */
.hc-form-section-header {
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

/* --- Admin form field label -------------------------------- */
.hc-field-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 0.3rem;
}

.hc-field-label-required::after {
    content: " *";
    color: #ef4444;
    font-weight: 700;
}

/* --- Admin form field hint --------------------------------- */
.hc-field-hint {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.2rem;
}

/* --- Admin form grid layout ------------------------------- */
.hc-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
}

.hc-form-grid .hc-full-width {
    grid-column: 1 / -1;
}

@media (max-width: 600px) {
    .hc-form-grid {
        grid-template-columns: 1fr;
    }
    .hc-form-grid .hc-full-width {
        grid-column: 1;
    }
}

/* --- Admin inline alert ------------------------------------ */
.hc-alert {
    padding: 0.625rem 0.875rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.hc-alert-success {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.hc-alert-error {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* --- Admin action bar (form bottom) ----------------------- */
.hc-action-bar {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 2rem;
    padding-top: 0.25rem;
}

.hc-action-bar-right {
    margin-left: auto;
}

/* --- Admin table ------------------------------------------- */
.hc-admin-table-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: white;
}

.hc-admin-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.hc-admin-table-wrap thead {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.hc-admin-table-wrap th {
    padding: 0.625rem 1rem;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.hc-admin-table-wrap td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
    color: #374151;
}

.hc-admin-table-wrap tbody tr:last-child td {
    border-bottom: none;
}

.hc-admin-table-wrap tbody tr:hover {
    background: #f8fafc;
}

/* --- Admin flag/status pill -------------------------------- */
.hc-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 12px;
    white-space: nowrap;
}

.hc-status-active   { background: #dcfce7; color: #15803d; }
.hc-status-inactive { background: #f1f5f9; color: #64748b; }
.hc-status-verified { background: #dbeafe; color: #1d4ed8; }
.hc-status-featured { background: #fef9c3; color: #854d0e; }

/* --- Admin category table row tile ------------------------ */
.hc-cat-admin-tile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hc-cat-admin-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* --- Admin page-header flex fix --------------------------- */
.page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/* --- Partner admin tab bar --------------------------------- */
.hc-partner-tab-bar {
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 1.5rem;
}

.hc-partner-tab {
    padding: .6rem 1.1rem;
    font-size: .875rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color .15s, border-color .15s;
    white-space: nowrap;
}

.hc-partner-tab:hover { color: #0f172a; }

.hc-partner-tab--active {
    color: #0d9488;
    border-bottom-color: #0d9488;
}

.hc-partner-tab--external { color: #0891b2; }
.hc-partner-tab--external:hover { color: #0369a1; }

.hc-partner-tab--danger { color: #dc2626; margin-left: auto; }
.hc-partner-tab--danger:hover { color: #991b1b; }

/* --- Filter bar (search + controls row) ------------------- */
.hc-filter-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* --- Partner row avatar ----------------------------------- */
.hc-row-avatar {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.hc-row-avatar-img {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    object-fit: contain;
    border: 1px solid #e2e8f0;
    background: #fff;
    flex-shrink: 0;
}

.hc-row-avatar-initials {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background: linear-gradient(135deg, #0d9488, #0891b2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.hc-row-name {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.875rem;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 240px;
}

.hc-row-slug {
    font-size: 0.72rem;
    color: #94a3b8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* --- Partner card grid ------------------------------------ */
.hc-partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    padding: 1.5rem 0;
}

/* --- Partner card ----------------------------------------- */
.hc-partner-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    cursor: pointer;
}

.hc-partner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
    text-decoration: none;
    color: inherit;
}

/* Featured: teal left accent border */
.hc-partner-card.hc-featured {
    border-left: 3px solid #0d9488;
}

/* --- Card accent top bar (category color) ---------------- */
.hc-card-accent-top {
    height: 3px;
    background: var(--card-accent, linear-gradient(135deg, #0d9488, #0891b2));
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.18s ease;
}
.hc-partner-card:hover .hc-card-accent-top {
    opacity: 1;
}

/* --- Logo area -------------------------------------------- */
.hc-logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    background: #ffffff;
    padding: .75rem;
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0;
    overflow: hidden;
}

/* Explicit pixel max-height — percentage heights are unreliable in flex */
.hc-logo-area img {
    max-width: 220px;
    max-height: 108px;
    width: auto;
    height: auto;
    display: block;
}

/* Subtle border when partner has a real image */
.hc-logo-area.hc-has-image {
    background: #f8fafc;
}

/* Initials fallback — fills full logo area */
.hc-logo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* --- Card body -------------------------------------------- */
.hc-card-body {
    padding: 0.875rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hc-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.hc-card-tagline {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* --- Card view link --------------------------------------- */
.hc-card-view-link {
    margin-top: 0.625rem;
    padding-top: 0.625rem;
    border-top: 1px solid #f1f5f9;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0d9488;
    text-align: right;
    transition: color 0.2s ease;
}

.hc-partner-card:hover .hc-card-view-link {
    color: #0f766e;
}

/* --- Card footer ------------------------------------------ */
.hc-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.75rem;
}

/* --- Info chip -------------------------------------------- */
.hc-chip {
    font-size: 0.75rem;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 0.2rem 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

/* Verified chip */
.hc-chip-verified {
    background: #dcfce7;
    color: #15803d;
    border-color: #bbf7d0;
}

/* Contact info chip — teal accent */
.hc-chip-contact {
    background: #f0fdfa;
    color: #0d9488;
    border-color: #99f6e4;
    font-weight: 500;
}

/* --- Empty state ------------------------------------------ */
.hc-empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #64748b;
}

.hc-empty-state h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.hc-empty-state p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

/* --- Breadcrumb ------------------------------------------- */
.hc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hc-breadcrumb a {
    color: #0d9488;
    text-decoration: none;
}

.hc-breadcrumb a:hover {
    text-decoration: underline;
}

.hc-breadcrumb-sep {
    color: #cbd5e1;
    user-select: none;
}

.hc-breadcrumb-current {
    color: #0f172a;
    font-weight: 500;
}

/* --- Reusable section heading ----------------------------- */
.hc-section-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .875rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid #f0fdfa;
}

/* --- Detail section spacing ------------------------------- */
.hc-detail-section {
    margin-bottom: 1.25rem;
}

/* --- Partner detail hero ---------------------------------- */

/* Outer wrapper — clips the blurred background layers */
.hc-detail-hero-outer {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

/* Blurred logo — fills the outer container as a color wash */
.hc-detail-hero-blur {
    position: absolute;
    inset: -40px;
    background-size: cover;
    background-position: center;
    filter: blur(32px) saturate(2.2) brightness(1.05);
    transform: scale(1.15);
    z-index: 0;
}

/* Banner blur variant — darker, less saturated so the real photo pops */
.hc-detail-hero-blur-banner {
    filter: blur(24px) saturate(1.4) brightness(0.6);
}

/* Banner photo — cover fills the container; the inline object-position style
   (set from BannerFocalPoint) controls which part is visible.
   top center = heads visible, bottom cropped. center = middle of image shown. */
.hc-detail-hero-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark overlay for banner text legibility */
.hc-detail-hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 2;
}

/* Fallback gradient for partners without a logo */
.hc-detail-hero-blur-default {
    background: linear-gradient(135deg, #0d9488, #0891b2);
    filter: none;
}

/* Semi-transparent white overlay — softens the blur into a pastel wash */
.hc-detail-hero-blur-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.68);
    z-index: 1;
}

/* Bottom fade — smooth transition from hero into white page content */
.hc-detail-hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
    z-index: 4;
    pointer-events: none;
}

/* Actual hero content sits above all blur/overlay layers.
   z-index:3 clears the banner overlay (z:2) and logo blur-overlay (z:1). */
.hc-detail-hero {
    position: relative;
    z-index: 3;
    padding: 3rem 2.5rem 2.5rem;
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    background: transparent;
    min-height: 420px;
}

.hc-detail-hero-logo {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.85);
    box-shadow: 0 2px 12px rgba(0,0,0,0.14);
    backdrop-filter: blur(4px);
}

.hc-detail-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.hc-detail-hero-logo-placeholder {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0d9488;
}

.hc-detail-hero-text h1 {
    color: #0f172a;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 3px rgba(255,255,255,0.6);
    line-height: 1.2;
}

.hc-detail-hero-tagline {
    color: #334155;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
}

.hc-detail-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.9);
    color: #0f172a;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-top: 0.5rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* Logo-as-photo tile — contains the image with padding (not cropped) */
.hc-photo-item-logo img {
    object-fit: contain !important;
    padding: 1.25rem;
    background: #fff;
}

/* --- Category tile grid (admin) -------------------------------- */
.hc-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    padding: .5rem 0;
}

/* --- Detail page contact rows ----------------------------- */
.hc-contact-row {
    display: flex;
    align-items: center;
    gap: .625rem;
    color: #0f172a;
    text-decoration: none;
    font-size: .875rem;
}
.hc-contact-row:hover { color: #0d9488; text-decoration: none; }

.hc-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* --- Social media buttons --------------------------------- */
.hc-social-btn {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .625rem .875rem;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: .875rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.hc-social-btn:hover { opacity: 0.9; text-decoration: none; color: white; }
.hc-social-facebook  { background: #1877f2; }
.hc-social-instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.hc-social-tiktok    { background: #010101; }
.hc-social-youtube   { background: #ff0000; }
.hc-social-linkedin  { background: #0a66c2; }
.hc-social-twitter   { background: #000000; }
.hc-social-pinterest { background: #e60023; }
.hc-social-threads   { background: #101010; }
.hc-social-snapchat  { background: #fffc00; color: #000; }
.hc-social-snapchat:hover { color: #000; }
.hc-social-whatsapp  { background: #25d366; }
.hc-social-booking   { background: #0d9488; }

/* --- Back link -------------------------------------------- */
.hc-back-link {
    display: flex;
    align-items: center;
    gap: .375rem;
    color: #0d9488;
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
}
.hc-back-link:hover { text-decoration: underline; }

/* --- Description prose ------------------------------------ */
.hc-description {
    font-size: .95rem;
    line-height: 1.8;
    color: #374151;
}
.hc-description p  { margin-bottom: 1rem; }
.hc-description p:last-child { margin-bottom: 0; }
.hc-description h2 { font-size: 1.1rem; font-weight: 700; margin: 1.5rem 0 .625rem; color: #0f172a; border-bottom: 2px solid #f0fdfa; padding-bottom: .375rem; }
.hc-description h2:first-child { margin-top: 0; }
.hc-description h3 { font-size: 1rem; font-weight: 700; margin: 1.25rem 0 .5rem; color: #0d9488; }
.hc-description h3:first-child { margin-top: 0; }
.hc-description h4 { font-size: .9rem; font-weight: 600; margin: 1rem 0 .375rem; color: #374151; }
.hc-description ul, .hc-description ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.hc-description li { margin-bottom: .5rem; }
.hc-description a  { color: #0d9488; text-decoration: underline; }
.hc-description strong { color: #0f172a; font-weight: 600; }
.hc-description em { color: #475569; }
/* Strip empty paragraphs that appear when HTML has extra <br> or empty tags */
.hc-description p:empty { display: none; }

/* --- Detail grid — stack on mobile ----------------------- */
.hc-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 1.25rem;
    align-items: start;
}

/* --- Banner hero variant — taller than logo-only hero, full image visible via contain --- */
.hc-detail-hero.hc-detail-hero--banner {
    min-height: min(600px, 55vw);
}

.hc-detail-hero--banner .hc-detail-hero-text h1 {
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.hc-detail-hero--banner .hc-detail-hero-tagline {
    color: rgba(255,255,255,0.88);
}
.hc-detail-hero--banner .hc-detail-hero-logo {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.5);
}

/* --- Related businesses section --------------------------- */
.hc-related-section {
    margin-top: 1.5rem;
}

.hc-related-divider {
    height: 2px;
    background: linear-gradient(90deg, #0d9488, #06b6d4, transparent);
    border-radius: 1px;
    margin-bottom: 1.25rem;
}

/* Compact grid for related cards */
.hc-related-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.hc-related-grid .hc-logo-area {
    height: 110px;
}
.hc-related-grid .hc-logo-area img {
    max-height: 80px;
}

/* --- Photo gallery grid ----------------------------------- */
.hc-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 200px));
    gap: .75rem;
}

.hc-photo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5f9;
    cursor: pointer;
    border: none;
    padding: 0;
    aspect-ratio: 1;
    width: 100%;
    transition: transform .15s ease, box-shadow .15s ease;
}

.hc-photo-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.hc-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hc-photo-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    color: white;
    font-size: .72rem;
    padding: .5rem .5rem .375rem;
    line-height: 1.3;
}

/* --- Lightbox --------------------------------------------- */
.hc-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    cursor: pointer;
}

.hc-lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    cursor: default;
}

.hc-lightbox-inner img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 10px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.hc-lightbox-caption {
    color: rgba(255,255,255,0.85);
    text-align: center;
    margin-top: .625rem;
    font-size: .875rem;
}

.hc-lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: none;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    color: #0f172a;
}
.hc-lightbox-close:hover { background: #f1f5f9; }

/* =============================================================
   PUBLIC DIRECTORY HOME — /businessdirectory
   ============================================================= */

/* --- Hero with gradient background ----------------------- */
.hc-dir-hero {
    position: relative;
    background: linear-gradient(135deg, #0f4f4a 0%, #0d9488 40%, #06b6d4 100%);
    border-radius: 20px;
    padding: 3.5rem 1.5rem 2.5rem;
    text-align: center;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

/* Subtle dot pattern overlay */
.hc-dir-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
}

.hc-dir-hero-content {
    position: relative;
    z-index: 1;
}

.hc-dir-hero-wordmark {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hc-dir-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    margin: 0 0 1.75rem;
    font-weight: 500;
}

/* Hero search form wrapper */
.hc-dir-hero-search-form {
    width: 100%;
    max-width: 420px;
}

/* Hero search bar (real form) */
.hc-dir-hero-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    width: 100%;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.hc-dir-hero-search:focus-within {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.22);
}
.hc-dir-hero-search svg {
    flex-shrink: 0;
    opacity: 0.7;
}
.hc-dir-hero-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 0.95rem;
    min-width: 0;
}
.hc-dir-hero-search-input::placeholder {
    color: rgba(255,255,255,0.55);
}
.hc-dir-hero-search-btn {
    background: rgba(255,255,255,0.25);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
}
.hc-dir-hero-search-btn:hover {
    background: rgba(255,255,255,0.38);
}

/* Search results page header */
.hc-search-header {
    background: linear-gradient(135deg, #0d9488, #0891b2);
    padding: 2rem 0 1.5rem;
    margin-bottom: 1.5rem;
}
.hc-search-header-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.hc-search-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0.5rem 0 1.25rem;
}
.hc-search-title em {
    font-style: italic;
    opacity: 0.9;
}
.hc-search-count {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0 0 1rem;
}

/* Search bar on search results page */
.hc-search-bar-form {
    width: 100%;
}
.hc-search-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    width: 100%;
    max-width: 560px;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.hc-search-bar:focus-within {
    border-color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.26);
}
.hc-search-bar svg {
    flex-shrink: 0;
    opacity: 0.7;
    color: #ffffff;
}
.hc-search-bar-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 0.95rem;
    min-width: 0;
}
.hc-search-bar-input::placeholder {
    color: rgba(255,255,255,0.55);
}
.hc-search-bar-btn {
    background: rgba(255,255,255,0.25);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1.1rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
}
.hc-search-bar-btn:hover {
    background: rgba(255,255,255,0.4);
}

/* Category label chip on search result cards */
.hc-card-category-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}

/* Legacy (keep for backward compat with any non-public callers) */
.hc-dir-tagline {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
}

/* --- Category tile grid ---------------------------------- */
.hc-dir-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    padding: 1.5rem 0 2rem;
}

.hc-dir-category-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    padding: 1.75rem 1rem 1.25rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
}

.hc-dir-category-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.11);
    text-decoration: none;
    color: inherit;
}

.hc-dir-tile-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.hc-dir-category-tile:hover .hc-dir-tile-icon {
    transform: scale(1.08);
}

.hc-dir-tile-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

/* Bottom accent bar using category gradient */
.hc-dir-tile-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--tile-accent, linear-gradient(135deg, #0d9488, #0891b2));
    opacity: 0;
    transition: opacity 0.2s ease, height 0.2s ease;
}

.hc-dir-category-tile:hover .hc-dir-tile-accent {
    opacity: 1;
    height: 4px;
}

/* =============================================================
   CATEGORY ARCHIVE — /businessdirectory/{slug}
   ============================================================= */

/* --- Category header ------------------------------------- */
.hc-cat-header {
    position: relative;
    background: var(--cat-gradient, linear-gradient(135deg, #0d9488, #0891b2));
    border-radius: 16px;
    padding: 2.25rem 2rem;
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Subtle dot pattern overlay (matches hero) */
.hc-cat-header-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px);
    background-size: 18px 18px;
    z-index: 0;
}

.hc-cat-header-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.hc-cat-header-emoji {
    font-size: 3.25rem;
    line-height: 1;
    flex-shrink: 0;
}

.hc-cat-header-title {
    color: white;
    font-size: 1.85rem;
    font-weight: 800;
    margin: 0 0 .3rem;
    line-height: 1.2;
}

.hc-cat-header-subtitle {
    color: rgba(255,255,255,0.82);
    margin: 0;
    font-size: .95rem;
    font-weight: 500;
}

/* --- Badges row (partner detail page) ----------------------------- */
.hc-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.hc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    border: 1px solid transparent;
    white-space: nowrap;
}

.hc-badge-category {
    background: #f0fdfa;
    color: #0d9488;
    border-color: #99f6e4;
}

.hc-badge-verified {
    background: #dcfce7;
    color: #15803d;
    border-color: #bbf7d0;
}

.hc-badge-tier {
    background: #fef9c3;
    color: #854d0e;
    border-color: #fde047;
}

/* =============================================================
   FOOTER
   ============================================================= */

.hc-footer {
    background: #0f172a;
    border-radius: 16px 16px 0 0;
    margin-top: 3rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.hc-footer-inner {
    max-width: 600px;
    margin: 0 auto;
}

.hc-footer-brand {
    margin-bottom: 1rem;
}

.hc-footer-logo {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 0.375rem;
}

.hc-footer-tagline {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}

.hc-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.875rem;
}

.hc-footer-links a {
    color: #0d9488;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}
.hc-footer-links a:hover {
    text-decoration: underline;
    color: #14b8a6;
}

.hc-footer-sep {
    color: rgba(255,255,255,0.25);
    font-size: 0.85rem;
}

.hc-footer-copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 768px) {
    .hc-dir-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hc-detail-grid {
        grid-template-columns: 1fr !important;
    }
    .hc-dir-hero-wordmark {
        font-size: 2.15rem;
    }
    .hc-dir-hero {
        padding: 2.5rem 1rem 2rem;
    }
    .hc-cat-header {
        padding: 1.75rem 1.25rem;
    }
    .hc-cat-header-emoji {
        font-size: 2.5rem;
    }
    .hc-cat-header-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hc-detail-hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem 1.25rem 1.25rem;
        gap: 0.875rem;
        min-height: 300px;
    }
    .hc-detail-hero.hc-detail-hero--banner {
        min-height: 200px;
    }
    .hc-detail-hero-logo {
        width: 72px;
        height: 72px;
    }
    .hc-detail-hero-text h1 {
        font-size: 1.35rem;
    }
    .hc-detail-hero-tagline {
        font-size: 0.95rem;
    }
    .hc-cat-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .hc-footer-links {
        flex-direction: column;
        gap: 0.375rem;
    }
    .hc-footer-sep {
        display: none;
    }
}

@media (max-width: 480px) {
    .hc-dir-category-grid {
        grid-template-columns: 1fr;
    }
    .hc-dir-hero-wordmark {
        font-size: 1.85rem;
    }
    .hc-dir-hero-subtitle {
        font-size: 1rem;
    }
    .hc-partner-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================================
   ABOUT PAGE
   ============================================================= */

.hc-about-hero {
    position: relative;
    min-height: 480px;
    background: url('images/pages/hero-hutch-sunset.jpg') center center / cover no-repeat, linear-gradient(135deg, #0f4f4a 0%, #0d9488 60%, #06b6d4 100%);
    display: flex;
    align-items: flex-end;
    padding: 0 1.5rem 3.5rem;
}
.hc-about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,15,26,0.82) 0%, rgba(10,15,26,0.25) 55%, transparent 100%);
}
.hc-about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.hc-about-hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #5eead4;
    margin: 0 0 0.5rem;
}
.hc-about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 0.875rem;
}
.hc-about-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.6;
    margin: 0 0 1.5rem;
    max-width: 520px;
}
.hc-about-hero-cta {
    display: inline-block;
    background: #0d9488;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s;
}
.hc-about-hero-cta:hover { background: #0f766e; }

/* --- Shared section layout --- */
.hc-about-section {
    padding: 3.5rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hc-about-container {
    max-width: 780px;
    margin: 0 auto;
}
.hc-about-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 1rem;
}
.hc-about-section-sub {
    color: #94a3b8;
    margin-bottom: 2rem;
    font-size: 1rem;
}
.hc-about-lead {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.hc-about-section p {
    color: #94a3b8;
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* --- Features grid --- */
.hc-about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 0.5rem;
}
.hc-about-feature {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 10px;
    padding: 1.25rem;
}
.hc-about-feature-icon {
    font-size: 1.75rem;
    margin-bottom: 0.625rem;
}
.hc-about-feature h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 0.5rem;
}
.hc-about-feature p {
    font-size: 0.825rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* --- Verified section --- */
.hc-about-verified-section {
    background: rgba(13,148,136,0.07);
    border-top: 1px solid rgba(13,148,136,0.2);
    border-bottom: 1px solid rgba(13,148,136,0.2);
}
.hc-about-verified-inner {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}
.hc-about-verified-badge {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 0.25rem;
}
.hc-about-disclaimer {
    font-size: 0.78rem !important;
    color: #475569 !important;
    border-top: 1px solid #1e293b;
    padding-top: 0.875rem;
    margin-top: 1rem !important;
}

/* --- Community section --- */
.hc-about-community-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.hc-about-community-quote {
    background: #1e293b;
    border-left: 3px solid #0d9488;
    border-radius: 0 10px 10px 0;
    padding: 1.5rem;
    align-self: center;
}
.hc-about-community-quote blockquote {
    font-size: 1rem;
    font-style: italic;
    color: #e2e8f0;
    line-height: 1.6;
    margin: 0 0 0.75rem;
}
.hc-about-community-quote cite {
    font-size: 0.78rem;
    color: #5eead4;
    font-style: normal;
    font-weight: 500;
}

/* --- ForWardAI / contact --- */
.hc-about-forwardai a { color: #0d9488; }
.hc-about-forwardai a:hover { color: #14b8a6; }
.hc-about-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
}
.hc-about-contact-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9rem;
}
.hc-about-contact-item a { color: #0d9488; text-decoration: none; }
.hc-about-contact-item a:hover { color: #14b8a6; text-decoration: underline; }

/* --- Bottom CTA --- */
.hc-about-cta-section {
    background: linear-gradient(135deg, #0f4f4a 0%, #134e4a 100%);
    padding: 3rem 1.5rem;
}
.hc-about-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.hc-about-cta-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.375rem;
}
.hc-about-cta-sub {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0;
}
.hc-about-cta-btns {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}
.hc-about-btn-primary {
    background: #0d9488;
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s;
}
.hc-about-btn-primary:hover { background: #0f766e; }
.hc-about-btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background 0.15s;
}
.hc-about-btn-secondary:hover { background: rgba(255,255,255,0.18); }

/* --- About page responsive --- */
@media (max-width: 768px) {
    .hc-about-hero-title { font-size: 2.25rem; }
    .hc-about-features { grid-template-columns: repeat(2, 1fr); }
    .hc-about-community-inner { grid-template-columns: 1fr; }
    .hc-about-cta-inner { flex-direction: column; align-items: flex-start; }
    .hc-about-cta-btns { flex-wrap: wrap; }
    .hc-about-verified-inner { flex-direction: column; gap: 1rem; }
}
@media (max-width: 480px) {
    .hc-about-hero { min-height: 360px; padding-bottom: 2.5rem; }
    .hc-about-hero-title { font-size: 1.85rem; }
    .hc-about-features { grid-template-columns: 1fr; }
}

/* --- Admin media manager — stack profile/banner cards on small screens --- */
@media (max-width: 700px) {
    .hc-media-top-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =============================================================
   ADMIN PARTNERS PAGE — MOBILE RESPONSIVE
   ============================================================= */

/* At 768px: hide Category + Status columns, keep Name + Actions */
@media (max-width: 768px) {
    /* Hide Category (2nd col) and Status (3rd col) header and cells */
    .hc-admin-table-wrap th:nth-child(2),
    .hc-admin-table-wrap td:nth-child(2),
    .hc-admin-table-wrap th:nth-child(3),
    .hc-admin-table-wrap td:nth-child(3) {
        display: none;
    }

    /* Ensure Actions column (4th) fits and buttons are accessible */
    .hc-admin-table-wrap th:nth-child(4),
    .hc-admin-table-wrap td:nth-child(4) {
        width: auto;
        white-space: nowrap;
    }

    /* Bigger tap targets for action buttons on mobile */
    .hc-admin-table-wrap .btn-sm {
        padding: 0.4rem 0.75rem !important;
        font-size: 0.82rem !important;
        min-height: 36px;
        display: inline-flex;
        align-items: center;
    }

    /* Let partner name truncate gracefully */
    .hc-row-name {
        max-width: 160px;
    }

    /* Allow table to scroll horizontally if still tight */
    .hc-admin-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Partners page header: stack vertically on mobile */
    .page-header > div:last-child {
        flex-wrap: wrap;
    }
}

/* At 480px: switch to card layout — each row becomes its own block */
@media (max-width: 480px) {
    .hc-admin-table-wrap thead {
        display: none; /* hide column headers — labels come from data-label */
    }

    .hc-admin-table-wrap table,
    .hc-admin-table-wrap tbody,
    .hc-admin-table-wrap tr,
    .hc-admin-table-wrap td {
        display: block;
        width: 100%;
    }

    .hc-admin-table-wrap tr {
        border-bottom: 1px solid #e2e8f0;
        padding: 0.75rem 1rem;
    }

    .hc-admin-table-wrap tr:last-child {
        border-bottom: none;
    }

    /* Re-show all columns in card mode */
    .hc-admin-table-wrap td:nth-child(2),
    .hc-admin-table-wrap td:nth-child(3) {
        display: block;
    }

    /* Row 1: partner name (full width) */
    .hc-admin-table-wrap td:nth-child(1) {
        padding: 0 0 0.5rem 0;
        border-bottom: none;
    }

    /* Row 2: category */
    .hc-admin-table-wrap td:nth-child(2) {
        padding: 0 0 0.375rem 0;
        border-bottom: none;
    }

    /* Row 3: status pills */
    .hc-admin-table-wrap td:nth-child(3) {
        padding: 0 0 0.5rem 0;
        border-bottom: none;
    }

    /* Row 4: action buttons — left-aligned in card */
    .hc-admin-table-wrap td:nth-child(4) {
        padding: 0;
        border-bottom: none;
        text-align: left !important;
    }

    .hc-admin-table-wrap td:nth-child(4) > div {
        justify-content: flex-start !important;
    }

    /* Unlock partner name width in card mode */
    .hc-row-name {
        max-width: none;
        white-space: normal;
    }
}

/* =============================================================
   FOOTER V2 — 4-column layout
   ============================================================= */

.hc-footer-v2 {
    background: #f3f4f6;
    margin-top: 3rem;
    padding: 3rem 1.5rem 0;
    font-size: 0.875rem;
    color: #374151;
}

.hc-footer-v2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2.5rem;
}

/* Col 1 — Brand */
.hc-footer-v2-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hc-footer-v2-tagline {
    font-size: 1.25rem;
    font-weight: 800;
    font-family: Georgia, 'Times New Roman', serif;
    color: #111827;
    line-height: 1.2;
    margin: 0;
}

.hc-footer-v2-logo-img {
    height: 80px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    border-radius: 6px;
    display: block;
}

.hc-footer-v2-logo-text {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #0d9488;
    text-decoration: none;
}
.hc-footer-v2-logo-text:hover { color: #0f766e; text-decoration: none; }

/* Column headers */
.hc-footer-v2-col-header {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin: 0 0 1rem;
}

/* Nav/resource link lists */
.hc-footer-v2-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.hc-footer-v2-link-list a {
    color: #374151;
    text-decoration: none;
    line-height: 1.35;
}
.hc-footer-v2-link-list a:hover {
    color: #0d9488;
    text-decoration: underline;
}

/* Contact column */
.hc-footer-v2-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.hc-footer-v2-contact-company {
    font-weight: 700;
    color: #111827;
}

.hc-footer-v2-contact-icon {
    display: inline-block;
    width: 1.25rem;
    text-align: center;
    margin-right: 0.25rem;
    font-size: 0.85rem;
}

.hc-footer-v2-contact-list a {
    color: #374151;
    text-decoration: none;
}
.hc-footer-v2-contact-list a:hover {
    color: #0d9488;
    text-decoration: underline;
}

.hc-footer-v2-disclaimer {
    margin: 1.25rem 0 0;
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.5;
}

/* Full-width copyright bar */
.hc-footer-v2-copyright {
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive: 2-column tablet, 1-column mobile */
@media (max-width: 900px) {
    .hc-footer-v2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .hc-footer-v2-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
