/* #region blog */
.gro_blog {
    padding-bottom: 144px;
}

.gro-relation__posts {
    padding-top: 80px;
}

.article__nav-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px
}

.breadcrumb__blog {
    padding: 88px 0 8px 0;
}

.blog__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 44px;
}

.blog__title {
    font-weight: 500;
    font-size: 72px;
    line-height: 98%;
}

.blog__description {
    color: var(--text_002);
    font-weight: 400;
    font-size: 19px;
    line-height: 140%;
}

@media (max-width: 1440px) {
    .gro_blog {
        padding-bottom: 112px;
    }

    .breadcrumb__blog {
        padding: 56px 0 8px 0;
    }

    .blog__header {
        margin-bottom: 32px;
    }

    .blog__title {
        font-size: 56px;
    }

    .blog__description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .gro_blog {
        padding-bottom: 88px;
    }

    .breadcrumb__blog {
        padding: 32px 0 8px 0;
    }

    .blog__header {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }

    .blog__title {
        font-size: 32px;
    }

    .blog__description {
        font-size: 14px;
    }

    .search__clear {
        top: 10px;
    }
}

/* #endregion blog */

/* #region blog nav */
.blog-nav {
    border-top: 1px solid var(--border);
    padding: 16px 0 88px 0;
}

.blog-nav__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
    padding-top: 9px;
}

.blog-nav__item {
    display: inline-flex;
    text-decoration: none;
    align-items: flex-start;
}

.blog-nav__item-name {
    color: var(--text_002);
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
}

.blog-nav__item-label {
    color: var(--text_003);
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    text-decoration: none;
}

.blog-nav__item_active .blog-nav__item-name {
    text-decoration: underline;
}

.blog-nav__item_active .blog-nav__item-label {
    background-color: var(--main);
    color: var(--text_001);
    border-radius: 17px;
    padding: 0 6px;
    height: 20px;
}

.blog-nav__item_active .blog-nav__item-name {
    color: var(--text_001);
}

.blog-nav__mob-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    border: none;
    display: none;
    width: 100%;
}

.blog-nav__mob-btn:after {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    content: "";
    background: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.3337 5.33331L7.97949 10.6875L2.66699 5.33331" stroke="black" stroke-width="1.5" stroke-linejoin="round"/></svg>') no-repeat center center;
}

@media (max-width: 1440px) {
    .blog-nav {
        padding: 16px 0 56px 0;
    }

    .blog-nav__item-name {
        font-size: 20px;
    }

    .blog-nav__item-label {
        font-size: 12px;
    }

    .blog-nav__item_active .blog-nav__item-name {
        text-decoration: underline;
    }

    .blog-nav__item_active .blog-nav__item-label {
        height: 17px;
    }
}

@media (max-width: 768px) {
    .blog-nav__mob-btn {
        display: flex;
        padding: 0;
    }

    .blog-nav.blog-nav_active .blog-nav__mob-btn:after {
        transform: rotate(180deg);
    }

    .blog-nav__list {
        display: grid;
        grid-template-columns: 1fr;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }

    .blog-nav.blog-nav_active .blog-nav__list {
        max-height: 600px;
    }
}

/* #endregion blog nav */

/* #region blog filters */
.blog-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 88px;
    flex-wrap: wrap;
}

.blog-filters__title {
    flex-grow: 1;
    font-weight: 500;
    font-size: 46px;
    line-height: 112%;
}

.blog-filters__filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    height: 72px;
}

.blog-filters__wrapper {
    display: flex;
    gap: 40px;
}

/* #region article rating */
.article-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 32px 0;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background-color: #fff;
}

.article-rating__header {
    display: flex;
    width: 66%;
    gap: 8px 16px;
    align-items: baseline;
    justify-content: space-between;
}

.article-rating__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
}

.article-rating__stats {
    display: flex;
    justify-content: space-between;
    width: 50%;
    gap: 12px;
    font-size: 16px;
    color: var(--text_003);
}

.article-rating__value {
    display: inline-flex;
    gap: 4px;
}

.article-rating__avg {
    font-weight: 600;
    color: var(--text_001);
}

.article-rating__stars {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.article-rating__star {
    width: 30px;
    height: 30px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.12s ease;
}

.article-rating__star svg path {
    transition: fill 0.15s ease, stroke 0.15s ease;
}

.article-rating__star:hover {
    transform: translateY(-1px);
}

.article-rating__star_active svg path,
.article-rating__star:hover svg path {
    fill: #FFC94F;
    stroke: #FFC94F;
}

.article-rating_rated .article-rating__star {
    cursor: default;
}

.article-rating_rated .article-rating__star:hover {
    transform: none;
}

@media (max-width: 1136px) {
    .article-rating {
        flex-direction: column;
    }

    .article-rating__header {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .article-rating {
        margin-top: 32px;
        padding: 20px 16px 16px;
        border-radius: 20px;
    }

    .article-rating__title {
        font-size: 16px;
    }

    .article-rating__stars {
        margin-top: 4px;
    }
}

/* #endregion article rating */

.dropdown {
    position: relative;
}

.dropdown__btn {
    display: flex;
    align-items: center;
    color: var(--text_002);
    background-color: transparent;
    border: none;
    font-weight: 500;
    font-size: 19px;
    line-height: 140%;
}

.dropdown__btn:after {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    content: "";
    background: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.3337 5.33331L7.97949 10.6875L2.66699 5.33331" stroke="black" stroke-width="1.5" stroke-linejoin="round"/></svg>') no-repeat center center;
    margin-left: 8px;
}

.dropdown__menu {
    position: absolute;
    width: 220px;
    background-color: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    display: none;
    margin-top: 11px;
    left: -26px;
}

.dropdown__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text_001);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
}

.dropdown_menu .dropdown__item {
    padding-left: 24px;
}

.dropdown__item_active {
    color: var(--text_002);
}

.dropdown__item_active::after {
    content: "";
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14 3L5.72668 11.6667L2 7.64082" stroke="%23555555" stroke-width="1.5" stroke-linejoin="round"/></svg>') no-repeat center center;
}

/* menu item icons */
.dropdown__item_icon_var1 {
    background: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 14H2V11H5V14Z" fill="black"/><path d="M14 14H6.5V11H14V14Z" fill="black"/><path d="M5 9.5H2V6.5H5V9.5Z" fill="black"/><path d="M14 9.5H6.5V6.5H14V9.5Z" fill="black"/><path d="M5 5H2V2H5V5Z" fill="black"/><path d="M14 5H6.5V2H14V5Z" fill="black"/></svg>') no-repeat left center;
}

.dropdown_open .dropdown__menu {
    display: flex;
}

.dropdown_open .dropdown__btn:after {
    transform: rotate(180deg);
}

.blog-filters__apply {
    display: none;
}

.blog-filters__btn {
    border: none;
    background: transparent;
    padding: 0;
    align-items: center;
    justify-content: center;
    display: none;
}

.blog-filters__btn::before {
    content: "";
    display: inline-block;
    background: url("../img/settings.svg") no-repeat center center;
    width: 24px;
    height: 24px;
}

/* search */
.search__form {
    width: 100%;
}

.blog-filters__search-btn {
    display: block;
    border: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-filters__search-btn::before {
    content: "";
    display: inline-block;
    background: url("../img/search-mob.svg") no-repeat center center;
    width: 24px;
    height: 24px;
}

.gro_search {
    position: relative;
    display: none;
    width: 500px;
    align-items: center;
}

.gro_search.is-opened,
.gro_search.active {
    display: flex;
}

.blog-filters__wrap {
    display: flex;
    align-items: center;
    width: 100%;
    display: none;
}

.search__input {
    background: url('data:image/svg+xml, <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.75 15.75L21 21M18 10.5C18 14.6421 14.6421 18 10.5 18C6.35786 18 3 14.6421 3 10.5C3 6.35786 6.35786 3 10.5 3C14.6421 3 18 6.35786 18 10.5Z" stroke="black" stroke-width="1.5" stroke-linejoin="round"/></svg>') no-repeat left center transparent;
    height: 72px;
    border: transparent;
    border-bottom: 2px solid #000;
    padding-left: 30px;
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
    width: 100%;
}

.search__input::placeholder {
    color: var(--text_003);
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
}

.search__input:focus-visible {
    outline: none;
}

.search__clear {
    position: absolute;
    top: 24px;
    right: 0;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 7L12 12M12 12L17 17M12 12L17 7M12 12L7 17" stroke="%23A9A9A9" stroke-width="1.5" stroke-linejoin="round"/></svg>') no-repeat center center;
}

@media (max-width: 1440px) {
    .blog-filters {
        margin-bottom: 56px;
    }

    .blog-filters__title {
        font-size: 36px;
    }

    .dropdown__btn {
        font-size: 16px;
    }

    .gro_search {
        position: relative;
        /* display: flex; */
        width: 500px;
    }

    .search__input {
        height: 56px;
        font-size: 20px;
    }

    .search__input::placeholder {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .blog-filters {
        margin-bottom: 24px;
        flex-wrap: wrap;
        gap: 16px;
    }

    .blog-filters__title {
        font-size: 24px;
    }

    .blog-filters__filters {
        gap: 16px;
        height: max-content;
    }

    .blog-filters__btn {
        display: flex;
    }

    .blog-filters__offcanvas {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        visibility: hidden;
        opacity: 0;
        z-index: 9;
    }

    .blog-filters__overlay {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        opacity: 1;
        transition: opacity .25s ease;
        z-index: -1;
    }

    .blog-filters__offcanvas.is-opened {
        visibility: visible;
        opacity: 1;
    }

    .blog-filters__offcanvas.is-opened .blog-filters__overlay {
        background-color: #000;
        opacity: 0.5;
    }

    .blog-filters__offcanvas.is-opened .blog-filters__wrapper {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
        flex-direction: column;
        gap: 8px;
        background-color: var(--bg);
        padding: 8px 8px 24px 8px;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
    }

    .blog-filters__offcanvas.is-opened .dropdown {
        display: block;
    }

    .blog-filters__offcanvas.is-opened .dropdown .dropdown__btn {
        display: none;
    }

    .blog-filters__offcanvas.is-opened .dropdown .dropdown__menu {
        display: flex;
        position: static;
        width: 100%;
    }

    .blog-filters__apply {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--text_001);
        border: 1px solid var(--text_001);
        border-radius: 40px;
        color: #fff;
        height: 44px;
        font-weight: 500;
        font-size: 16px;
        line-height: 140%;
        width: 100%;
        padding: 0 30px;
    }

    /* .blog-filters__search-btn {
        display: flex;
    } */

    .blog-filters__search {
        width: 100%;
    }

    .gro_search {
        /* height: 0;
        opacity: 0; */
        transition: height, opacity .25s ease-out;
    }

    .gro_search.is-opened {
        height: 100%;
        opacity: 1;
    }

    .search__input {
        height: 44px;
        font-size: 16px;
    }

    .search__input::placeholder {
        font-size: 16px;
    }
}

/* #endregion blog filters */

/* #region blog tags */
.blog-tags {
    margin-bottom: 32px;
}

.blog-tags__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 4px;
}

.blog-tags__item {
    cursor: pointer;
    user-select: none;
}

.blog-tags__item.blog-tags__item_active .blog-tags__name {
    border: 1px solid var(--text_001);
}

.blog-tags__input {
    display: none;
}

.blog-tags__name {
    display: inline-flex;
    height: 44px;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 46px;
    color: var(--text_002);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    transition: 0.25s;
}

.blog-tags__input:checked+.blog-tags__name {
    border: 1px solid var(--text_001);
}

.blog-tags__controls {
    display: flex;
    gap: 8px;
}

@media (max-width: 392px) {
    .blog-tags__controls {
        flex-direction: column;
    }
}

.blog-tags__more-btn,
.blog-tags__reset-btn {
    display: inline-flex;
    height: 44px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--text_001);
    padding: 0 20px;
    border: 1px solid var(--text_001);
    border-radius: 46px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
}

.blog-tags__reset-btn {
    background-color: transparent;
    border: 1px solid var(--text_001);
    color: var(--text_001);
}

.blog-tags__more-btn.is-open svg {
    transform: rotate(180deg);
}

/* show first 3 el */
.blog-tags__wrapper_start .blog-tags__item:nth-child(n+4) {
    display: none;
}

@media (max-width: 1440px) {
    .blog-tags {
        margin-bottom: 24px;
    }

    .blog-tags__name {
        height: 36px;
        font-size: 14px;
    }

    .blog-tags__more-btn,
    .blog-tags__reset-btn {
        height: 36px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .blog-tags {
        margin-bottom: 16px;
    }

    .blog-tags__name {
        height: 33px;
        font-size: 12px;
        padding: 0 8px;
    }

    .blog-tags__more-btn,
    .blog-tags__reset-btn {
        height: 28px;
        font-size: 12px;
        padding: 0 8px;
    }
}

/* #endregion blog tags */

/* #region search result */
.search-result {
    display: none;
}

.search-result_visible,
.search-result:has(.search-result__ok),
.search-result:has(.search-result__err) {
    display: block;
}

.search-result__ok {
    color: var(--text_002);
    font-weight: 400;
    font-size: 19px;
    line-height: 140%;
    margin-bottom: 20px;
}

.search-result__err {
    width: 100%;
    height: 310px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 24px;
    color: var(--text_002);
    font-weight: 400;
    font-size: 26px;
    line-height: 140%;
    padding: 16px;
    margin-bottom: 88px;
}

.search-result__err div {
    text-align: center;
}

.search-result__err span {
    color: var(--text_001);
}

@media (max-width: 1440px) {
    .search-result__ok {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .search-result__err {
        height: 310px;
        font-size: 20px;
        margin-bottom: 56px;
    }
}

@media (max-width: 768px) {
    .search-result__ok {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .search-result__err {
        height: 246px;
        font-size: 16px;
        margin-bottom: 32px;
    }
}

/* #endregion search result */

/* #region blog grid */
.blog__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 1004px) {
    .blog__grid>*:last-child {
        grid-column: 1 / -1;
    }
}



.blog__footer {
    text-align: center;
}

.blog__show-more {
    background-color: var(--text_001);
    border: 1px solid var(--text_001);
    color: #fff;
    display: inline-flex;
    align-items: center;
    height: 72px;
    gap: 12px;
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
    padding: 0 40px;
    border-radius: 40px;
    white-space: nowrap;
    margin-top: 28px;
}

.blog__show-more:hover {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

@media (max-width: 1440px) {
    .blog__show-more {
        height: 56px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .blog__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog__show-more {
        height: 44px;
        gap: 8px;
        font-weight: 500;
        font-size: 16px;
        padding: 0 16px;
    }
}

/* #endregion blog grid */

/* #region blog card */
.blog-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-card__read-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--text_001);
    padding: 18px 40px;
    border: 1px solid var(--text_001);
    border-radius: 46px;
    color: #fff;
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
    margin: 32px 0;
}

@media (max-width: 1440px) {
    .blog-card__read-btn {
        font-size: 20px;
        padding: 14px 40px;
    }
}

@media (max-width: 768px) {
    .blog-card__read-btn {
        padding: 11px 16px;
        margin: 24px 0 32px;
        font-size: 16px;
    }
}

.blog-card__img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.blog-card__category {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 60px;
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    padding: 0 20px;
}

.blog-card__content {}

.blog-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: .5;
    margin-bottom: 32px;
}

.blog-card__tags {
    display: flex;
    gap: 4px;
}

.blog-card__tags-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    border-radius: 46px;
    background-color: #fff;
    color: var(--text_002);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    padding: 0 20px;
    text-decoration: none;
}

.blog-card__date {
    color: var(--text_003);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
}

.blog-card__title {
    color: var(--text_001);
    font-weight: 500;
    font-size: 36px;
    line-height: 128%;
    text-decoration: none;
    margin-bottom: 8px;
}

.blog-card__type {
    color: var(--text_003);
    font-weight: 500;
    font-size: 19px;
    line-height: 140%;
    margin-bottom: 32px;
    background: url("data:image/svg+xml,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M7.5 21H3V16.5H7.5V21Z' fill='%23A9A9A9'/><path d='M21 21H9.75V16.5H21V21Z' fill='%23A9A9A9'/><path d='M7.5 14.25H3V9.75H7.5V14.25Z' fill='%23A9A9A9'/><path d='M21 14.25H9.75V9.75H21V14.25Z' fill='%23A9A9A9'/><path d='M7.5 7.5H3V3H7.5V7.5Z' fill='%23A9A9A9'/><path d='M21 7.5H9.75V3H21V7.5Z' fill='%23A9A9A9'/></svg>") no-repeat left center;
    padding-left: 28px;
    margin-top: 8px;
}

.blog-card__intro {
    font-weight: 400;
    font-size: 19px;
    line-height: 140%;
    margin-bottom: 20px;
}

.blog-card__all {
    border-top: 1px solid var(--border);
    padding: 20px 0;
}

.blog-card__all-link {
    color: var(--text_001);
    font-weight: 500;
    font-size: 19px;
    line-height: 140%;
    background: url('data:image/svg+xml,<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.33366 4.62061L13.3337 8.62061M13.3337 8.62061L9.33366 12.6206M13.3337 8.62061H2.66699" stroke="black" stroke-width="1.5" stroke-linejoin="round"/></svg>') no-repeat right center;
    padding-right: 24px;
    text-decoration: none;
}

/* blog card first */
.blog .first_part .blog-card:first-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 40px;
}

.blog .first_part .blog-card:first-child .blog-card__category {
    height: 56px;
    font-size: 19px;
}

.blog .first_part .blog-card:first-child .blog-card__header {
    margin-bottom: 20px;
}

.blog .first_part .blog-card:first-child .blog-card__tags-item {
    height: 44px;
}

.blog .first_part .blog-card:first-child .blog-card__date {
    color: var(--text_003);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
}

.blog .first_part .blog-card:first-child .blog-card__title {
    font-size: 46px;
    line-height: 112%;
    margin-bottom: 16px;
}

.blog .first_part .blog-card:first-child .blog-card__type {
    font-size: 26px;
    margin-bottom: 36px;
}

.blog .first_part .blog-card:first-child .blog-card__intro {
    font-size: 26px;
    margin-bottom: 40px;
}

.blog .first_part .blog-card:first-child .blog-card__all-link {
    font-size: 26px;
    background: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14 6L20 12M20 12L14 18M20 12H4" stroke="black" stroke-width="1.5" stroke-linejoin="round"/></svg>') no-repeat right center;
    padding-right: 32px;
}

/* blog card lock */
.blog-card__backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
}

.blog-card__backdrop-img {
    margin-bottom: 10px;
}

.blog-card__backdrop-title {
    color: #fff;
    font-weight: 400;
    font-size: 19px;
    line-height: 140%;
    text-align: center;
}

.blog-card_lock .blog-card__backdrop {
    display: flex;
}

.blog-card_lock .blog-card__header {
    opacity: 1;
}

.blog-card_lock .blog-card__title {
    color: var(--text_002);
}

.blog-card_lock .blog-card__all {
    display: none;
}

@media (max-width: 1440px) {
    .blog-card {
        gap: 8px;
    }

    .blog-card__category {
        height: 32px;
        font-size: 12px;
        padding: 0 16px;
    }

    .blog-card__content {}

    .blog-card__header {
        margin-bottom: 16px;
    }

    .blog-card__tags {}

    .blog-card__tags-item {
        height: 36px;
        font-size: 14px;
    }

    .blog-card__date {
        font-size: 14px;
    }

    .blog-card__title {
        font-size: 28px;
    }

    .blog-card__type {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .blog-card__intro {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .blog-card__all {
        padding: 16px 0;
    }

    .blog-card__all-link {
        font-size: 16px;
    }

    /* blog card first */
    .blog .first_part .blog-card:first-child .blog-card__category {
        height: 44px;
        font-size: 16px;
    }

    .blog .first_part .blog-card:first-child .blog-card__tags-item {
        height: 36px;
    }

    .blog .first_part .blog-card:first-child .blog-card__title {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .blog .first_part .blog-card:first-child .blog-card__type {
        font-size: 20px;
        margin-top: 8px;
        margin-bottom: 24px;
    }

    .blog .first_part .blog-card:first-child .blog-card__intro {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .blog .first_part .blog-card:first-child .blog-card__all-link {
        font-size: 20px;
    }

    /* blog card lock */
    .blog-card__backdrop-title {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .blog-card {
        gap: 8px;
    }

    .blog-card__category {
        position: absolute;
        top: 16px;
        left: 16px;
        height: 24px;
        font-size: 10px;
        padding: 0 8px;
    }

    .blog-card__content {}

    .blog-card__header {
        margin-bottom: 16px;
    }

    .blog-card__tags-item {
        height: 28px;
        font-size: 12px;
        padding: 0 8px;
    }

    .blog-card__date {
        font-size: 12px;
    }

    .blog-card__title {
        font-size: 20px;
    }

    .blog-card__type {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .blog-card__intro {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .blog-card__all {
        padding: 16px 0;
    }

    .blog-card__all-link {
        font-size: 14px;
    }

    /* blog card first */
    .blog .first_part .blog-card:first-child {
        grid-column: span 1;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .blog .first_part .blog-card:first-child .blog-card__category {
        height: 34px;
        font-size: 14px;
    }

    .blog .first_part .blog-card:first-child .blog-card__tags-item {
        height: 28px;
    }

    .blog .first_part .blog-card:first-child .blog-card__date {
        font-size: 14px;
    }

    .blog .first_part .blog-card:first-child .blog-card__title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .blog .first_part .blog-card:first-child .blog-card__type {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .blog .first_part .blog-card:first-child .blog-card__intro {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .blog .first_part .blog-card:first-child .blog-card__all-link {
        font-size: 16px;
    }

}

/* #endregion blog card */

/* #region blog banner */
.blog-banner {
    background: url(../img/blog-banner_back.svg) no-repeat bottom right #fff;
    padding: 44px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* height: max-content;
    min-height: 564px; */
}

.blog-banner__top {}

.blog-banner__subtitle {
    font-weight: 500;
    font-size: 36px;
    line-height: 128%;
    margin-bottom: 20px;
}

.blog-banner__title {
    color: var(--text_001);
    font-weight: 500;
    font-size: 72px;
    line-height: 98%;
}

.blog-banner__title span {
    color: var(--text_002);
}

.blog-banner__bottom {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-end;
}

.blog-banner__count {
    font-weight: 500;
    font-size: 94px;
    line-height: 98%;
    margin-bottom: 16px;
}

.blog-banner__text {
    font-weight: 400;
    font-size: 26px;
    line-height: 140%;
}

.blog-banner__link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--text_001);
    color: #fff;
    border: 1px solid var(--text_001);
    border-radius: 40px;
    height: 72px;
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
    padding: 0 40px;
    text-decoration: none;
    white-space: nowrap;
}

.blog-banner__link.disabled {
    opacity: 0.66;
}

.blog-banner__link:not(.disabled):hover {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

@media (max-width: 1440px) {
    .blog-banner {
        padding: 28px;
    }

    .blog-banner__top {}

    .blog-banner__subtitle {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .blog-banner__title {
        font-size: 56px;
    }

    .blog-banner__count {
        font-size: 72px;
        margin-bottom: 10px;
    }

    .blog-banner__text {
        font-size: 20px;
    }

    .blog-banner__link {
        height: 56px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .blog-banner {
        justify-content: flex-start;
        gap: 40px;
        background: url(../img/blog-banner_back_mob.svg) no-repeat bottom right #fff;
        padding: 16px;
    }

    .blog-banner__top {}

    .blog-banner__subtitle {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .blog-banner__title {
        font-size: 32px;
    }

    .blog-banner__bottom {
        gap: 16px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: start;
    }

    .blog-banner__count {
        font-size: 40px;
        margin-bottom: 16px;
        margin-bottom: 4px;
    }

    .blog-banner__text {
        font-size: 16px;
    }

    .blog-banner__link {
        height: 44px;
        font-size: 16px;
        padding: 0 16px;
    }
}

/* #endregion blog banner */

/* #region blog article */

/* article header */
.article-header {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 20px;
}

.article-header__image-overlay::before {
    content: '';
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.article-header__image {
    width: 100%;
}

.article-header__grid {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 40px;
    padding-bottom: 56px;
}

.article-header__wrapper {
    grid-column-start: 2;
    z-index: 2;
    padding-right: 56px;
    max-width: 997px;
    margin-left: auto;
}

.article-header__title {
    font-weight: 500;
    font-size: 72px;
    line-height: 98%;
    margin-bottom: 32px;
}

.article-header__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-header__info {
    display: flex;
    align-items: center;
    column-gap: 32px;
    row-gap: 15px;
    flex-wrap: wrap;
    color: #555555;
    font-weight: 400;
    font-size: 26px;
    line-height: 140%;
    margin-bottom: 36px;
}

.article-header__info>span {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.article-header__chapter {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 40px;
    color: #fff;
    height: 56px;
    font-weight: 500;
    font-size: 19px;
    line-height: 140%;
    padding: 0 30px;
}

.article-header__chapter:hover {
    border: 1px solid #000;
    background: #fff;
    color: #000;
}

.article-mob {
    display: none;
}

@media (max-width: 1440px) {
    .article-header {
        margin-bottom: 16px;
    }

    .article-header__grid {
        padding-bottom: 44px;
    }

    .article-header__wrapper {
        padding-right: 44px;
    }

    .article-header__title {
        font-size: 72px;
        margin-bottom: 24px;
    }

    .article-header__info {
        font-size: 20px;
    }

    .article-header__chapter {
        height: 44px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .article-header {
        margin-bottom: 16px;
    }

    .article-header__grid {
        display: none !important;
    }

    .article-mob {
        display: block;
        margin-bottom: 32px;
    }

    .article-mob__title {
        color: var(--text_001);
        font-weight: 500;
        font-size: 40px;
        line-height: 98%;
        margin-bottom: 16px;
    }

    .article-mob__read-time {
        background: url('data:image/svg+xml,<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 6.63855V12.6385L16 16.6385M3 12.6385C3 17.6091 7.02944 21.6385 12 21.6385C16.9706 21.6385 21 17.6091 21 12.6385C21 7.66799 16.9706 3.63855 12 3.63855C7.02944 3.63855 3 7.66799 3 12.6385Z" stroke="%23A9A9A9" stroke-width="1.5" stroke-linejoin="round"/></svg>') no-repeat center left;
        color: var(--text_003);
        font-weight: 400;
        font-size: 16px;
        line-height: 140%;
        padding-left: 34px;
        margin-bottom: 16px;
    }

    .article-mob__chapter {
        display: flex;
        align-items: center;
        background-color: transparent;
        border: 1px solid var(--text_001);
        color: var(--text_001);
        border-radius: 40px;
        height: 36px;
        font-weight: 500;
        font-size: 14px;
        line-height: 140%;
        padding: 0 16px;
    }

    .article-header__info {
        font-size: 16px;
    }
}

.article__info {
    position: sticky;
    top: 150px;
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    margin-top: 20px;
}

.article__wrap {
    display: none;
    flex-direction: column;
    margin-bottom: 35px;
    margin-top: 15px;
}

.article__info_title {
    font-weight: 500;
    font-size: 20px;
    line-height: 128%;
    letter-spacing: -0.04em;
    color: var(--text_001);
    margin-bottom: 24px;
}

.article__wrap.mobile .article__info {
    position: unset;
    width: 100%;
    max-width: none;
    margin: 0;
}

.article__wrap.mobile .article__info img {
    margin-bottom: 24px;
}

.article__wrap.mobile .article__info_link {
    margin-top: 24px;
}

.article__info img {
    border-radius: 16px;
    width: 88px;
    height: 88px;
}

.article__info_text {
    font-weight: 500;
    font-size: 28px;
    line-height: 128%;
    letter-spacing: -0.04em;
    color: var(--text_002);
    margin-top: 20px;
}

.article__info_link {
    margin-top: 20px;
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: var(--text_001);
    display: flex;
    align-items: center;
}

.article__info_link::before {
    content: "";
    display: inline-block;
    background: url("../img/clip.svg") no-repeat center center;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

@media (max-width: 1045px) {
    .article__info {
        padding: 16px;
    }
}

/* article breadcrumb, body & sidebar */
.breadcrumb__article {
    margin-bottom: 56px;
}

.article__body {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 120px;
}

.article__author {
    display: flex;
    align-items: center;
    gap: 24px
}

.author {
    margin-bottom: 40px;
}

.author__photo {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    width: 88px;
}

.author__name {
    color: var(--text_001);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
}

.author__position {
    color: var(--text_003);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
}

.article__type {
    color: #000;
    font-weight: 500;
    font-size: 19px;
    line-height: 140%;
    padding-left: 20px;
    margin-bottom: 32px;
}

.article__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.article__tags-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 40px;
    color: var(--text_002);
    height: 56px;
    font-weight: 500;
    font-size: 19px;
    line-height: 140%;
    padding: 0 30px;
    text-decoration: none;
}

.article__tags-item_active {
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
}

.article__date {
    color: var(--text_003);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
}

@media (max-width: 1440px) {
    .author__name {
        font-size: 20px;
    }

    .author__position {
        font-size: 16px;
    }

    .article__type {
        font-size: 16px;
    }

    .article__tags-item {
        height: 44px;
        font-size: 16px;
    }

    .article__date {
        font-size: 14px;
    }
}

@media (max-width: 857px) {
    .article__body {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .article__main {
        order: 2;
    }

    .articl__sidebar {
        order: 1;
    }

    .article__info {
        display: none;
    }

    .article__wrap.mobile {
        display: flex;
    }

    .article__wrap.mobile .article__info {
        display: block;
    }
}

@media (max-width: 768px) {
    .breadcrumb__article {
        margin-bottom: 16px;
    }

    .author {
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .author__photo {
        margin-bottom: 0;
    }

    .author__name {
        font-size: 16px;
    }

    .author__position {
        font-size: 14px;
    }

    .article__type {
        font-size: 14px;
    }

    .article__tags {
        margin-bottom: 16px;
    }

    .article__tags-item {
        height: 36px;
        font-size: 14px;
        padding: 0 16px;
    }

    .article__date {
        font-size: 12px;
    }
}

/* article inner blocks */
.article__anonse {
    margin-top: 32px;
    margin-bottom: 64px;
}

.article__anonse>p {
    color: var(--text_001);
    font-weight: 500;
    font-size: 20px;
    line-height: 128%;
    padding-left: 40px;
    border-left: 4px solid #FBE645;
}

/* article banner */
.article-banner {
    background: url('data:image/svg+xml,<svg width="296" height="239" viewBox="0 0 296 239" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M280.219 48.6866C243.561 106.375 275.19 164.89 295.998 187.347L244.895 223.663C230.098 203.956 205.987 153.827 226.92 109.911L227.423 108.876L21.0406 315.258L-18.3906 275.827L187.992 69.4444L186.956 69.9473C143.041 90.8806 92.912 66.7701 73.2049 51.9726L109.521 0.869629C131.978 21.6774 190.493 53.3069 248.181 16.6487L280.219 48.6866Z" fill="white"/></svg>') no-repeat right bottom var(--main);
    border-radius: 24px;
    padding: 28px;
    margin: 44px 0;
}

.article-banner__title {
    color: var(--text_001);
    font-weight: 500;
    font-size: 46px;
    line-height: 112%;
    margin-bottom: 20px;
}

.article-banner__subtitle {
    color: var(--text_001);
    font-weight: 400;
    font-size: 26px;
    line-height: 140%;
    margin-bottom: 128px;
}

.article-banner__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--text_001);
    border: 1px solid var(--text_001);
    border-radius: 40px;
    color: #fff;
    height: 72px;
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
    padding: 0 40px;
    text-decoration: none;
}

.article-banner__link:hover {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

/* article frameworks */
.article-frameworks {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin: 32px 0;
}

.article-frameworks__item {
    background-color: #fff;
    border-radius: 24px;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.article-frameworks__title {
    color: var(--text_002);
    font-weight: 500;
    font-size: 19px;
    line-height: 140%;
    margin-bottom: 8px;
}

.article-frameworks__name {
    color: var(--text_001);
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
    margin-bottom: 72px;
}

.article-frameworks__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: 1px solid var(--text_001);
    border-radius: 40px;
    color: var(--text_001);
    height: 44px;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    padding: 0 20px;
    text-decoration: none;
    max-width: max-content;
    margin-top: auto;
}

.article-frameworks__link:hover {
    border: 1px solid #ffffff;
    background: #000000;
    color: #ffffff;
}

.article-frameworks__link.gro-dark_btn {
    background-color: var(--text_001);
    color: #fff;
}

.article-frameworks__link.gro-dark_btn:hover {
    border: 1px solid var(--text_001);
    background: #ffffff;
    color: var(--text_001);
}

/* article all */
.article-all {
    margin: 88px 0 56px 0;
}

.article-all__title {
    margin: 0 0 20px 0 !important;
}

.article-all__item {
    display: flex;
    justify-content: space-between;
    align-items: top;
    gap: 8px;
    color: var(--text_001);
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.article-all__item:after {
    content: "";
    width: 24px;
    height: 25px;
    background: url('data:image/svg+xml,<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14 6.19238L20 12.1924M20 12.1924L14 18.1924M20 12.1924H4" stroke="black" stroke-width="1.5" stroke-linejoin="round"/></svg>') no-repeat center center;
}

.article-all__item_complete {
    color: var(--text_003);
}

.article-all__item_complete:after {
    content: "";
    width: 24px;
    height: 25px;
    background: url('data:image/svg+xml,<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M21 4.69238L8.59001 17.6924L3 11.6536" stroke="%23A9A9A9" stroke-width="1.5" stroke-linejoin="round"/></svg>') no-repeat center center;
}

/* article text styles */
.text {
    color: var(--text_002);
    font-weight: 400;
    font-size: 26px;
    line-height: 140%;
}

.text p {
    margin-bottom: 10px;
}

.text a {
    font-weight: 500;
    text-decoration: underline;
    color: var(--text_001)
}

.text strong {
    font-weight: 500;
    color: var(--text_001)
}

.text h2 {
    color: var(--text_001);
    font-weight: 500;
    font-size: 46px;
    line-height: 112%;
    margin: 88px 0 32px 0;
}

.text figure {
    margin: 32px 0;
}

.text img {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 16px;
}

.text figcaption {
    color: var(--text_003);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
}

.text blockquote {
    background: #fff;
    color: var(--text_001);
    font-weight: 500;
    font-size: 29px;
    line-height: 128%;
    text-indent: 32px;
    width: 100%;
    padding: 28px;
    border-radius: 24px;
    margin: 56px 0;
}

.text blockquote p {
    position: relative;
    border-top: 2px solid #000;
    padding: 16px 0 44px 20px;
}

.text blockquote p::before {
    content: "";
    background: url('data:image/svg+xml,<svg width="33" height="23" viewBox="0 0 33 23" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.57076 0.192871C11.7518 0.193006 15.1411 3.6245 15.1412 7.85353C15.1412 7.91926 15.1406 7.9849 15.139 8.05023H15.1415C15.1415 16.1121 8.85666 22.1928 1.39235 22.1929L0.388188 16.3139C1.6043 16.268 3.36589 15.9307 5.11419 15.1015C2.13884 14.0689 0 11.213 0 7.85353C5.4122e-05 3.62441 3.38964 0.192871 7.57076 0.192871Z" fill="black"/><path d="M25.4296 0.192871C29.6107 0.192931 32.9999 3.62445 33 7.85353C33 7.91926 32.9994 7.98489 32.9978 8.05023H33C32.9999 16.1121 26.7155 22.1928 19.2512 22.1929L18.247 16.3139C19.4632 16.268 21.2246 15.9307 22.973 15.1015C19.9977 14.0689 17.8588 11.213 17.8588 7.85353C17.8589 3.62441 21.2485 0.192871 25.4296 0.192871Z" fill="black"/></svg>') no-repeat center center;
    width: 33px;
    height: 23px;
    position: absolute;
    left: 0;
    top: 20px;
}

.text blockquote span {
    color: var(--text_002);
    display: block;
    font-weight: 400;
    font-size: 26px;
    line-height: 140%;
    text-align: right;
}

.text blockquote cite {
    text-align: right;
    color: var(--text_002);
    font-size: 20px;
    font-weight: 400;
}

.text ul:not([class^="ez-toc-list"]) {
    padding: 44px 0;
}

.text ul:not([class^="ez-toc-list"]) li {
    position: relative;
    display: flex;
    align-items: top;
    padding-left: 36px;
    margin-bottom: 8px;
}

.text ul:not([class^="ez-toc-list"]) li::before {
    content: "";
    background: url('data:image/svg+xml,<svg width="24" height="29" viewBox="0 0 24 29" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="14.458" r="12" fill="%23FBE645"/><path d="M17 12.8426L16.347 9.45801C12.3846 12.1503 11.2308 14.3693 10.5295 17.5643C10.5295 17.5643 9.73323 15.2558 9.11454 14.3693L7 16.4048C7.95983 17.129 8.75982 18.0629 9.11454 19.458L11.9443 19.458C11.9443 19.458 13.9231 14.8426 17 12.8426Z" fill="black"/></svg>') no-repeat center center;
    width: 24px;
    height: 29px;
    position: absolute;
    left: 0;
    top: 4px;
}

@media (max-width: 1440px) {
    .article__anonse {
        font-size: 28px;
        margin-bottom: 48px;
    }

    /* article banner */
    .article-banner {
        margin: 44px 0;
    }

    .article-banner__title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .article-banner__subtitle {
        font-size: 20px;
        margin-bottom: 96px;
    }

    .article-banner__link {
        height: 56px;
        font-size: 20px;
    }

    /* article frameworks */
    .article-frameworks {
        margin: 24px 0;
    }

    .article-frameworks__title {
        font-size: 16px;
    }

    .article-frameworks__name {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .article-frameworks__link {
        height: 36px;
        font-size: 14px;
    }

    /* article all */
    .article-all {
        margin: 44px 0;
    }

    .article-all__title {
        margin: 0 0 16px 0 !important;
    }

    .article-all__item {
        font-size: 20px;
        padding: 16px 0;
    }

    /* article text styles */
    .text {
        font-size: 20px;
    }

    .text h2 {
        font-size: 36px;
        margin: 56px 0 24px 0;
    }

    .text figure {
        margin: 24px 0;
    }

    .text figcaption {
        font-size: 14px;
    }

    .text blockquote {
        font-size: 28px;
        padding: 28px;
        margin: 56px 0;
    }

    .text blockquote p {
        padding: 16px 0 44px 0;
    }

    .text blockquote p::before {
        top: 25px;
    }

    .text blockquote span {
        font-size: 20px;
    }

    .text ul {
        padding: 44px 0;
    }
}

@media (max-width: 768px) {

    /* article inner blocks */
    .article__anonse {
        font-size: 20px;
        margin-bottom: 24px;
    }

    /* article banner */
    .article-banner {
        background: url('data:image/svg+xml,<svg width="178" height="143" viewBox="0 0 178 143" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M168.135 28.6902C146.14 63.3031 165.117 98.4119 177.602 111.886L146.94 133.676C138.062 121.852 123.595 91.7744 136.155 65.425L136.457 64.8036L12.6275 188.633L-11.0312 164.975L112.798 41.1448L112.177 41.4466C85.8276 54.0066 55.7503 39.5403 43.9261 30.6618L65.7158 0C79.1901 12.4846 114.299 31.4624 148.912 9.46745L168.135 28.6902Z" fill="white"/></svg>') no-repeat right bottom var(--main);
        margin: 24px 0;
    }

    .article-banner__title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .article-banner__subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .article-banner__link {
        height: 44px;
        font-size: 16px;
        padding: 0 16px;
    }

    /* article frameworks */
    .article-frameworks {
        grid-template-columns: 1fr;
        margin: 24px 0;
    }

    .article-frameworks__item {
        padding: 16px;
    }

    .article-frameworks__title {
        font-size: 14px;
    }

    .article-frameworks__name {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .article-frameworks__link {
        height: 28px;
        font-size: 12px;
        padding: 0 8px;
    }

    /* article all */
    .article-all {
        margin: 24px 0;
    }

    .article-all__title {
        margin: 0 0 16px 0 !important;
    }

    .article-all__item {
        font-size: 16px;
        padding: 8px 0;
    }

    /* article text styles */
    .text {
        font-size: 16px;
    }

    .text h2 {
        font-size: 24px;
        margin: 32px 0 16px 0;
    }

    .text figure {
        margin: 24px 0;
    }

    .text figcaption {
        font-size: 12px;
    }

    .text blockquote {
        font-size: 20px;
        padding: 16px;
    }

    .text blockquote p {
        padding: 16px 0 24px 0;
    }

    .text blockquote p::before {
        top: 20px;
    }

    .text blockquote span {
        font-size: 16px;
    }

    .text ul {
        padding: 24px 0;
    }

    .search__clear {
        top: 10px;
    }

    .text blockquote {
        font-size: 20px;
        padding: 16px;
        margin: 16px 0;
    }

    .text blockquote cite {
        font-size: 16px;
    }
}

/* #endregion blog article */


@media (max-width: 1035px) {
    .blog__card.blog-card {
        display: flex;
        flex-direction: column;
    }

    /* .blog__grid {
        display: flex;
        flex-direction: column;
    } */
}

.article__main ol {
    position: relative;
    display: flex;
    align-items: top;
    padding-left: 36px;
    flex-direction: column;
    list-style: none;
    padding: 0;
    padding: 44px 0;
}

.article__main ol li {
    position: relative;
    display: flex;
    align-items: top;
    padding-left: 36px;
    margin-bottom: 8px;
}

.article__main ol li::before {
    content: "";
    background: url("../img/item-list.svg") no-repeat center center;
    width: 26px;
    height: 27px;
    position: absolute;
    left: 0;
    top: 4px;
}

.article_collouts {
    border-radius: 24px;
    padding: 44px;
    max-width: 509px;
    background-color: #fff;
    margin-bottom: 35vh;
}

@media (max-width:576px) {
    .article-rating__header {
        flex-direction: column;
        align-items: center;
    }

    .article-rating__stats {
        font-size: 14px;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
}


.blog_steps-wrapper {
    background-color: #fff;
    border: 1px solid var(--light-mode-border-02);
    border-radius: 24px;
    padding: 24px 28px 44px 28px;
    margin-top: 32px;
}

@media (max-width: 888px) {
    .blog_steps-wrapper {
        padding: 16px 16px 32px 16px
    }
}

.blog_steps-wrapper__card:not(:first-child) {
    padding-top: 24px
}

.blog_steps-wrapper__card span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-weight: 500;
    font-size: clamp(12px, 0.9722222222vw, 14px);
    line-height: 140%;
    color: var(--light-mode-text-001);
    background: var(--main);
    border-radius: 80px;
    padding: 8px 16px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content
}

.blog_steps-wrapper__card span.blog_steps-black {
    background: var(--light-mode-text-001);
    color: var(--light-mode-white)
}

.blog_steps-wrapper__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    padding-top: 20px
}

@media (max-width: 888px) {
    .blog_steps-wrapper__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px
    }
}

.blog_steps-wrapper__content {
    width: 100%;
    border-bottom: 1px solid var(--light-mode-border-02);
}

.blog_steps-wrapper__subtitle {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: clamp(16px, 1.3888888889vw, 20px);
    line-height: 140%;
    color: var(--light-mode-text-001)
}

.blog_steps-wrapper__text {
    font-weight: 400;
    font-size: clamp(14px, 1.1111111111vw, 16px);
    line-height: 140%;
    color: var(--light-mode-text-002);
    padding-bottom: 28px
}

.blog_steps-wrapper-list {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    margin-top: 8px;
    width: 100%
}

.blog_steps-wrapper-list__item {
    background: var(--light-mode-bg-00);
    padding: 16px;
    border-radius: 16px;
    margin-left: 28px;
    position: relative
}

.blog_steps-wrapper-list__item:not(:last-child) {
    margin-bottom: 8px
}

.blog_steps-wrapper-list__item_title {
    margin-bottom: 8px;
    display: inline-block;
    font-weight: 500;
    font-size: clamp(14px, 1.1111111111vw, 16px);
    line-height: 140%;
    color: var(--light-mode-text-001)
}

.blog_steps-wrapper-list__item_text {
    font-weight: 400;
    font-size: clamp(14px, 1.1111111111vw, 16px);
    line-height: 140%;
    color: var(--light-mode-text-002)
}

.blog_steps-wrapper-list__item:before {
    content: "";
    display: inline-block;
    position: absolute;
    background: url("../img/arr-long.svg") no-repeat center center;
    width: 26px;
    height: 93px;
    left: -29px;
    top: -55px
}

.blog_steps-wrapper-list__item:first-child:before {
    background: url("../img/arr-list.svg") no-repeat center center;
    width: 16px;
    height: 19px;
    left: -24px;
    top: 18px
}

.blog_key-conclusions {
    padding-top: 88px;
}

.blog_key-conclusions h3 {
    font-size: 36px;
    line-height: 128%;
    color: var(--text_001);
}

@media (max-width: 600px) {
    .blog_key-conclusions {
        padding-top: 32px;
    }

    .blog_key-conclusions h3 {
        font-size: 28px
    }
}

.blog_key-conclusions p {
    color: var(--text_001);
    font-weight: 500;
}

.key-conclusions__divider {
    margin: 30px 0 5px;
    height: 30px;
    background: url(../img/icons/key_conclusions.svg) no-repeat;
    background-size: 30px 30px;
    background-position: 0 0;
    position: relative;
}

.key-conclusions__divider:after {
    content: '';
    display: block;
    height: 2px;
    width: calc(100% - 40px);
    position: absolute;
    left: 40px;
    top: 50%;
    background-color: var(--text_001);
}

.blog_myth_fact {
    background-color: #F5F3ED;
    border-radius: 24px;
    margin-top: 32px;
    padding: 28px;
}

@media (max-width: 600px) {
    .blog_myth_fact {
        padding: 16px;
    }
}

.blog_myth_fact .blog__myth {
    margin-bottom: 28px;
}


.blog_myth_fact .blog__myth>span,
.blog_myth_fact .blog__fact>span {
    display: block;
    margin-bottom: 16px;
}

.blog_myth_fact .blog__myth .blog__myth-text,
.blog_myth_fact .blog__fact .blog__fact-text {
    color: var(--text_001);
    font-weight: 500;
    padding-left: 60px;
}

.blog_myth_fact .blog__myth .blog__myth-text {
    background: url('../img/icons/myth.svg') no-repeat;
    background-size: 34px;
    background-position: 0 0;
}

.blog_myth_fact .blog__fact .blog__fact-text {
    background: url('../img/icons/fact.svg') no-repeat;
    background-size: 34px;
    background-position: 0 0;
}

.article_author__info {
    padding: 32px 0;
    display: flex;
    gap: 24px;
    align-items: center;
}

.article_author__photo {
    display: flex;
    flex-shrink: 0;
    width: 133px;
    height: 133px;
    border-radius: 16px;
    overflow: hidden;
}

.article_author__content .article_author__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 128%;
}

.article_author__content p {
    font-size: 16px;
    line-height: 1.4;
    color: var(--text_002)
}

@media (max-width: 600px) {
    .article_author__info {
        flex-direction: column;
        align-items: flex-start;
    }

    .article_author__content .article_author__title {
        font-size: 18px;
    }

    .article_author__content p {
        font-size: 14px
    }
}
