.blog-item {
    padding: 24px;
    border-radius: 16px;
    background: var(--color-grey-8);
    border: var(--border-style-1);
    width: 100%;
    transition: var(--base-transition);
}
.blog-item .icon{
    width: 40px;
    height: 40px;
    border: var(--border-style-1);
    background: var(--color-grey-11);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.blog-item .icon img{
    width: 20px;
    height: auto;
}
.blog-item .date{
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.6px;
    vertical-align: middle;
    text-transform: uppercase;
    color: var(--color-grey-2);
}
.blog-item .header{
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    vertical-align: middle;
    color: var(--color-white);
    transition: var(--base-transition);
}
.blog-item .text{
    font-weight: 400;
    font-size: 14px;
    line-height: 22.75px;
    vertical-align: middle;
    color: var(--color-grey-3);
}
.section-other-blogs-block .link,
.blog-item .read-more{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    vertical-align: middle;
    color: var(--color-grey-7);
}
.section-other-blogs-block .link i:before,
.blog-item .read-more i:before{
    font-size: 12px;
    transform: rotate(-90deg);
}
.section-blog-page-content .short-content{
    color: var(--color-white);
}
.section-blog-page-content .main-image{
    box-shadow: var(--box-shadow);
    border: var(--border-style-4);
    border-radius: 16px;
    width: 100%;
    height: 300px;
}

.section-blog-page-content .text-content-wrapper{
    color: var(--color-grey-7);
}
.section-blog-page-content .text-content-wrapper p{
    margin-bottom: 24px;
    line-height: 28px;
}
.section-blog-page-content .text-content-wrapper blockquote,
.section-blog-page-content .text-content-wrapper h2,
.section-blog-page-content .text-content-wrapper .h2,
.section-blog-page-content .text-content-wrapper h3,
.section-blog-page-content .text-content-wrapper .h3,
.section-blog-page-content .text-content-wrapper h4,
.section-blog-page-content .text-content-wrapper .h4 {
    margin-top: 36px;
    margin-bottom: 24px;
}
.section-blog-page-content .text-content-wrapper ul,
.section-blog-page-content .text-content-wrapper ol{
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    padding: 0;
    list-style: none;
}
.section-blog-page-content .text-content-wrapper li{
    position: relative;
    padding-left: 40px;
}
.section-blog-page-content .text-content-wrapper li:before{
    width: 24px;
    height: 24px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url("/storage/icons/list-icon.svg");
    flex-shrink: 0;
    display: block;
    background-repeat: no-repeat;
}
.section-blog-page-content .text-content-wrapper blockquote p{
    margin-bottom: 0;
}
.section-blog-page-content .text-content-wrapper blockquote{
    padding: 24px;
    border-left: 2px solid #3B4CDB;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.5px;
    vertical-align: middle;
    color: var(--color-white);
    font-style: normal;
    border-top-right-radius:16px;
    border-bottom-right-radius:16px;
    overflow: hidden;
    z-index: 2;
    position: relative;
}
.section-blog-page-content .text-content-wrapper blockquote:before{
    background: #3B4CDB;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    backdrop-filter: blur(60px);
    z-index: -3;
    right: -40px;
    top: -40px;
    left: unset;
}
.section-blog-page-content .text-content-wrapper blockquote:after{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    z-index: -2;
    backdrop-filter: blur(16px);
    display: block;
    background: #17171780;
}


.section-blog-page-content .text-content-wrapper > *:last-child{
    margin-bottom: 0;
}
.section-blog-page-content .back-btn{
    color: var(--color-grey-4);
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 24px;
}
.section-blog-page-content .back-btn .icon{
    width: 40px;
    height: 40px;
    background: #17171780;
    border: var(--border-style-4);
    backdrop-filter: blur(4px);
    border-radius: 50%;
}
.section-blog-page-content .back-btn .icon i:before{
    font-size: 20px;
    transform: rotate(90deg);
}
@media (min-width: 768px){
    .blog-items-wrapper .blog-item{
        width: calc(50% - 10px);
    }
}
@media (min-width: 1200px){
    .blog-item .icon{
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }
    .blog-item .icon img{
        width: 28px;
    }
    .blog-item .text{
        font-size: 18px;
    }
    .blog-items-wrapper .blog-item{
        width: calc((100% - 20px * 2) / 3);
    }
    .blog-items-wrapper .blog-item:hover{
        border: var(--border-style-2);
        background: #F6F6F61C;
    }
    .blog-items-wrapper .blog-item:hover .header{
        color: var(--color-purple);
    }
    .section-blog-page-content .main-image{
        height: 500px;
    }
    .section-blog-page-content .text-content-wrapper blockquote,
    .section-blog-page-content .text-content-wrapper h2,
    .section-blog-page-content .text-content-wrapper .h2,
    .section-blog-page-content .text-content-wrapper h3,
    .section-blog-page-content .text-content-wrapper .h3,
    .section-blog-page-content .text-content-wrapper h4,
    .section-blog-page-content .text-content-wrapper .h4 {
        margin-top: 48px;
    }
    .section-blog-page-content .text-content-wrapper blockquote{
        padding: 32px;
        font-size: 24px;
    }
}
@media (min-width: 1580px){
    .section-blog-page-content .back-btn {
        position: absolute;
        left: 24px;
        top: 0;
    }
}