.gbp-section__collapsible {
    position: relative;
    max-height: 22rem;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.gbp-section__collapsible::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4rem;
    background: linear-gradient(to bottom, transparent, var(--contrast, #fff));
    pointer-events: none;
    transition: opacity 0.3s ease-out;
}

.gbp-section__collapsible.is-expanded,
.gbp-section__collapsible.is-expanded .gbp-section__collapsible {
    max-height: 200rem;
}

.gbp-section__collapsible.is-expanded::after,
.gbp-section__collapsible.is-expanded .gbp-section__collapsible::after {
    opacity: 0;
}

[data-read-more-toggle]::after {
    transition: transform 0.3s ease;
}

[data-read-more-toggle][aria-expanded="true"]::after {
    transform: rotate(-90deg);
}
