.blog .site-main {
    margin-top: 88px;
    overflow-x: unset;
}

body.category .site-main {
    overflow-x: unset;
    margin-top: 148px;
}

.blog .footer,
.category .footer {
    margin-top: 100px;
}

.blog-newest .posts-list {
    display: flex;
    gap: 50px;
}

.blog-newest .posts-list > div {
    max-width: calc(50% - 25px);
    width: 100%;
}

.blog-post .thumbnail img {
    border-radius: 20px;
    object-fit: cover;
    max-width: 100%;
    width: 100%;
}

.blog-newest .posts-list .post-list-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-post.big .thumbnail {
    position: relative;
    width: 100%;
}

.blog-post.big .thumbnail .blog-post-categories {
    display: flex;
    position: absolute;
    bottom: 20px;
    left: 20px;
    gap: 10px;
}

.blog-post.big .thumbnail .blog-post-categories a {
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    padding: 5px 15px;
    border-radius: 20px;
    color: rgba(25, 13, 45, 1);
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
}

.blog-post.big .thumbnail .blog-post-categories a:hover {
    background: rgba(255, 255, 255, 1);
    transition: all 0.3s;
}

.blog-post.big .thumbnail img {
    height: 350px;
}

.blog-post.big .title {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
    margin-top: 25px;
    display: inline-block;
    color: rgba(25, 13, 45, 0.8);
    transition: all 0.3s;
}

.blog-post.big .title:hover {
    transition: all 0.3s;
    color: rgba(133, 60, 245, 1);
}

.blog-post.small .title {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    padding: 20px 0 15px 0;
    display: inline-block;
    color: rgba(25, 13, 45, 0.8);
    transition: all 0.3s;
}

.blog-post.small .title:hover {
    color: rgba(133, 60, 245, 1);
    transition: all 0.3s;
}

.blog-post.small .categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.blog-post.small .categories a {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    padding: 5px 15px;
    border: 1px solid rgba(25, 13, 45, 1);
    border-radius: 20px;
    background: #fff;
    transition: all 0.3s;
}

.blog-post.small .categories a:hover {
    background: rgba(25, 13, 45, 1);
    transition: all 0.3s;
    color: #fff;
}

.blog-post.small .content {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(25, 13, 45, 0.8);
}

.blog-post.small .content-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-post.big .content {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    padding-bottom: 20px;
    color: rgba(25, 13, 45, 0.8);
}

.blog-post {
    padding: 25px 0;
}

.blog-all .posts-list {
    flex-wrap: wrap;
    gap: 0 50px;
}

.blog-post.small .thumbnail {
    max-width: 270px;
    width: 100%;
}

.blog .blog-container {
    padding-top: 60px;
}

.blog-post.small {
    display: flex;
    gap: 20px;
}

.blog-post.small .thumbnail img {
    max-height: 250px;
}

.blog-post .post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(25, 13, 45, 0.6);
    width: 100%;
}

.blog-post .post-footer .read-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-block .block-title {
    font-weight: 500;
    font-size: 34px;
    line-height: 40px;
    color: rgba(25, 13, 45, 1);
    border-bottom: 1px solid rgba(25, 13, 45, 0.5);
    padding-bottom: 10px;
    margin-bottom: 30px;
    margin-top: 25px;
}

.blog-block .block-title a {
    transition: all 0.3s;
}

.blog-block .block-title a:hover {
    transition: all 0.3s;
    color: rgba(133, 60, 245, 1);
}

.blog-slider {
    display: none;
}

.blog-slider .blog-slider-inner {
    overflow: hidden;
}

.blog-slider .slider__navigation-wrapper {
    margin-top: 30px;
}

.blog-slider .blog-slider-inner .single-slide img {
    width: 100%;
    object-fit: cover;
    max-height: 520px;
}

.blog-slider .blog-slider-inner .single-slide .caption {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.blog-slider .blog-slider-inner .single-slide {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
}

.blog-slider .blog-slider-inner .single-slide .slide-info {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 2;
    max-width: calc(100% - 100px);
}

.blog-slider .blog-slider-inner .single-slide .slide-info a {
    font-weight: 500;
    font-size: 48px;
    line-height: 120%;
    color: rgba(255, 255, 255, 1);
    transition: all 0.3s;
}

.blog-slider .blog-slider-inner .single-slide .slide-info a:hover {
    transition: all 0.3s;
    color: rgba(255, 255, 255, 0.8);
}

.blog-slider .blog-slider-inner .single-slide .slide-info .slide-footer {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    padding-top: 40px;
    color: rgba(255, 255, 255, 1);
    gap: 0 20px;
}

.blog-slider .blog-slider-inner .single-slide .slide-info .slide-footer .read-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-posts-categories {
    padding: 40px 0;
}

.blog-posts-categories .blog-posts-categories-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-posts-categories .container {
    display: flex;
    gap: 240px;
    justify-content: flex-end;
    align-items: center;
}

.blog-posts-categories .blog-posts-categories-inner a {
    border: 1px solid rgba(25, 13, 45, 1);
    color: rgba(25, 13, 45, 1);
    padding: 10px 15px;
    border-radius: 40px;
    transition: all 0.3s;
}

.blog-posts-categories .blog-posts-categories-inner a:hover {
    color: #fff;
    background: rgba(25, 13, 45, 1);
    transition: all 0.3s;
}

.blog-posts-categories .blog-posts-categories-inner a.active {
    background: rgba(25, 13, 45, 1);
    color: #fff;
}

.search-form input {
    border: 1px solid rgba(25, 13, 45, 0.44);
    height: 44px;
    padding: 10px 32px 10px 42px;
    border-radius: 46px;
    max-width: 240px;
    transition: all 0.3s;
}

.search-form input:focus {
    border: 1px solid rgba(25, 13, 45, 1);
    transition: all 0.3s;
}

.search-form label {
    position: relative;
}

.search-form label svg {
    position: absolute;
    left: 10px;
    top: 8px;
}

/* Standard */
.search-form input::placeholder {
    color: rgba(25, 13, 45, 0.44);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

/* Chrome, Safari, Edge */
.search-form input::-webkit-input-placeholder {
    color: rgba(25, 13, 45, 0.44);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;

}

/* Firefox */
.search-form input::-moz-placeholder {
    color: rgba(25, 13, 45, 0.44);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;

}

/* Internet Explorer 10–11 */
.search-form input:-ms-input-placeholder {
    color: rgba(25, 13, 45, 0.44);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;

}

/* Microsoft Edge (Legacy) */
.search-form input::-ms-input-placeholder {
    color: rgba(25, 13, 45, 0.44);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;

}

.search-results .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: normal;
    padding-top: 40px;
}

.search-results .pagination .nav-links {
    display: flex;
    gap: 10px;
}

.search-results .pagination a {
    transition: all 0.3s;
}

.search-results .pagination a:hover {
    transition: all 0.3s;
    color: rgba(133, 60, 245, 1);
}

.search-results .pagination span {
    font-weight: bold;
}

.search-results .site-main {
    overflow: unset;
    margin-top: 112px;
}

.search-results footer {
    margin-top: 100px;
}

.search-results  .breadcrumbs {
    padding-bottom: 32px;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    display: flex;
    gap: 8px;
    color: rgba(25, 13, 45, 1);
}

.search-results  .breadcrumbs span {
    color: rgba(25, 13, 45, 0.5);
}

.search-results  .breadcrumbs span:last-child {
    color: rgba(25, 13, 45, 1);
}

.search-results  .breadcrumbs a {
    font-weight: 400;
    color: rgba(25, 13, 45, 0.5);
    transition: all 0.3s;
}

.search-results  .breadcrumbs a:hover {
    transition: all 0.3s;
    color: rgba(133, 60, 245, 1);
}

@media screen and (max-width: 1024px) {
    .blog-posts-categories .container {
        gap: 15px;
        justify-content: space-between;
    }
}

@media screen and (max-width: 768px) {
    .blog-posts-categories .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-posts-categories .blog-posts-categories-inner {
        padding-bottom: 30px;
    }

    .search-form input,
    .search-form label,
    .search-form {
        width: 100%;
        max-width: 100%;
    }

    .blog-slider .blog-slider-inner .single-slide .slide-info a {
        font-size: 24px;
        line-height: 30px;
    }

    .blog-slider .blog-slider-inner .single-slide img {
        max-height: 325px;
    }

    .blog-slider .blog-slider-inner .single-slide .slide-info .slide-footer {
        padding-top: 20px;
    }

    .blog-slider .blog-slider-inner .single-slide .slide-info {
        left: 20px;
        bottom: 20px;
        max-width: calc(100% - 40px);
    }

    .blog-slider .blog-slider-inner .single-slide .slide-info .slide-footer {
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
        line-height: 20px;
    }

    .blog-block .block-title {
        font-size: 24px;
        line-height: 30px;
    }

    .blog-newest .posts-list {
        flex-direction: column;
        gap: 25px;
    }

    .blog-newest .posts-list > div {
        max-width: 100%;
    }

    .blog-post.big .thumbnail img {
        height: 250px;
    }
    .blog-block .block-title {
        margin-bottom: 25px;
    }

    .blog-post {
        padding-top: 0;
        padding-bottom: 0;
    }

    .blog-post.big .title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .blog-post.big .content {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 10px;
    }

    body.category .site-main {
        margin-top: 100px;
    }

    .blog-posts-categories .blog-posts-categories-inner a {
        font-size: 14px;
        line-height: 20px;
    }

    .blog-posts-categories {
        padding-bottom: 0;
    }
}