.header-section {
    margin-bottom: 50px;
}

.back-link {
    margin-bottom: 22px;
    display: flex;
    color: var(--mut);
    gap: 20px;
    font-size: 16px;
    flex-wrap: wrap;
}

.back-link-enabled {
    color: var(--pri);
    cursor: pointer;
    transition: 100ms ease-in-out;
    --webkit-transition: 100ms ease-in-out;
}

.back-link-enabled:hover {
    color: var(--acc);
}

.back-link-disabled {
    color: var(--mut);
}

.back-link-disabled:hover {
    cursor: default;
}


.header-section-header {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px;
    padding: 0;
}

.header-description {
    font-weight: 400;
    font-size: 16px;
}

@media (max-width: 1280px) {
    .header-section {
        width: 100%;
        margin-bottom: 20px;
    }

    #paragraph-list {
        flex-direction: column-reverse;
    }

    .header-section-header {
        font-size: 26px;
    }

    .header-description {
        font-size: 16px;
    }

    .back-link {
        font-size: 16px;
    }

    .paragraphs-statistic-wrapper {
        max-height: 71px;
    }
}