.hookain-faq {
    margin: 1.5rem 0;
}

.hookain-faq__heading {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    line-height: 1.25;
}

.hookain-faq__items {
    display: grid;
    gap: .75rem;
}

.hookain-faq__item {
    border: 1px solid rgba(17, 24, 39, .14);
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
}

.hookain-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 3.25rem;
    padding: .9rem 1rem;
    cursor: pointer;
    font-weight: 700;
    line-height: 1.35;
    list-style: none;
}

.hookain-faq__question::-webkit-details-marker {
    display: none;
}

.hookain-faq__icon {
    position: relative;
    flex: 0 0 1rem;
    width: 1rem;
    height: 1rem;
}

.hookain-faq__icon::before,
.hookain-faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: translateY(-50%);
}

.hookain-faq__icon::after {
    transform: translateY(-50%) rotate(90deg);
}

.hookain-faq__item[open] .hookain-faq__icon::after {
    opacity: 0;
}

.hookain-faq__answer {
    padding: 0 1rem 1rem;
    color: #374151;
    line-height: 1.6;
}

.hookain-faq__answer > :last-child {
    margin-bottom: 0;
}

.hookain-faq--empty {
    padding: 1rem;
    border: 1px dashed rgba(17, 24, 39, .25);
    border-radius: 4px;
}

@media (max-width: 575.98px) {
    .hookain-faq {
        margin: 1rem 0;
    }

    .hookain-faq__heading {
        font-size: 1.25rem;
    }

    .hookain-faq__question {
        min-height: 3rem;
        padding: .8rem .9rem;
    }
}
