:root {
--bg: #ffffff;
--card: #f3f4f6;
--text: #111827;
--muted: #374151;
--radius: 18px;
--pad: 18px;
--gap: 14px;
--dur: 260ms;
}

.wrap {
    width: min(759px, 100%);
    margin: 0 auto;
}


.acc-item[data-open="true"] {
    transform: scale(1.2);
    margin-bottom: 8px;
    z-index: 2;
    position: relative;
    padding: 12.5px 0;
    transition: 300ms;
}

.acc-item[data-open="true"]:not(:first-child) {
    margin-top: 8px;
}

.accordion {
    display: grid;
    gap: 8px
}




.acc-header {
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    color: #000;
    font-family: "Degular Variable";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 128%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 34.5px 28px;
}
.acc-header p {
    white-space: normal;
    padding: 0;
    margin-bottom: 0;
}
.acc-header:focus-visible {
    outline: none;
    border-radius: 18px;
}

.acc-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.acc-item {
    border-radius: 18px;
    border-radius: var(--radius);
    overflow: hidden;
    transition:
            transform 300ms cubic-bezier(.2, .8, .2, 1),
            background 200ms ease,
            box-shadow 300ms ease;
    transform: scale(1);
    /*background: #f5f5f7;*/
    border: 1px solid rgba(0, 0, 0, 0.30);
}


.acc-item[data-open="true"] {
    transform: scale(1.08);
    box-shadow: none;
    position: relative;
    z-index: 2;
    /*background: #fdfdfd;*/
}

.acc-panel {
    display: none;
}

.acc-item[data-open="true"] .acc-panel {
    display: block;
}

.acc-panel-inner {
    padding: 0 34.5px 58px;
    color: #000;
    font-family: "Degular Variable";
    font-size: 20px;
    font-style: normal;
    font-weight: 484;
    line-height: 120%;
    letter-spacing: -0.2px;
}
.acc-panel-inner p {
    padding: 0 !important;
}
.acc-panel-inner a {
    color: #000;
    leading-trim: both;
    text-edge: cap;
    font-family: "Degular Variable";
    font-size: 20px;
    font-style: normal;
    font-weight: 484;
    line-height: 120%;
    letter-spacing: -0.2px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 1.3px;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.acc-panel-inner a:hover {
    text-decoration: none;
}
.acc-item[data-open="true"] .acc-header {
    padding-bottom: 34.9px;
}

[type=button]:focus,
[type=button]:hover,
[type=submit]:focus,
[type=submit]:hover,
button:focus,
button:hover {
    color: black;
    background: none !important;

}
@media(max-width:767px) {
    .acc-item[data-open="true"] {
        transform: scale(1.01) !important;
    }
    .acc-header {
        line-height: 24px;
    }
}