/* ============================================================
   HornSports Forum Banner — v1.0.0
   Thin, full-width thread link bar with animated live dot
   ============================================================ */

/* ── Wrapper ─────────────────────────────────────────────── */
.hs-forum-banner {
    display: block;
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
}

/* ── Inner link (full clickable area) ───────────────────── */
.hs-fb-inner {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 0 18px !important;
    min-height: 48px !important;
    width: 100% !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

.hs-fb-inner:hover {
    opacity: 0.9;
}

/* ── Animated green pulse dot ────────────────────────────── */
.hs-fb-dot-wrap {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    width: 18px !important;
    height: 18px !important;
}

/* Outer pulsing ring */
.hs-fb-dot-wrap::before {
    content: '' !important;
    position: absolute !important;
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    background-color: #22c55e !important;
    opacity: 0.3 !important;
    animation: hs-fb-pulse 1.8s ease-out infinite !important;
}

/* Inner solid dot */
.hs-fb-dot {
    position: relative !important;
    z-index: 1 !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: #22c55e !important;
    flex-shrink: 0 !important;
}

@keyframes hs-fb-pulse {
    0%   { transform: scale(0.8); opacity: 0.5; }
    70%  { transform: scale(1.8); opacity: 0;   }
    100% { transform: scale(0.8); opacity: 0;   }
}

/* ── Label badge (e.g. "LIVE DISCUSSION") ───────────────── */
.hs-fb-label {
    font-family: 'Oswald', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1.4px !important;
    text-transform: uppercase !important;
    color: #bf5700 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    padding: 2px 8px !important;
    border: 1px solid #bf5700 !important;
    border-radius: 2px !important;
    line-height: 1.4 !important;
}

/* ── Thread message text ─────────────────────────────────── */
.hs-fb-text {
    font-family: 'Oswald', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    flex: 1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    letter-spacing: 0.3px !important;
}

/* ── CTA button ──────────────────────────────────────────── */
.hs-fb-cta {
    font-family: 'Oswald', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    color: #bf5700 !important;
    border: 1px solid #bf5700 !important;
    border-radius: 3px !important;
    padding: 4px 14px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    transition: background-color 0.2s ease, color 0.2s ease !important;
    line-height: 1.6 !important;
}

.hs-fb-inner:hover .hs-fb-cta {
    background-color: #bf5700 !important;
    color: #ffffff !important;
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 600px) {
    .hs-fb-label {
        display: none !important;
    }
    .hs-fb-text {
        font-size: 13px !important;
    }
    .hs-fb-cta {
        font-size: 11px !important;
        padding: 3px 10px !important;
    }
}
