/* ===================================
   Alternatives Page — Page-Specific Styles  v1.1
   Loaded from: assets/css/alternatives-style.css
   
   Note: Card styles (lead-cta-btns, campaign-btn, card-hover)
   are inherited from category-style.css which is also loaded on this page.
   =================================== */

/* ----------------------------------------
   Filter Pills
   ---------------------------------------- */
.alt-filter-btn {
    display: inline-flex;
    align-items: center;
    background: #f1f5f9;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.alt-filter-btn:hover {
    background: #e2e8f0;
}

.alt-filter-btn.is-active {
    background: #6366f1;
    color: #ffffff;
}

@media (min-width: 480px) {
    .alt-filter-btn {
        font-size: 14px;
        padding: 8px 18px;
    }
}

/* ----------------------------------------
   Alternative Card scroll anchor
   ---------------------------------------- */
.alt-card {
    scroll-margin-top: 100px;
}