﻿.faq-hero {
    background: linear-gradient( 180deg, #f8fafc 0%, #ffffff 100% );
    border-bottom: 1px solid #eef2f7;
    padding: 1rem 0 1rem;
}
.input-group-text {
    background: #fff;
    border-right: 0;
}

#faqSearch {
    border-left: 0;
}

    #faqSearch:focus {
        box-shadow: none;
    }

mark {
    background-color: #fff3b0;
    color: inherit;
    padding: .05rem .15rem;
    border-radius: 3px;
}

.faq-card {
    border-radius: 14px;
    transition: .2s ease;
    overflow: hidden;
}

    .faq-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 .75rem 2rem rgba(0,0,0,.08);
    }

.faq-question {
    line-height: 1.35;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #6c757d;
    line-height: 1.8;
    min-height: 95px;
}

.faq-read-more {
    font-weight: 600;
    text-decoration: none;
}
/* ==========================================
   Empty State
========================================== */

.faq-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4.5rem 2rem;
}

    .faq-empty-state i {
        font-size: 4rem;
        color: #d0d7de;
        margin-bottom: 1.5rem;
    }

    .faq-empty-state h3 {
        font-weight: 700;
        margin-bottom: .75rem;
    }

    .faq-empty-state p {
        color: #6c757d;
        margin-bottom: .25rem;
    }

    .faq-empty-state .text-muted {
        font-size: .95rem;
    }