


.blog {
    padding-bottom: 144px;
}

.breadcrumb__blog {
    padding: 88px 0 8px 0;
    display: flex;
    gap: 14px;
}

.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) {
    

    .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) {
   

    .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;
    }
}


@media (max-width: 500px) {
    .framework {
        max-width: 355px;
    }
}

@media (max-width: 400px) {

    .framework {
        max-width: 320px;
    }
}

/* #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);
    justify-items: start;
}

.blog-nav__main,
.blog-nav__item {
    display: inline-flex;
    text-decoration: none;
    align-items: flex-start;
    font-size: 26px;
    color: var(--text_002);
    font-weight: 500;
    line-height: 140%;
    padding: 10px 20px;
    background-color: transparent;
    transition: all .3s;
    border-radius: 20px;
    gap: 9px;
}


.blog-nav__item:hover {
    color: var(--text_001);

}

.blog-nav__item-name {}

.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;
    }

    .blog-nav__main,
    .blog-nav__item {
        font-size: 16px;
        padding: 5px 0;
    }
}

/* #endregion blog nav */

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

.blog-filters_head {
    display: flex;
    align-items: center;
}

.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;
    margin-left: auto;
    gap: 40px;
}

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

.dropdown {
    position: relative;
}

.dropdown__btn {
    display: flex;
    align-items: center;
    color: var(--text_001);
    background-color: transparent;
    border: none;
    font-weight: 500;
    font-size: 19px;
    padding: 10px;
    border-radius: 15px;
    line-height: 140%;
    transition: all .3s;
}

.dropdown__btn:hover {
    color: var(--text_002);

}

.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: 280px;
    background-color: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.dropdown__menu:last-child {
    width: 240px;
}

.dropdown__menu a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text_001);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    background-color: transparent;
    padding: 5px;
    border-radius: 7px;
    transition: all .3s;
}


.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_open .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);

}

.dropdown__item:hover {
    color: var(--text_002);

}

.dropdown__item svg,
.dropdown__item img {
    opacity: 1;
    transition: all .3s;
}

.dropdown__item:hover svg,
.dropdown__item:hover img {
    opacity: 0.5;
}


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

.blog-filters__apply {
    display: none;
}

.blog-filters__btn {
    border: none;
    background: transparent;
    padding: 0;
    display: none;
}

/* search */



.blog-filters__search-btn {
    display: block;
    border: none;
    background: transparent;
    padding: 0;
}

.color_btn {
    display: none;
}


.searchs {
    height: 0;
    opacity: 0;
    transition: height, opacity .25s ease-out;
    overflow: hidden;
    display: none;
}

.searchs.is-opened {
    display: flex;
    height: 100%;
    opacity: 1;
    overflow: visible;
}

.searchs form {
    position: relative;
    display: flex;
    align-items: center;
    width: 500px;
}

.search__input {
    background: transparent;
    height: 72px;
    border: transparent;
    border-bottom: 2px solid #000;
    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__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    padding: 5px;
    border-radius: 50%;
    transition: all .3s;
    height: 40px;
    width: 40px;
}

.search__clear {
    position: absolute;
    top: calc(50% - 12px);
    background-color: transparent;

    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    transition: all .3s;
    right: 0;
    width: 24px;
    height: 24px;
    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;
}

.search__clear:hover {
    background-color: var(--text_002);
}




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

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

    .dropdown__btn {
        font-size: 16px;
    }

    .searchs {
        position: relative;
    }



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

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

@media (max-width: 1200px) {

    .dropdown__btn {
        text-align: start;
    }

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

    .searchs {
        width: 345px;
    }

}

@media (max-width: 900px) {
    .blog-filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .color_btn {
        display: flex;
    }


    .searchs {
        grid-column: 1 / 3;
        width: 100%;
    }

    .searchs form {
        width: 100%;

    }
}


@media (max-width: 768px) {
    .blog-filters {
        margin-bottom: 16px;
        flex-wrap: wrap;
        gap: 16px;
        grid-template-columns: 2fr 1fr;

    }



    .blog-filters__title {
        font-size: 5vw;
    }

    .blog-filters__filters {
        gap: 16px;
    }

    .blog-filters__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        border-radius: 50%;
    }

    .active_sort {
        background-color: var(--main);
    }



    .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%;
        opacity: 1;
        visibility: visible;
    }

    .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 {
        padding: 2px;
        border-radius: 50%;
    }

    .blog-filters__search {
        width: 100%;
    }

    .searchs form {
        width: 100%;
    }


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

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


@media (max-width: 400px) {
    .blog-tags__controls {
        flex-direction: column;
        align-items: start;
    }
}

/* #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__input {
    display: none;
}

/*************************/

.blog-tags__wrapper_start label {
    display: none;
}

.blog-tags__wrapper_start label:nth-child(-n+3) {
    display: inline-block;
}

/*************************/
.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;
    cursor: pointer;
}

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

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


.blog-tags__apply,
.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__apply,
    .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__apply,
    .blog-tags__more-btn,
    .blog-tags__reset-btn {
        height: 28px;
        font-size: 12px;
        padding: 0 8px;
    }
}

/* #endregion blog tags */

/* #region searchs  result */
.search-result {
    grid-column: 1 / 3;
}

.search-result__ok {
    color: var(--text_002);
    font-weight: 400;
    font-size: 19px;
    line-height: 140%;
    margin-bottom: 20px;
    flex-direction: column;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all .3s;
}

.search-suggestions {
    color: var(--text_002);
    font-weight: 400;
    font-size: 19px;
    line-height: 140%;
    margin-bottom: 20px;
    position: absolute;
    top: 110%;
    left: 0;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.result_visible {
    opacity: 1;
    visibility: visible;
}

.search-suggestions a {
    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%;
    background-color: transparent;
    padding: 5px;
    border-radius: 7px;
    transition: all .3s;
}

.search-suggestions a:hover {
    color: var(--text_003);
}

.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 a {
    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%;
}

.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 searchs  result */

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


.blog__grid .posts {
    grid-column: 1 / 3;
    grid-row: 5 / 6;
}


.blog__footer {
    text-align: center;
    margin-bottom: 80px;
}

.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;
}

.active svg {
    transform: rotate(180deg);
}

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

@media (max-width: 768px) {
    .blog__grid {
        display: flex;
        flex-direction: column;
    }

    .blog-card {

        overflow: visible;
    }

    .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;
    transition: all .4s;
    max-height: 1000px;
    height: 100%;
    opacity: 1;
    overflow: hidden;
    will-change: max-height, opacity;
    cursor: pointer;
    transition: all .3s;
}

.blog__card._collapsed {
    opacity: 0;
    height: 0;
    pointer-events: none;
}



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

.blog-card__img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}




.blog-card__img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--text_001);
    opacity: 0;
    transition: all .3s;
}


.blog-card__tooltip {
    position: absolute;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #fff;
    padding: 10px 13px;
    background-color: #555;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 5;
}

.blog__card:hover .blog-card__img::after {
    opacity: .5;
}


.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__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    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;
    border: 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;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-card__type img {
    opacity: .2;
}

.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:hover .blog-card__intro,
.blog-card:hover .blog-card__title {
    color: var(--text_002);
}

.blog-card:hover .blog-card__all,
.blog-card:hover .blog-card__read-btn,
.blog-card:hover .blog-card__header {
    opacity: .5;
}




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

.blog-card:first-child .blog-card__img {
    max-height: 680px;
}

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

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

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

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

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

.blog-card:first-child .blog-card__type {
    font-size: 26px;
    margin: 8px 0 24px;
}

.blog-card:first-child .blog-card__intro {
    font-size: 26px;
}

.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;
    width: max-content;
}

.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__content {
    pointer-events: none;
    opacity: .6;
}


.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 {
        gap: 8px;
    }

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


    .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-card:first-child .blog-card__category {
        height: 44px;
        font-size: 16px;
    }

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

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

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

    .blog-card:first-child .blog-card__intro {
        font-size: 20px;
    }

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

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

    .blog-card__read-btn {
        font-size: 20px;
        padding: 14px 40px;
    }

    .blog-card__tooltip {
        font-size: 12px;
        padding: 8px 10px;
    }
}

@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__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: 8px 0 16px;
    }

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

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

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

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

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

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

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

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

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

    .blog-card:first-child .blog-card__intro {
        font-size: 16px;
    }

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

    .blog-card__read-btn {
        padding: 11px;
        margin: 24px 0 32px;
    }

    .blog-card__backdrop svg {
        width: 25px;
    }

    .blog-card__backdrop-title {
        font-size: 12px;
    }

    .blog-card__tooltip {
        font-size: 8px;
        padding: 8px 10px;
    }

}

/* #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;
    /* grid-column: 2 / 3;
    grid-row: 3 / 4; */
}

.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 {
    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;
}

@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: 1200px) {

    .blog-banner {
        max-width: 500px;
    }

    .blog-banner__title {
        font-size: 4vw;
    }

    .blog-banner__bottom {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 768px) {


    .blog-banner {
        max-width: 100%;
    }

    .blog-banner__count {
        font-size: 60px;
    }
}

@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 {
    display: flex;
    max-height: 1010px;
    align-items: center;
    border-radius: 35px;
    overflow: hidden;
}


.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%;
    object-fit: cover;
}

.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;
}

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

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

.article-header__read-time {
    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="M12 6V12L16 16M3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12Z" stroke="white" stroke-width="1.5" stroke-linejoin="round"/></svg>') no-repeat center left;
    color: #fff;
    font-weight: 400;
    font-size: 26px;
    line-height: 140%;
    padding-left: 30px;
    opacity: .5;
}

.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-mob {
    display: none;
}


.article__nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 80px;
}

.blog_back-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--text_001);
    border-radius: 40px;
    color: var(--text_001);
    height: 72px;
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
    padding: 0 40px;
    text-decoration: none;
}

.blog_cat-btn {
    background-color: 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;
    text-decoration: none;
    border-radius: 40px;
    white-space: nowrap;
}

@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__read-time {
        font-size: 20px;
    }

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

    .blog_cat-btn,
    .blog_back-btn {
        font-size: 20px;
    }
}

@media (max-width: 900px) {

    .article__nav-btn {
        flex-direction: column-reverse;
    }

    .blog_cat-btn,
    .blog_back-btn {
        font-size: 16px;
        height: 42px;
        padding: 0 20px;
    }
}

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

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

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

    .article-header__bottom {
        flex-direction: column;
        align-items: start;
    }

    .post_series-title,
    .article-header__title {
        color: var(--text_001);
        font-weight: 500;
        font-size: 7vw;
        line-height: 98%;
        margin-bottom: 16px;
    }

    .article-header__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-header__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;
    }

    .blog_cat-btn,
    .blog_back-btn {
        font-size: 12px;
        height: 42px;
        padding: 0 15px;
    }

    .post_series-link {
        font-size: 3vw;
        padding: 10px 0;
    }
}

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

.article__body {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 40px;
    padding-bottom: 50px;
}

.author {
    margin-bottom: 40px;
}

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

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

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

.article__type {
    color: #000;
    font-weight: 500;
    font-size: 19px;
    line-height: 140%;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.article__type img {
    width: 12px;
}

.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: 768px) {
    .breadcrumb__article {
        margin-bottom: 16px;
    }

    .article__body {
        grid-template-columns: 1fr;
    }

    .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 {
    color: var(--text_001);
    font-weight: 500;
    font-size: 36px;
    line-height: 128%;
    margin-bottom: 64px;
}

/* 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-all__title,
.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: 16px;
    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 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;
}

.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;
}

/* article all */
.article-all {
    margin: 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 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;
    width: 100%;
}

.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: 36px;
    line-height: 128%;
    text-indent: 52px;
    width: 100%;
    padding: 44px;
    border-radius: 24px;
    margin: 56px 0;
}

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

.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: 30px;
}

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

.text ul {
    padding: 44px 0;
}

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

.text 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-all__title,
    .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 cite {
        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-all__title,
    .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 cite {
        font-size: 16px;
    }

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

/* #endregion blog article */

/* #region blog */
.blog__card_hidden {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.blog__card_shown {
    max-height: 1000px;
    opacity: 1;
}

.blog__show-more {
    text-align: center;
    margin-top: 32px;
}

.callout_mob {
    display: none;
}

.articl__sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.article_collouts__inner {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 32px;
}

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


.article_collouts__text {
    font-weight: 500;
    font-size: 36px;
    line-height: 128%;
    letter-spacing: -0.04em;
    color: var(--text_002);
}

.article_collouts__btn {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
    color: var(--text_001);
    transition: all .3s;
}

.article_collouts__btn:hover {
    color: var(--text_002);
}

@media (max-width: 1440px) {

	
	.article_collouts {
    padding: 26px;
}
	
	.article_collouts__text {
    font-size: 26px;
}
	
}

@media (max-width: 1200px) {
    .callout_pc {
        display: none;
    }

    .callout_mob {
        display: flex;
    }

    .article__body {
        grid-template-columns: 1fr;
    }



    .article_collouts {
        max-width: max-content;
        margin-bottom: 0;
    }
	
	
}

@media (max-width: 768px) {
    .article_collouts__text {
        font-size: 4vw;

    }

    .article_collouts__btn {
       
        font-size: 16px;
      
    }
}
@media (max-width: 400px) {
    .article_collouts__text {
        font-size: 20px;

	}
}



