header {
    background: var(--main-bg);
    .wrapper {
        box-shadow: 0px 2px 12px 0px #0000001A;
    }
}
main {
    padding-top: 120px;
    padding-bottom: 120px;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 40px;
    overflow: auto;
    &::-webkit-scrollbar {
        width: 0;
        height: 0;
    }
    a {
        white-space: nowrap;
        font-size: 16px;
        line-height: 20px;
        color: var(--text-2);
    }
    span {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 16px;
        min-width: 16px;
        height: 16px;
        &::before {
            content: '\e010';
            font-family: 'icon';
            font-size: 8px;
            line-height: 10px;
            color: var(--text-2);
        }
    }
    p {
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
        white-space: nowrap;
    }
}
.promo {
    margin-bottom: 64px;
    span.cat {
        display: flex;
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 20px;
        font-weight: 500;
        color: var(--text-3);
    }
    h1 {
        max-width: 1000px;
        margin-bottom: 16px;
        font-size: 60px;
        line-height: 64px;
        font-weight: 600;
        letter-spacing: -0.3px;
        color: var(--title);
    }
    p {
        max-width: 1000px;
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 40px;
    }
    .options {
        display: flex;
        align-items: center;
        gap: 24px;
        span {
            font-size: 16px;
            line-height: 20px;
            color: #9ba5a3;
            &.views {
                display: flex;
                align-items: center;
                gap: 8px;
                &::before {
                    content: '\e011';
                    font-family: 'icon';
                    font-size: 18px;
                }
            }
        }
    }
}
.text-block {
    position: relative;
    margin-bottom: 184px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    h2 {
        max-width: 720px;
        margin-bottom: 30px;
        font-size: 20px;
        line-height: 24px;
        font-weight: 500;
        color: var(--title);
    }
    ul, ol {
        margin-left: 23px;
        margin-bottom: 10px;
    }
    p, li, * {
        font-size: 16px;
        line-height: 20px;
        max-width: 720px;
    }
}
@media screen and (max-width: 1640px) {
    main {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}
@media screen and (max-width: 1239px) {
    header {
        background: none;
    }
    main {
        padding-top: 156px;
        padding-bottom: 64px;
    }
    .breadcrumbs {
        gap: 8px;
        margin-bottom: 32px;
        a {
            font-size: 14px;
            line-height: 16px;
        }
        p {
            font-size: 16px;
            line-height: 16px;
        }
    }
    .promo {
        margin-bottom: 40px;
        span.cat {
            font-size: 12px;
            line-height: 16px;
        }
        h1 {
            font-size: 40px;
            line-height: 48px;
        }
        p {
            font-size: 18px;
            margin-bottom: 32px;
        }
        .options {
            gap: 20px;
            span {
                font-size: 14px;
                line-height: 16px;
            }
        }
    }
}
@media screen and (max-width: 599px) {
    main {
        padding-top: 132px;
        padding-bottom: 40px;
    }
    .breadcrumbs {
        margin-bottom: 24px;
        overflow: auto;
        &::-webkit-scrollbar {
            width: 0;
            height: 0;
        }
        a {
            white-space: nowrap;
        }
        span {
            min-width: 16px;
        }
        p {
            white-space: nowrap;
        }
    }
    .promo {
        margin-bottom: 28px;
        span.cat {
            margin-bottom: 20px;
        }
        h1 {
            font-size: 36px;
            line-height: 40px;
        }
        p {
            font-size: 16px;
            line-height: 24px;
            margin-bottom: 24px;
        }
        .options {
            gap: 16px;
        }
    }
}