/* ==========================================
   FAQ SECTION
   ========================================== */

.faq-section {
    width: 100%;
}

.faq-section .faq-container {
    width: 100%;
    box-sizing: border-box;
}

/* ==========================================
   FILTROS
   ========================================== */

.faq-section .training-filters {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

/* Wrapper del select */
.faq-section .training-wrapper {
    flex: 0 0 auto;
    max-width: 100%;
}

/* Select */
.faq-section .general-select {
    width: auto;
    min-width: 320px;
    max-width: 100%;
    box-sizing: border-box;
}

/* Botón */
.faq-section .filter-btn {
    width: auto;
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* ==========================================
   <= 1200px
   ========================================== */

@media screen and (max-width: 1200px) {

    .faq-section .training-filters {
        gap: 12px;
    }

    .faq-section .general-select {
        min-width: 300px;
    }

}

/* ==========================================
   <= 1100px
   ========================================== */

@media screen and (max-width: 1100px) {

    .faq-section .training-filters {
        gap: 10px;
    }

    .faq-section .general-select {
        min-width: 280px;
    }

}

/* ==========================================
   <= 900px
   ========================================== */

@media screen and (max-width: 900px) {

    .faq-section .training-filters {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .faq-section .training-wrapper {
        width: auto;
        max-width: 100%;
    }

    .faq-section .general-select {
        width: auto;
        min-width: 260px;
        max-width: 100%;
    }

    .faq-section .filter-btn {
        width: auto;
        align-self: flex-start;
    }

}

/* ==========================================
   <= 600px
   ========================================== */

@media screen and (max-width: 600px) {

    .faq-section .training-filters {
        gap: 10px;
    }

    .faq-section .general-select {
        min-width: 220px;
        max-width: 100%;
    }

    .faq-section .filter-btn {
        width: auto;
        align-self: flex-start;
    }

}