/* ========================= */
/* FAQ SECTION               */
/* ========================= */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: 2rem;
}

.faq-card {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* 🎯 Centered Orange Titles (The Questions) */
.faq-card h3 {
    text-align: center;
    color: var(--primary); 
    font-family: var(--font-heading);
    font-size: 1.15rem; /* Slightly smaller to fit questions */
    margin-bottom: 1rem;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* 🎯 Centered Block Text (The Answers) */
.faq-card p {
    text-align: center;
    color: var(--text-main);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================== */
/* 📱 TABLET & MOBILE SWIPE ADJUSTMENTS (1024px)  */
/* ============================================== */
@media (max-width: 1024px) {
    .faq-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--space-md);
        padding-bottom: var(--space-lg);
        -ms-overflow-style: none;  
        scrollbar-width: none;  
    }
    
    .faq-grid::-webkit-scrollbar { 
        display: none; 
    }
    
    .faq-card {
        flex: 0 0 85vw;
        scroll-snap-align: center;
        padding: var(--space-md);
    }
}