.description {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: calc(100% - 30px);
    margin: 0 auto 25px;
}

@media (min-width: 600px) {
    .description {
        max-width: 600px;
    }
}

@media (min-width: 768px) {
    .description {
        margin-bottom: 60px;
    }
}

.description__header {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.description__content {
    width: 100%;
    max-width: 440px;
    max-height: calc(19px * 3);
    margin-top: 15px;
    overflow: hidden;
    transition: max-height 300ms ease;
    font-size: 14px;
    line-height: 19px;
}

.description__more {
    position: relative;
    bottom: 0;
    width: 100%;
    min-width: calc(100% - 20px);
    max-width: 440px;
    margin-top: 0;
    transition: margin-top 300ms ease;
    background: var(--common-white);
    font-weight: 700;
    text-align: center;
}

.description__more::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: linear-gradient(rgba(255, 255, 255, 0), var(--common-white));
}

.description__more-label {
    display: inline-block;
    cursor: pointer;
}

.description__content--is-expanded + .description__more {
    margin-top: 25px;
}
