.expandable-content__inner {
    position: relative;
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.expandable-content__inner[data-collapsed="false"] {
    max-height: 9999px;
    -webkit-mask-image: none;
    mask-image: none;
}

.expandable-content__controls {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.expandable-content__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: 600;
    color: inherit;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.expandable-content__toggle::after {
    content: '';
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-top: -0.2em;
}

.expandable-content__toggle[aria-expanded="true"]::after {
    transform: rotate(-135deg);
    margin-top: 0.2em;
}

.expandable-content.is-wide .expandable-content__inner {
    max-height: none;
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
}

.expandable-content.is-wide .expandable-content__controls {
    display: none;
}
