/* ROOT */
.chaps-faq-accordion-component {
    font-family: "Hanken Grotesk", sans-serif;

    --faq-bg: transparent;
    --faq-title-color: #18211E;
    --faq-btn-bg: #EFC9F3;
    --faq-btn-txt: #18211E;

    background-color: var(--faq-bg);
}

/* HEADER */
.chaps-faq-accordion__header {
    margin-bottom: 40px;
}

.chaps-faq-accordion__title {
    color: var(--faq-title-color);
    font-size: 37px;
    font-weight: 700;
    line-height: 42px;
    margin-bottom: 16px;
}

.chaps-faq-accordion__intro {
    color: #18211E;
    font-size: 23px;
    font-weight: 300;
    line-height: 24px;
    margin: 0;
}

/* LIST */
.chaps-faq-accordion__list {
    margin-bottom: 40px;
}

.chaps-faq-accordion__item {
    position: relative;
}

/* TRIGGER ROW */
.chaps-faq-accordion__trigger-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.chaps-faq-accordion__trigger {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    padding: 20px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.chaps-faq-accordion__trigger:focus-visible {
    outline: 2px solid #5D7374;
    outline-offset: 2px;
    border-radius: 4px;
}

.chaps-faq-accordion__trigger-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

/* ICON */
.chaps-faq-accordion__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 43.516px;
    height: 42.529px;
    /*border: 1.5px solid #5D7374;*/
    border-radius: 6px;
    overflow: hidden;
}

.chaps-faq-accordion__icon-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* TITLE */
.chaps-faq-accordion__item-title {
    color: #18211E;
    font-size: 24px;
    font-weight: 600;
    line-height: 42px;
}

/* BUTTON */
.chaps-faq-accordion__item-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 10px 24px;
    border-radius: 100px;
    background-color: var(--faq-btn-bg);
    color: var(--faq-btn-txt);
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.chaps-faq-accordion__item-btn:hover {
    opacity: 0.85;
    text-decoration: none;
}

/* MOBILE BUTTON */
@media (max-width: 767px) {
    .chaps-faq-accordion__item-btn {
        order: 10;
        width: 100%;
        justify-content: center;
        margin-bottom: 16px;
    }
}

/* TOGGLE */
.chaps-faq-accordion__toggle-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.chaps-faq-accordion__toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chaps-faq-accordion__toggle-icon svg {
    display: block;
}

/* SEPARATOR */
.chaps-faq-accordion__separator {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.20);
}

/* PANEL */
.chaps-faq-accordion__panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
    will-change: max-height;
}

.chaps-faq-accordion__panel-inner {
    padding-bottom: 28px;
}

.chaps-faq-accordion__panel-inner p,
.chaps-faq-accordion__panel-inner li {
    color: #18211E;
    font-size: 23px;
    font-weight: 300;
    line-height: 24px;
    margin: 0;
}

.chaps-faq-accordion__panel-inner ul {
    list-style: disc;
    padding-left: 24px;
}

.chaps-faq-accordion__panel-inner strong {
    font-weight: 700;
}

/* FOOTER */
.chaps-faq-accordion__footer {
    margin-top: 40px;
}

.chaps-faq-accordion__footer-text {
    color: #18211E;
    font-size: 28px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 20px;
}

.chaps-faq-accordion__footer-text:last-child {
    margin-bottom: 0;
}