﻿#aboutWrapper {
    position: relative;
}

#aboutContent {
    overflow: hidden;
    max-height: 220px;
    transition: max-height .6s ease;
}

    #aboutContent.expanded {
        max-height: 5000px;
    }

#aboutOverlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    background: linear-gradient( to bottom, transparent, color-mix(in srgb, var(--bs-body-bg) 90%, transparent), var(--bs-body-bg) );
}

#showMore {
    text-decoration: none;
    font-weight: 600;
}
#termsWrapper {
    position: relative;
}

#termsContent {
    overflow: hidden;
    max-height: 220px;
    transition: max-height .6s ease;
}

    #termsContent.expanded {
        max-height: 5000px;
    }

#termsOverlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    background: linear-gradient( to bottom, transparent, color-mix(in srgb, var(--bs-body-bg) 90%, transparent), var(--bs-body-bg) );
}

#showMoreTerms {
    text-decoration: none;
    font-weight: 600;
}