{# Container #}
.gha__accordions {
    
}

/* Wrappers */
.gha__accordions > ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.accordion__item {
    border-bottom: 1px solid #DAD9D6;
}

{# Heading #}
.gha__accordions .heading {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    text-transform: none;
    font-family: 'Crete Round', serif;
    padding: 10px 0;
    border: none;
    border-radius: 0;
    background: transparent;
    transition: all .3s linear;
}

.gha__accordions .heading:hover,
.gha__accordions .heading:active,
.gha__accordions .heading:focus,
.gha__accordions .heading[aria-expanded="true"] {
    
}

.gha__accordions .heading[aria-expanded="true"] {
    
}

{# Content #}
.gha__accordions .content {
    overflow: hidden;
    max-height: 0;
    padding: 0;
    opacity: 0;
    transition: max-height 0.3s ease, padding .4s ease, opacity 0.1s ease;
}

.gha__accordions .content *:last-child {
    margin-bottom: 0;
}

.gha__accordions .content[aria-hidden="false"] {
    max-height: 100vh;
    opacity: 1;
    padding: 10px 0 20px 0;
}

{# Toggle Icons #}
.gha__accordions .menu__child-toggle-icon {
    line-height: 0;
    padding-right: 8px;
}

.gha__accordions .menu__child-toggle-icon svg {
    transition: transform 0.2s ease-in-out;
}

.gha__accordions .heading[aria-expanded="true"] .menu__child-toggle-icon svg {
    transform: rotate(180deg);
}