.page-wrapper-changelog {
    padding-top: 74px;
}

.changelog-section__container {
    margin-bottom: 21px;
}

.changelog-section__header {
    margin: 44px 0 64px;
}

.changelog-section__row {
    margin-top: 44px;
}

.changelog-section__card {
    padding: 32px;
    background-color: var(--color-gray);
    border-radius: 24px;
}

.changelog-section__card-info {
    margin-top: 32px;
}

.changelog-section__card-subheader {
    position: relative;
    padding-bottom: 17px;
    margin-bottom: 24px;
}

.changelog-section__card-subheader::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    border-radius: 4px;
    background-color: var(--border-color-main);
}

.changelog-section__list {
    margin-top: -25px;
    padding-top: 1px;
}

.changelog-section__list li {
    position: relative;
    padding-left: 35px;
    margin-top: 24px;
}

.changelog-section__list li::before {
    content: "";
    position: absolute;
    top: 17px;
    transform: translateY(-50%);
    left: 19px;
    width: 4px;
    height: 4px;
    background-color: var(--font-color-extra);
    border-radius: 50%;
}

.changelog-section__info {
    position: relative;
    padding-top: 32px;
    height: 100%;
}

.changelog-section__info::before {
    content: "";
    position: absolute;
    top: 38px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-color: var(--accent-color-main);
    border-radius: 50px;
}

.changelog-section__info::after {
    content: "";
    position: absolute;
    top: 38px;
    bottom: -82px;
    right: 21px;
    width: 2px;
    background-color: var(--accent-color-main);
}

.changelog-section__info_last::after {
    display: none;
}

.changelog-section__info_last::after {
    bottom: unset;
    height: 82px;
}

.changelog-section__version {
    width: 97px;
    padding: 4px 0;
    border-radius: 4px;
    background-color: var(--accent-color-main-lighter-extra);
}

.changelog-section__date {
    width: 97px;
    text-transform: capitalize;
    margin-top: 8px;
}

@media (max-width: 1199px) {
    .page-wrapper-changelog {
        padding-top: 96px;
    }

    .changelog-section__header {
        margin-bottom: 56px;
        margin-top: 0;
    }

    .changelog-section__track-col {
        width: calc(100% / 4);
    }

    .changelog-section__content-col {
        width: calc(100% / 12 * 9);
    }

    .changelog-section__info::before {
        right: 37px;
    }

    .changelog-section__info::after {
        right: 48px;
    }

    .changelog-section__list li {
        padding-left: 32px;
    }

    .changelog-section__list li::before {
        left: 16px;
    }
}

@media (max-width: 991px) {
    .changelog-section__header {
        margin-bottom: 48px;
    }

    .changelog-section__row {
        margin-top: 24px;
    }

    .changelog-section__track-col {
        display: none;
    }

    .changelog-section__content-col {
        width: 100%;
    }

    .changelog-section__card {
        padding: 24px;
    }

    .changelog-section__card-info {
        margin-top: 24px;
    }
    
    .changelog-section__list li {
        padding-left: 26px;
    }

    .changelog-section__list li::before {
        top: 11px;
        left: 12px;
    }
}

@media (max-width: 767px) {
    .page-wrapper-changelog {
        padding-top: 106px;
    }
    
    .changelog-section__container {
        margin-top: -39px;
        margin-bottom: 1px;
    }
}


@media (max-width: 361px) {
    .changelog-section__container {
        margin-top: -27px;
    }
}