/* =========================================================
   Referral Strip — referral-strip.css
   Compact single-line banner strip
   ========================================================= */

.ahv-ref-strip-wq91x {
    background: #111111;
    padding: 14px 24px;
}

.ahv-ref-inner-kp37z {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
    padding: 0 16px;
}

/* Left group */
.ahv-ref-left-grp-mn53x {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

/* Icon */
.ahv-ref-icon-rt84m {
    color: #f52008;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Text stack — two lines stacked */
.ahv-ref-text-stack-bv61k {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Pre-line above main tagline */
.ahv-ref-pre-line-jq94f {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: 0.01em;
}

/* Text */
.ahv-ref-tagline-yf28j {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: #d1d5db;
    letter-spacing: 0.01em;
}

.ahv-ref-tagline-yf28j em {
    font-style: normal;
    color: #ffffff;
    font-weight: 700;
}

/* Badge — left pill */
.ahv-ref-badge-nk82t {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(245, 32, 8, 0.15);
    border: 1px solid rgba(245, 32, 8, 0.35);
    color: #f52008;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Vertical separator */
.ahv-ref-sep-dv41m {
    display: inline-block;
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

/* Benefit hint */
.ahv-ref-benefit-xp07w {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: #9ca3af;
    white-space: nowrap;
    flex-shrink: 0;
}

.ahv-ref-benefit-xp07w .fa-quote-left {
    color: #6b7280;
    font-size: 0.65rem;
}

/* Button */
.ahv-ref-btn-cx46u {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 22px;
    border-radius: 50px;
    background: #f52008;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #f52008;
    flex-shrink: 0;
    transition: background 0.22s, color 0.22s, transform 0.22s;
}

.ahv-ref-btn-cx46u:hover {
    background: transparent;
    color: #f52008;
    transform: translateY(-1px);
}

.ahv-ref-btn-arrow-tz19q {
    font-size: 0.7rem;
    transition: transform 0.22s;
}

.ahv-ref-btn-cx46u:hover .ahv-ref-btn-arrow-tz19q {
    transform: translateX(3px);
}

/* Hide unused elements */
.ahv-ref-label-bd09v,
.ahv-ref-divider-ms73c,
.ahv-ref-subline-hm64p,
.ahv-ref-deco-line-vp38s,
.ahv-ref-copy-lx52n {
    display: contents;
    /* passthrough wrapper */
}

/* Tablet — hide decorative extras */
@media (max-width: 768px) {

    .ahv-ref-badge-nk82t,
    .ahv-ref-sep-dv41m,
    .ahv-ref-benefit-xp07w {
        display: none;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .ahv-ref-inner-kp37z {
        gap: 16px;
        flex-direction: column;
        align-items: stretch;
    }

    .ahv-ref-left-grp-mn53x {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 8px;
    }

    .ahv-ref-text-stack-bv61k {
        align-items: center;
    }

    .ahv-ref-pre-line-jq94f {
        text-align: center;
        line-height: 1.4;
    }

    .ahv-ref-tagline-yf28j {
        font-size: 0.85rem;
        text-align: center;
        line-height: 1.4;
    }

    .ahv-ref-btn-cx46u {
        width: 100%;
        justify-content: center;
    }
}