/* ---- Cards ---- */

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
    margin: 0 auto;
}

.faq__title h3 {
    border-bottom: 3px solid #caff33;
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
}

.faq__title {
    text-align: center;
}

.card {
    background: #252529;
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (hover: hover) and (pointer: fine) {
    .card:hover {
        box-shadow: 0 0 20px #38384e, 0 0 15px #25254c;
        transform: scale(1.05);
        transition: all 0.3s ease;

    }
}

.hidden {
    display: none;
}

#showMoreBtn {
    display: block;
    margin: 50px auto 0;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transform: translateZ(0);
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
    box-shadow: var(--shadow-sm);
    background: #9fce1d;
    color: #1a1a1a;
}

@media (hover: hover) and (pointer: fine) {
    #showMoreBtn:hover {
        background: #b6e533;
        transform: scale(1.05);
    }
}

.card__title {
    margin: 0 0 0.6rem 0;
    font-weight: 600;
    font-size: 1.2rem;
    color: #caff33
}

.card__text {
    margin: 0;
    color: #e0e0e0;
    line-height: 1.5;
}

.faq_extra {
    display: contents;
}