/* =========================================================
   FAQ HOME
========================================================= */

.faq-home {

    padding: 42px 24px;

    background: #f5f5f7;

}

/* =========================================================
   HEADER
========================================================= */

.faq-home__header {

    text-align: center;

    margin-bottom: 18px;

}

/* =========================================================
   TITLE
========================================================= */

.faq-home__title {

    font-size: 28px;

    font-weight: 800;

    line-height: 1.15;

    color: var(--color-primary);

}

.faq-home__title span {

    color: var(--color-secondary);

}

/* =========================================================
   GRID
========================================================= */

.faq-home__grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;

}

/* =========================================================
   ITEM
========================================================= */

.faq-home__item {

    padding: 18px;

    border-radius: 16px;

    background: #ffffff;

    border: 1px solid #ececf2;

    min-height: 145px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    transition: var(--transition-fast);

}

.faq-home__item:hover {

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0,0,0,0.03);

}

/* =========================================================
   TOP
========================================================= */

.faq-home__top {

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 14px;

}

/* =========================================================
   ICON
========================================================= */

.faq-home__icon {

    width: 44px;
    height: 44px;

    border-radius: 50%;

    border: 1px solid #ececf2;

    background: #ffffff;

    display: flex;

    align-items: center;
    justify-content: center;

}

.faq-home__icon svg {

    width: 20px;
    height: 20px;

    stroke: var(--color-primary);

    stroke-width: 2;

}

/* =========================================================
   TOGGLE
========================================================= */

.faq-home__toggle {

    border: none;

    background: transparent;

    cursor: pointer;

    padding: 0;

    width: 20px;
    height: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

}

.faq-home__toggle svg {

    width: 16px;
    height: 16px;

    stroke: var(--color-primary);

    stroke-width: 2.4;

}

/* =========================================================
   QUESTION
========================================================= */

.faq-home__question {

    font-size: 15px;

    font-weight: 700;

    line-height: 1.45;

    color: var(--color-primary);

    margin-bottom: 8px;

}

/* =========================================================
   TEXT
========================================================= */

.faq-home__text {

    font-size: 13px;

    line-height: 1.7;

    color: #6b7280;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .faq-home__grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media (max-width: 768px) {

    .faq-home {

        padding: 40px 16px;

    }

    .faq-home__title {

        font-size: 24px;

    }

    .faq-home__grid {

        grid-template-columns: 1fr;

    }

    .faq-home__item {

        min-height: auto;

        padding: 16px;

    }

    .faq-home__icon {

        width: 40px;
        height: 40px;

    }

    .faq-home__icon svg {

        width: 18px;
        height: 18px;

    }

    .faq-home__question {

        font-size: 14px;

    }

    .faq-home__text {

        font-size: 12px;

    }

}