{# Container #}
.gha__accordions {
    
}

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

.accordion__item {
    
}

{# Heading #}
.gha__accordions .heading {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    text-transform: none;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e5e5;
    background: transparent;
    font-size: 1.25rem;
    transition: all .3s linear;
}

.gha__accordions .heading:hover,
.gha__accordions .heading:active,
.gha__accordions .heading:focus,
.gha__accordions .heading[aria-expanded="true"] {
    border-color: #a7abae;
}

.gha__accordions .heading[aria-expanded="true"] {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
}

{# Content #}
.gha__accordions .content {
    overflow: hidden;
    max-height: 0;
    padding: 0 1.5rem;
    opacity: 0;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    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-bottom: 1.5rem;
    border: 1px solid #a7abae;
    border-top: none;
}

{# Toggle Icons #}
.menu__child-toggle-icon {
    line-height: 0;
    transition: transform 0.2s linear;
}

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