.blog__text {
    font-weight: 700;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0.04em;
    text-align: center;
    color: #242c39;
    margin-bottom: 28px;
}

.blog__tab {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.blog__tab .blog__item {
    list-style: none;
}

.blog__item {
    flex: 0 0 auto;
}

.blog__btn {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 99px;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 12px;
    line-height: 133%;
    letter-spacing: 0.04em;
    color: #4a5568;
    transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
    margin-bottom: 60px;
}

.blog__btn--active {
    background-color: #f5911e;
    color: #fff;
}

@media (any-hover: hover) {
  .blog__btn:hover {
    background-color: #EDF2F7;
    color: #4A5568;
  }
}

.blog__cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
}

.blog__article-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog__cart-hover {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}

.blog__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.blog__cart-hover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #00C8FF;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
    z-index: 0;
}

.blog__cart-more {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 116px;
    padding: 0 24px;
    color: #fff;
    text-decoration: none;
    border-radius: 99px;
    background-color: #00c8ff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
    z-index: 1;
    box-sizing: border-box;
}

.blog__title {
    color: #242c39;
    transition: color 0.25s ease-in-out;
}

.blog__car-text {
    color: #242c39;
    transition: none;
}

@media (any-hover: hover) {
    .blog__article-link:hover .blog__cart-hover::before {
        opacity: 0.2;
        visibility: visible;
    }

    .blog__article-link:hover .blog__cart-more {
        opacity: 1;
        visibility: visible;
    }

    .blog__article-link:hover .blog__title {
        color: #00c8ff;
    }

    .blog__article-link:hover .blog__car-text {
        color: #242c39;
    }
}

.blog__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.date__blog-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 8px;
}

.blog__date {
    font-weight: 700;
    font-size: 14px;
    line-height: 143%;
    letter-spacing: 0.04em;
    text-align: right;
    color: #a0aec0;
}

.blog__date-span {
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    letter-spacing: 0.04em;
    text-align: right;
    color: #a0aec0;
}

.blog__sticker {
    border-radius: 99px;
    padding: 4px 12px;
    font-weight: 700;
    font-size: 12px;
    line-height: 133%;
    letter-spacing: 0.04em;
    color: #fff;
}

.blog__sticker-blue {
    background-color: #00c8ff;
}

.blog__sticker-orange {
    background-color: #f5911e;
}

.blog__article {
    margin-bottom: 40px;
    transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
}

.blog__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0.04em;
    color: #242c39;
    margin-bottom: 12px;
    transition: color 0.25s ease-in-out;
}

@media (any-hover: hover) {
    .blog__article:hover .blog__title {
        color: #00c8ff;
    }
}

.blog__car-text {
    font-family: "Onest", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 157%;
    letter-spacing: 0.04em;
    color: var(--grey-600);
}

.blog__text-more {
    background-color: #fff;
    border: none;
    color: #00c8ff;
}

.blog__article-link,
.blog__article-link:visited,
.blog__article-link:hover,
.blog__article-link:active {
    display: block;
    color: inherit;
    text-decoration: none;
}

.blog__article-link:focus,
.blog__article-link:focus-visible {
    outline: none;
}

.blog__title {
    color: #242c39;
    transition: color 0.25s ease-in-out;
}

@media (any-hover: hover) {
    .blog__article-link:hover .blog__title {
        color: #00c8ff;
    }
}

.article-top__img {
    border-radius: 20px;
    margin-bottom: 60px;
}

.article__flex {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 60px;
}

.article__blog-block {
    display: block;
    margin-right: 40px;
}

.article__blog-block .blog__date-top {
    display: block;
    margin: 0 0 4px 0;
}

.article__blog-block .blog__date,
.article__blog-block .blog__date-span {
    display: block;
    margin: 0;
    line-height: 1.2;
}

.article__blog-block .blog__sticker {
    display: inline-block;
    margin: 0;
    vertical-align: top;
}

.blog__date-span--right {
    text-align: right;
}

.article__descr {
    max-width: 919px;
}

.article__text-top {
    font-weight: 400;
    font-size: 18px;
    line-height: 144%;
    letter-spacing: 0.04em;
    color: #2d3748;
    margin-bottom: 60px;
}

.article__title {
    font-family: "Onest", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0.04em;
    color: #242c39;
    margin-bottom: 20px;
}

.article__descr-bottom {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #2d3748;
    margin-bottom: 28px;
}

.article__text-bottom {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #2d3748;
}

.article-bottom__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.article-bottom__pagination {
    position: relative;
    bottom: -8px !important;
}

.swiper-pagination-bullet {
    border-radius: 99px;
    width: 20px;
    height: 4px;
    background-color: #e2e8f0;
}

.swiper-pagination-bullet-active {
    background-color: #a0aec0;
    width: 40px;
    height: 4px;
}

.article-bottom__nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 24px;
    margin-top: 60px;
}

.article-bottom__prev,
.article-bottom__next {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    margin: 0;
}

.article-bottom__prev::after,
.article-bottom__next::after {
    display: none;
}

.article-bottom__prev,
.article-bottom__next {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.article-bottom__prev::after,
.article-bottom__next::after {
    display: none;
}

.article-bottom__prev::before {
    content: "";
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: url("/sayara/main/images/blog/arrow-left.svg") center / contain no-repeat;
    -webkit-mask: url("/sayara/main/images/blog/arrow-left.svg") center / contain no-repeat;
}

.article-bottom__next::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: url("/sayara/main/images/blog/arrow-right.svg") center / contain no-repeat;
    -webkit-mask: url("/sayara/main/images/blog/arrow-right.svg") center / contain no-repeat;
}

@media (any-hover: hover) {
    .article-bottom__prev:hover::before,
    .article-bottom__next:hover::after {
        background-color: #fff;
    }
}

@media screen and (max-width: 1600px) {
    .article__descr {
        max-width: 815px;
    }
    .article__descr-bottom {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 1400px) {
    .article__descr {
        max-width: 741px;
    }
    .article__text-top {
        margin-bottom: 40px;
    }
    .article__descr-bottom {
        margin-bottom: 40px;
    }
    .article-bottom__nav {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 1280px) {
    .article__descr {
        max-width: 863px;
    }
}

@media screen and (max-width: 992px) {
    .blog__text {
        font-size: 18px;
    }
}

@media screen and (max-width: 960px) {
    .article__descr {
        max-width: 747px;
    }
}

@media screen and (max-width: 768px) {
    .article__descr {
        max-width: 579px;
    }
    .article__descr-bottom {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 767px) {
    .blog__cards-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px 0;
    }
}

@media screen and (max-width: 595px) {
    .blog__tab {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

}

@media screen and (max-width: 576px) {
    .article__flex {
        display: block;
    }
    .article__blog-block {
        display: flex;
        margin-right: 0;
    }
    .article__blog-block .blog__date-top {
        display: flex;
        margin: 0;
    }
    .blog__date-top {
        gap: 4px;
    }
    .article-top__img {
        margin-bottom: 10px;
    }
    .article__blog-block {
        margin-bottom: 8px;
    }
    .article__text-top {
        margin-bottom: 24px;
    }
    .article__flex {
        margin-bottom: 16px;
    }

    .article-bottom__nav {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 559px) {
    .article-bottom__nav {
        flex-direction: column;
        justify-content: center;
        gap: 4px;
    }
}

.blog__sticker_wrap{
    display: flex;
    flex-direction: row;
    flex:auto;
    align-items: center;
    justify-content: end;
}

.blog__sticker_wrap > p{
    margin:0 0 0 5px;
}