.iodnations_faq_list.iodnations_faq_list {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* ── Item card ── */
.iodnations_faq_list .iodnations_faq_item {
    border-style: solid;
    overflow: hidden;
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

/* ── Button ── */
.iodnations_faq_list .iodnations_faq_button {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: color .25s;
}

.iodnations_faq_list .iodnations_faq_button:hover {
    background: none;
}

.iodnations_faq_list .iodnations_faq_button:focus {
    background: transparent;
    border: none;
    outline: none;
}

.iodnations_faq_list .iodnations_faq_button span:not(.iodnations_faq_icon) {
    flex: 1;
    text-align: left;
    white-space: normal;
    display: block;
}

/* ── Icon: dark circle with + ── */
.iodnations_faq_list .iodnations_faq_icon {
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    position: relative;
}

.iodnations_faq_list .iodnations_faq_icon::before,
.iodnations_faq_list .iodnations_faq_icon::after {
    content: '';
    position: absolute;
    transition: all .35s cubic-bezier(.16, 1, .3, 1);
}

.iodnations_faq_list .iodnations_faq_icon::before {
    width: 38%;
    height: 2px;
}

.iodnations_faq_list .iodnations_faq_icon::after {
    width: 2px;
    height: 38%;
}

/* Open: rotate icon to × */
.iodnations_faq_list .iodnations_faq_item.iodnations_open .iodnations_faq_icon {
    transform: rotate(45deg);
}

/* ── Panel ── */
.iodnations_faq_list .iodnations_hidden {
    display: none;
}

.iodnations_faq_list .iodnations_faq_panel {
    overflow: hidden;
}

/* ── Panel content ── */
.iodnations_faq_list .iodnations_faq_content a {
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.iodnations_faq_list .iodnations_faq_content strong {
    font-weight: 600;
}

.iodnations_faq_item h3 {
    margin-block: 0;
}