.blog-container {
		max-width: 1080px;
		margin: 0 auto;
		padding: 32px 40px 100px;
	}

	img {
		line-height: 0;
	}

	.blog-header {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.blog-header__header {
		display: flex;
		flex-direction: column;
		gap: 12px;
		padding-bottom: 12px;
		border-bottom: 1px solid var(--border-basic);
	}

	.blog-header__subtitle {
		font-family: "Montserrat";
		font-size: 17px;
		font-weight: 400;
		line-height: 24px;
		letter-spacing: -0.03em;
		color: var(--text-secondary);
	}

	.blog-header__filters {
		display: flex;
		gap: 6px;
		-webkit-user-select: none; /* Chrome/Safari */
		-moz-user-select: none; /* Firefox */
		-ms-user-select: none; /* IE/Edge */
		user-select: none; /* Стандартный синтаксис */
	}

	.blog-header__filter {
		display: flex;
		align-items: center;
		background: var(--bg-basic);
		border-radius: 8px;
		height: 38px;
		padding-inline: 12px;
		font-family: "Montserrat", sans-serif;
		font-weight: 400;
		font-size: 16px;
		line-height: 22px;
		letter-spacing: -0.03em;
		cursor: pointer;
		transition: all 0.1s ease-in-out;
	}

	.filter-input-chips:checked + .blog-header__filter {
		color: var(--text-inverse);
		background: var(--bg-brand);
	}

	.blog-dropdown__btn {
		background: var(--bg-basic);
		border-radius: 8px;
		height: 38px;
		padding-inline: 12px;
		display: flex;
		align-items: center;
		gap: 6px;
		cursor: pointer;
		transition: all 0.1s ease-in-out;
	}

	.blog-dropdown__btn.active {
		background: var(--bg-plate);
	}

	.blog-dropdown__btn.active .blog-dropdown__chevron {
		rotate: 180deg;
	}

	.blog-dropdown__chevron {
		transition: all 0.1s ease-in-out;
	}

	.blog-dropdown__modal {
		position: absolute;
		display: flex;
		flex-direction: column;
		width: 210px;
		border-radius: 8px;
		gap: 4px;
		padding: 8px;
		background: var(--bg-basic);
		list-style: none;
		margin-top: 6px;
		z-index: 1;
	}

	.blog-dropdown__item {
		color: var(--text-basic);
		height: 34px;
		padding: 6px 8px;
		font-family: Montserrat, sans-serif;
		font-weight: 400;
		font-style: normal;
		font-size: 16px;
		line-height: 22px;
		letter-spacing: -0.03em;
		cursor: pointer;
	}

	.blog-dropdown__input {
		display: none;
	}

	.blog-dropdown__input:checked + label {
		color: var(--text-accent);
	}

	@media (min-width: 767.5px) {
		.blog-list {
			display: grid;
			grid-template-columns: repeat(6, 1fr);
			row-gap: 24px;
			column-gap: 20px;
			margin-top: 24px;
		}
	}

	.blog-list__item {
		text-decoration: none;
		position: relative;
	}

	.blog-list__item:first-child {
		grid-column: span 6;
		height: 508px;
		border-radius: 12px;
		overflow: hidden;
	}

	.blog-list__item:first-child .blog-list__item-text {
		display: flex;
		flex-direction: column-reverse;
		gap: 10px;
		position: absolute;
		bottom: 0;
		width: 100%;
		padding: 24px 20px;
		background: linear-gradient(
			360deg,
			rgba(18, 18, 18, 0.5) 61%,
			rgba(18, 18, 18, 0) 100%
		);
	}

	.blog-list__item:first-child .blog-list__item-title {
		font-family: Montserrat, sans-serif;
		font-weight: 600;
		font-size: 20px;
		line-height: 26px;
		letter-spacing: -0.03em;
		color: var(--text-inverse);
	}

	.blog-list__item:first-child .blog-list__item-description {
		color: var(--text-disabled);
	}

	.blog-list__item:first-child .blog-list__item-img {
		height: 100%;
		border-radius: 12px;
	}

	@media (min-width: 767.5px) {
		.blog-list__item:nth-child(5n-3),
		.blog-list__item:nth-child(5n-2),
		.blog-list__item:nth-child(5n-1) {
			grid-column: span 2;
		}

		.blog-list__item:nth-child(5n-3) .blog-list__item-img,
		.blog-list__item:nth-child(5n-2) .blog-list__item-img,
		.blog-list__item:nth-child(5n-1) .blog-list__item-img {
			height: 244px;
			border-radius: 8px;
		}

		.blog-list__item:nth-child(5n),
		.blog-list__item:not(:first-child):nth-child(5n + 1) {
			grid-column: span 3;
		}

		.blog-list__item:nth-child(5n) .blog-list__item-img,
		.blog-list__item:not(:first-child):nth-child(5n + 1) .blog-list__item-img {
			height: 356px;
			border-radius: 8px;
		}
	}

	.blog-list__item:not(:first-child) .blog-list__item-text {
		margin-top: 8px;
	}

	.blog-list__item:not(:first-child) .blog-list__item-title {
		font-family: Montserrat, sans-serif;
		font-weight: 500;
		font-size: 17px;
		line-height: 23px;
		letter-spacing: -0.03em;
		font-style: normal;
		color: var(--text-basic);
	}

	.blog-list__item:not(:first-child) .blog-list__item-description {
		color: var(--text-secondary);
		margin-top: 6px;
	}

	.blog-list__item:hover .blog-list__item-loved {
		display: block;
	}

	.blog-list__item:hover .blog-list__item-title {
		color: var(--text-accent);
	}

	.blog-list__item-img {
		width: 100%;
		z-index: 0;
		position: relative;
		object-fit: cover;
	}

	.blog-list__item-description {
		font-family: Montserrat, sans-serif;
		font-weight: 400;
		font-size: 16px;
		line-height: 22px;
		letter-spacing: -0.03em;
	}

	.blog-list__item-loved {
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 2;
		box-sizing: content-box;
		padding: 12px;
	}

	.blog-list__item-loved:hover .blog-list__item-loved__path2 {
		fill: white;
		fill-opacity: 0.35;
	}

	.blog-list__item-loved.active .blog-list__item-loved__path2 {
		fill: var(--text-accent);
		stroke: var(--text-accent);
	}

	@media (max-width: 767.5px) {
		.blog-container {
			max-width: unset;
			padding: 24px 16px 20px;
			margin: unset;
		}

		.blog-list {
			display: flex;
			flex-direction: column;
			gap: 20px;
			margin-top: 20px;
		}

		.blog-list__item:first-child {
			margin: 0 -16px;
			margin-bottom: 4px;
			height: 369px;
		}

		.blog-list__item:not(:first-child) {
			line-height: 0;
		}

		.blog-list__item:not(:first-child) .blog-list__item-img {
			height: 268px;
			border-radius: 12px;
		}

		.blog-list__item:not(:first-child):not(:last-child) {
			border-bottom: 1px solid var(--border-basic);
			padding-bottom: 20px;
		}
	}

/*         даталка      */
.blog_detail{
    margin: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 63px;
    background-color: #F4F4F5;
}


.blog_detail-header{
    width: 100%;
    position: relative;
    margin-bottom: 40px;
}
.blog_detail-header img{
    width: 100%;
    max-height: 312px;
    height: fit-content;
    display: block;
    object-fit: cover;
}

.blog_detail-header_text{
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.blog_detail-header_text-subtitle{
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #D1CFD7;
}

.blog_detail-header_text-title{
    font-family: Lora;
    font-weight: 600;
    font-size: 58px;
    line-height: 110.00000000000001%;
    text-align: center;
    color: #FFFFFF;
}

.blog_detail-main{
    position: relative;
    margin: auto;
    max-width: 745px;
    background-color: #F4F4F5;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 60px;
}

.blog_detail-main p img{
    width: 100% !important;
    height: fit-content !important;
    max-height: 420px;
    border-radius: 12px;
    aspect-ratio: 4/2;
    object-fit: cover;
}

.blog_detail-main-author{
        padding: 28px 0;
        border-top: 1px solid #D1CFD7;
        border-bottom: 1px solid #D1CFD7;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .blog_detail-main-author_content{
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .author_content_img{
        width: 50px;
        height: 50px;
    }

    .author_content_img img{
        border-radius: 50%;
        background-color: transparent;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author_content_text{
        display: flex;
        flex-direction: column;
        gap: 2px;
        justify-content: flex-start;
        align-items: start;
    }

    .author_content_text-title{
        font-weight: 500;
        font-size: 20px;
        line-height: 26px;
        color: #000000;
    }

    .author_content_text-subtitle{
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        color: #8B8C94;
    }

    .blog_detail-main-author_bttns{
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .author_bttn{
        padding: 8px 12px;
        padding-left: 35px;
        background-color: #ffffff;
        border-radius: 8px;
        border: 1px solid #EFEEF1;
        cursor: pointer;

        display: flex;
        align-items: center;
        gap: 6px;

        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        text-align: center;
        vertical-align: middle;
        white-space: nowrap;

    }

    .blog_detail-main-author_bttns .author_bttn_like{
        background-position: 7% 45%;
    }

    .author_bttn_like{
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M11.9998 17.748L5.82784 20.993L7.00684 14.12L2.00684 9.253L8.90684 8.253L11.9928 2L15.0788 8.253L21.9788 9.253L16.9788 14.12L18.1578 20.993L11.9998 17.748Z' stroke='%238B8C94' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
        background-repeat: no-repeat;
        background-position: center;
    }

    .blog_detail-main-author_bttns .author_bttn_repost{
        background-position: 7% 45%;
    }

    .author_bttn_repost{
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.9999 4V8C6.42494 9.028 3.97994 14.788 2.99994 20C2.96294 20.206 8.38394 14.038 12.9999 14V18L20.9999 11L12.9999 4Z' stroke='%238B8C94' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");       
        background-repeat: no-repeat;
        background-position: center;
    }

    
    .author_bttn_like.active{
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='yellow' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M11.9998 17.748L5.82784 20.993L7.00684 14.12L2.00684 9.253L8.90684 8.253L11.9928 2L15.0788 8.253L21.9788 9.253L16.9788 14.12L18.1578 20.993L11.9998 17.748Z' stroke='%23d8b64e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");    
    }

    .blog_detail-main_miniBttns{
        display: flex;
        flex-direction: column;
        gap: 6px;

        position: absolute;
        right: -90px;
    }

    .blog_detail-main_miniBttns .author_bttn{
        padding: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
    }

    .js-article-rendered{
        display: flex;
        flex-direction: column;
    }

    .js-article-top h2 span, .js-article-bottom h2 span{
        font-weight: 500;
        font-size: 28px;
        line-height: 34px;
    }

    .js-article-top , .js-article-bottom{
        display: flex;
        flex-direction: column;
        /* gap: 28px; */
    }
    
    .js-article-top > *, .js-article-bottom > *{
        margin-bottom: 28px;
    }

    .js-article-top > h2, .js-article-bottom > h2{
        margin-bottom: 15px;
    }

    .splide{ 
        overflow: hidden; 
        padding-bottom: 24px;
    }

    .slider-cont{
        position: relative;
    }

    .splide__slide img{
        border-radius: 12px;
        width:100%;
        height: 100%;           
        object-fit:cover;
        display:block;
    }

    .splide__pagination{
        bottom: 4px !important;
    }

    .splide__pagination__page{
        background-color: #D0CED4 !important;
        width: 12px !important;
        height: 8px !important;
        border-radius: 8px !important;
        opacity: 1 !important;
        transition: all 0.2s linear !important;
    }

    .splide__pagination__page.is-active{
        transform:  none !important;
        width: 24px !important;
        background-color: #FF7C2E !important;
    }

    .slider_header {
        margin-bottom: 18px;
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    .splide--brands{
        padding-bottom: 0;
    }

    .splide--brands .splide__arrows {
        position: absolute;
        top: 0;
        right: 10px;
        display: flex;
        align-items: center;
        gap: 16px;
        z-index: 3;
    }

    .splide--brands .splide__arrow {
        position: static;
        transform: none;
        width: 32px;
        height: 32px;
        background: transparent;
        color: #111;
        opacity: 1;
    }

    .splide--brands .splide__arrow:disabled{
        opacity: .35;
    }

    .slider_title{
        font-weight: 500;
        font-size: 24px;
        line-height: 30px;
    }

    .splide--brands .splide__arrow svg{
        display:block;
        margin:auto;
        fill: none;
        width: 24px;
        height: 24px;
    }

    .splide__track .prod-card__img-block{
        height: 240px;
    }


    .blog_detail-main-sellerBtn{
        position: relative;
        width: 100%;
        height: 111px;
        background:#121212;
        border-radius:12px;
        padding:24px;
        display:flex;
        justify-content:space-between;
        align-items:center;
        overflow:hidden;
        z-index:0;
        margin-bottom: 24px;
    }

    .blog_detail-main-sellerBtn > *{
        position:relative;
        z-index:3;
    }

    .blog_detail-main-sellerBtn::before{
        content:"";
        position:absolute;
        inset:0;
        z-index:1;
        pointer-events:none;

        transform-origin:center;

        background:url("/alg/org/upload/stat_catalog/blog_seller2.png") no-repeat;
        background-size:745px 111px;   
        background-position:0 0;
    }

    .blog_detail-main-sellerBtn::after{
        content:"";
        position:absolute;
        inset:0;
        z-index:2;
        pointer-events:none;

        background:rgba(0,0,0,.65);   
    }

    .blog_detail-main-sellerBtn_text{
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: start;
        justify-content: flex-start;
    }

    .blog_detail-main-sellerBtn_title{
        font-family: Lora;
        font-weight: 600;
        font-size: 28px;
        line-height: 110.00000000000001%;
        color: #FFFFFF;
    }

    .blog_detail-main-sellerBtn_subtitle{
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        color: #D1CFD7;
    }

    .blog_detail-main-sellerBtn_bttn{
        padding: 12px 16px;
        width: fit-content;
        background-color: #ffffff;
        border-radius: 8px;

        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        color: #000;

    }

    .blog_detail-footer .splide__track .prod-card__img-block{
        height: 200px;
    }

    .blog_detail-footer{
        width: 100%;
        margin: auto;
        max-width: 1000px;
        background-color: #F4F4F5;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .other_articles_title{
        font-weight: 500;
        font-size: 17px;
        line-height: 23px;
    }

    .blog-card__like{
        display: block;
        position: absolute;
        top: 12px;
        right: 12px;
        width: 24px;
        height: 24px;
        border: transparent;
        background-color: transparent;
        cursor: pointer;
    }

    .blog_detail-main-qouteContent{
        width:100%;
        display:flex;
        gap:12px;
        align-items:stretch; 
    }


    .quote__left{
        flex:0 0 32px;                 
        display:flex;
        flex-direction:column;
        justify-content: flex-start;
        align-items:center;
    }

    .quote__marks{
        width:32px;
        height:32px;                   
        display:block;
    }

    .quote__line{
        width:2px;
        flex:1 1 auto;                 
        background:#FF5F00;
        border-radius:999px;
        margin-right: 12px;                
    }

    .blog_detail-main-qouteContent_text{
        margin:0;
    }
    

    @media (max-width: 1024px){
        .blog_detail{
            overflow-x: hidden;
        }

        .blog_detail-main_miniBttns{
            display: none;
        }

        .blog_detail-header_text{
            padding: 40px 16px;
        }

        .blog_detail-header_text-subtitle{
            font-size: 14px;
        }

        .blog_detail-header{
            margin-bottom: 24px;
        }

        .blog_detail-header_text-title{
            font-size: 32px;
        }
        .blog_detail-header_text{
            gap: 20px;
        }

        .blog_detail-main, .blog_detail-footer  {
            padding: 0 16px;
        }

        .blog_detail-main-author{
            flex-direction: column;
            gap: 24px;
            align-items: self-start;
        }

        .author_bttn{
            width: 100%;
            padding-left: 45px;
        }
        .blog_detail-main-author_bttns{
            width: 100%;
        } 

        .blog_detail-header img{
            height: 225px;
        }

        .blog_detail-footer{
            width: 100%;
        }

        .splide__track .prod-card__img-block{
            height: 172px;
        }

        .blog_detail-footer .splide__track .prod-card__img-block{
            height: 172px;
        }

        .blog_detail-main{
            width: 100%;
        }

        .blog_detail-main-sellerBtn{
            height: fit-content;
            max-height: 227px;
            padding: 20px 16px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            justify-content: unset;
        }

        .blog_detail-main-sellerBtn::before{
            background:url("/alg/org/upload/stat_catalog/blog_seller2.png") no-repeat;
            background-size:745px 227px;   
        }

        .blog_detail-main-sellerBtn_text{
            gap: 12px;
            align-items: center;
            justify-content: center;
            text-align: center;
        }


        .blog_detail-main-sellerBtn_bttn{
            width: 100%;

        }

        .blog_detail-main-author_bttns .author_bttn_like{
            background-position: 5% 45%;
        }

        .blog_detail-main-author_bttns .author_bttn_repost{
            background-position: 5% 45%;
        }   

    }

    @media ( max-width: 500px){
        .author_bttn{
            padding-left: 35px;
        }
    }


    /* fixed bugs*/



    .blog_detail .prod-card__add,
    .other_articles_title{
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .blog_detail .prod-card__add::before{
        display: none;
    }

    .blog_detail .prod-card__add{
        margin-top: 6px;
    }