.can-be-hidden-heading {
    --can-be-hidden-title-size: 1.75rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 0.25rem;
}

.can-be-hidden-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 9999px;
}

.can-be-hidden:first-child .can-be-hidden-heading {
    margin-top: 0;
}

.can-be-hidden-title {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0;
    font-size: var(--can-be-hidden-title-size);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.can-be-hidden-title::after {
    content: none;
    display: none;
}

.can-be-hidden-toggle {
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
    width: var(--can-be-hidden-title-size);
    height: var(--can-be-hidden-title-size);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 0;
    color: var(--text-color);
}

.can-be-hidden-toggle-icon {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    flex-shrink: 0;
}

.can-be-hidden-toggle-icon svg {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.can-be-hidden-toggle[aria-expanded="true"] .can-be-hidden-toggle-icon svg[data-toggle-icon="plus"][data-theme-icon="light"] {
    display: block;
}

.can-be-hidden-toggle[aria-expanded="false"] .can-be-hidden-toggle-icon svg[data-toggle-icon="minus"][data-theme-icon="light"] {
    display: block;
}

html[data-theme="dark"] .can-be-hidden-toggle[aria-expanded="true"] .can-be-hidden-toggle-icon svg[data-toggle-icon="plus"][data-theme-icon="dark"] {
    display: block;
}

html[data-theme="dark"] .can-be-hidden-toggle[aria-expanded="false"] .can-be-hidden-toggle-icon svg[data-toggle-icon="minus"][data-theme-icon="dark"] {
    display: block;
}

.can-be-hidden-content {
    display: flex;
    flex-direction: column;
    gap: 1.10rem;
}

.can-be-hidden-content[hidden] {
    display: none;
}

@media (max-width: 768px) {
    .can-be-hidden-heading {
        --can-be-hidden-title-size: 1.5rem;
    }
}