.post-content{
	padding: 35px 55px 30px;
	background: #fff;
	border-radius: var(--border-radius-xl);
	margin-bottom: 40px;
	box-shadow: var(--shadow-card);
	position: relative;
	overflow: hidden;
}

.post-content:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
	pointer-events: none;
}
.post-content__title{
	font-weight: 800;
	font-size: var(--font-size-3xl);
	line-height: 1.2;
	background: linear-gradient(135deg, var(--blue-title-color) 0%, var(--footer-main) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	margin-bottom: 25px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.post-content__image{
	display: block;
	position: relative;
	border: 6px solid #fff;
	box-shadow: var(--shadow-card);
	border-radius: var(--border-radius-xl);
	margin-bottom: 35px;
	transition: all var(--transition-normal);
}

.post-content__image:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.post-content__image:before{
	content: '';
	display: block;
	height: 70px;
	border-radius: 0 0 10px 10px;
	background: linear-gradient(104.12deg, rgba(255, 255, 255, 0.48) 10.05%, rgba(255, 255, 255, 0.126) 89.95%);
	box-shadow: 0px 0px 50px -25px rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(100px);
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: -10px;
	    opacity: 0.4;
}
.post-content__image img{
	display: block;
	position: relative;
	border-radius: 15px;
}
/* .post-content__contents {
	padding: 27px 30px 30px;
	background: #F5F7F9;
	border-radius: 10px;
	margin-bottom: 29px;
}
.post-content__contents-title {
	font-weight: 700;
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 22px;
}
.post-content__contents ul{
	font-weight: 500;
	font-size: 18px;
	line-height: 30px;
	border-top: 1px dashed rgba(97,110,119,0.2);
}
.post-content__contents ul li{
	padding: 9px 0 10px;
	border-bottom: 1px dashed rgba(97,110,119,0.2);
}
.post-content__contents ul a{
	display: inline-block;
	padding-left: 26px;
	color: #437B94;
	position: relative;
	text-decoration: none;
}
.post-content__contents ul a:before{
	content: '';
	display: block;
	border-top: 3px solid transparent;
	border-left: 6px solid #437B94;
	border-bottom: 3px solid transparent;
	position: absolute;
	top: 12px;
	left: 0;
	pointer-events: none;
}
.post-content__contents ul a:hover{
	color: #111;
}
.post-content__contents ul a:hover:before{
	border-left-color: #111;

} */
#ez-toc-container{
	padding: 30px 35px 35px;
	background: rgba(245, 247, 249, 0.8);
	backdrop-filter: blur(10px);
	border-radius: var(--border-radius-lg);
	margin-bottom: 35px;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	box-shadow: var(--shadow-light);
	transition: all var(--transition-normal);
}

#ez-toc-container:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.ez-toc-title-container{
	font-weight: 700;
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 22px;
}
#ez-toc-container nav > ul{
	font-weight: 500;
	font-size: 18px;
	line-height: 30px;
	border-top: 1px dashed rgba(97,110,119,0.2);
}
#ez-toc-container nav > ul a{
	display: block;
	padding: 9px 0 10px 26px;
	border-bottom: 1px dashed rgba(97,110,119,0.2);
	padding-left: 26px;
	color: #437B94;
	position: relative;
	text-decoration: none;
   cursor: pointer;
}
#ez-toc-container nav > ul a:before{
	content: '';
	display: block;
	border-top: 3px solid transparent;
	border-left: 6px solid #437B94;
	border-bottom: 3px solid transparent;
	position: absolute;
	top: 22px;
	left: 0;
	pointer-events: none;
}
#ez-toc-container nav > ul a:hover{
	color: #111;
}
#ez-toc-container nav > ul a:hover:before{
	border-left-color: #111;
}
#ez-toc-container nav > ul ul a{
	padding: 9px 0 10px 51px;
}
#ez-toc-container nav > ul ul a:before{
	left: 25px;
}
.ez-toc-heading-level-3 {
    font-weight: 400;
}
.post-content__body{
	margin-bottom: 30px;
}
.post-content__body:after{
	content: '';
	display: table;
	clear: both;
}
.post-content__bottom {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid rgba(97,110,119,0.1);
}
.post-content__rating{
	display: flex;
	align-items: center;
}
.post-content__subtitle {
	font-weight: 500;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #616E77;
	margin-right: 19px;
}
.post-content__share {
	display: flex;
	align-items: center;
}
.post-content__social {
	display: flex;
}
.section-best_post{
	box-shadow: inset 0px 0px 10px rgba(21, 57, 79, 0.05);
}
.section-best_post .section-best__slide{
	padding: 0 10px 35px;
}
.section-best_post .section-best__list{
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 14px;
}
.section-best_post .section-best__list li{
	margin-bottom: 9px;
}
.section-best_post .section-best__social a{
	background: linear-gradient(104.12deg, rgba(255, 255, 255, 0.126) 10.05%, rgba(255, 255, 255, 0.48) 89.95%);
}
.section-posts_post .section-posts__col{
	max-width: 330px;
}
.post-popup {
	width: 1210px;
	max-width: 100%;
	border-radius: 10px;
	filter: drop-shadow(0px 5px 10px rgba(22, 84, 112, 0.4));
	position: fixed;
	top: 10px;
	left: calc(50% - 605px);
	z-index: 50;
}
.post-popup__inner {
	padding: 20px 30px;
	background: #DFF5FF;
	border-radius: 10px;
	clip-path: polygon(0 calc(50% - 8px), 0 0, 100% 0, 100% 100%, 0 100%, 0 calc(50% + 8px), 8px 50%);
	position: relative;
}
.post-popup__close {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	position: absolute;
	top: 0;
	right: 0;
	background: rgba(255,255,255,0.5);
	border-radius: 0 10px;
	cursor: pointer;
}
.post-popup__close svg{
	fill: rgba(10, 56, 75, 0.3);
}
.post-popup__close:hover svg{
	fill: #111;
}
.post-popup__text {
	position: relative;
	font-weight: 500;
	font-size: 18px;
	line-height: 30px;
}
.post-popup__text a{
	color: #0A384B;
	text-decoration: none;
}
.post-popup__text a:hover{
	color: #111;
}
.post-popup__text i{
	display: inline-block;
	line-height: 0;
	margin-left: 10px;
}
.post-popup__text svg{
	fill: #1B7CA8;
}
.post-popup__text a:hover svg{
	fill: #111;
}
.post-content .post-gallery{
	max-height: none !important;
}


/* Responsive
-----------------------------------------------------------------------------*/
@media only screen and (max-width: 1310px){

	.post-popup{
		width: calc(100% - 10px);
		top: 8px;
		left: 5px;
		right: 5px;
	}
	.post-popup__inner {
		padding: 11px 40px 14px 20px;
		clip-path: polygon(0 16px, 0 0, 100% 0, 100% 100%, 0 100%, 0 32px, 8px 24px);
	}
	.post-popup__text{
		font-size: 15px;
		line-height: 25px;
	}
	.post-popup__text i{
		transform: translateY(2px);
	}
}
@media only screen and (max-width: 1190px){
	
}
@media only screen and (max-width: 992px){
	.post-content {
	    border-radius: 0;
		padding: 15px 15px;
		margin: 0 -15px;
		padding: 22px 15px 14px;
		margin-bottom: 20px;
	}
	.post-content__title{
		font-size: 34px;
		line-height: 40px;
		margin-bottom: 11px;
	}
	.post-content__image{
		border-width: 3px;
		border-radius: 10px;
		margin-bottom: 18px;
	}	
	.post-content__image:before{
		bottom: -8px;
	}
	.post-content__image img{
		display: block;
		position: relative;
		border-radius: 5px;
	}
	#ez-toc-container{
		padding: 12px 15px 15px;
		margin: 0 -15px 19px;
		border-radius: 0;
	}
	.ez-toc-title-container{
		margin-bottom: 12px;
	}
	#ez-toc-container nav > ul{
		font-size: 17px;
		line-height: 26px;
	}
/* 	.post-content__contents ul li {
		padding: 6px 0;
	} */
	#ez-toc-container nav > ul a{
		padding: 6px 0;
		padding-left: 21px;
	}
	#ez-toc-container nav > ul ul a {
		padding: 6px 0 6px 46px;
	}
	#ez-toc-container nav > ul a:before{
		top: 17px;
	}
	.post-content .post-body p {
		margin-bottom: 10px;
	}
	.section-best.section-best_post .section-best__slider{
		margin: 0 -16px 0 -7px;
	}
	.section-best_post .section-best__slide{
		padding: 0 7px 35px;
	}
	.section-best_post .section-best__list{
		font-size: 16px;
		line-height: 19px;
	}
	.section-best_post .section-best__list li{
		margin-bottom: 6px;
	}
	.section-best_post  .section-best__mobile-arrows {
		margin: -16px 0 0;
	}
	
}
@media only screen and (max-width: 650px){
    .post-content__bottom{
		flex-direction: column;
		align-items: center;
	}
		.post-content__subtitle{
		letter-spacing: 0;
		margin-right: 14px;
	}
	.post-ratings img, .post-ratings-loading img, .post-ratings-image img{
		width: 37px !important;
	}
	.post-content__rating{
		margin-bottom: 11px;
	}
	.post-content__rating .post-content__subtitle{
		margin-right: 16px;
	}
	.section-posts.section-posts_post{
		padding: 5px 0 0;
	}
	.section-posts.section-posts_post .section-posts__container{
		width: 382px;
		margin: 0 auto;
	}
	.section-posts_post .section-posts__col{
		width: 100%;
	}
	.section-posts_post .section-posts__image img{
		width: 100%;
		height: 205px;
	}
    
}


@media only screen and (max-width: 411px){
	.post-content__title {
		font-size: 32px;
		line-height: 35px;
		margin-bottom: 19px;
	}
	#ez-toc-container nav > ul{
		font-size: 16px;
	}
	.section-posts_post .section-posts__image img {
		height: 188px;
	}
	
	
}
@media only screen and (max-width: 383px){
	.post-content__title {
		font-size: 30px;
		margin-bottom: 18px;
	}
	.post-content__image{
		margin-bottom: 20px;
	}
	.section-posts_post .section-posts__image img{
		height: 175px;
	}
}
@media only screen and (max-width: 359px){
	.post-content {
		padding: 22px 10px;
	}
	#ez-toc-container{
		margin: 0 -15px 14px;
	}
	#ez-toc-container nav > ul{
		font-size: 15px;
	}
	#ez-toc-container nav > ul a{
		padding-left: 16px;
	}
	#ez-toc-container nav > ul ul a {
		padding: 6px 0 6px 41px;
	}
	.section-best.section-best_post .section-best__slider{
		margin: 0 -15px;
	}
	.section-posts_post .section-posts__col{
		padding: 0 0 14px;
	}
	.section-posts_post .section-posts__image img {
		height: 160px;
	}
}

/* Современные анимации для статей 2025 года */
@keyframes fadeInArticle {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInArticleTitle {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes scaleInArticleImage {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Анимации появления элементов */
.post-content {
	animation: fadeInArticle 0.8s ease-out;
}

.post-content__title {
	animation: slideInArticleTitle 0.8s ease-out 0.2s both;
}

.post-content__image {
	animation: scaleInArticleImage 0.6s ease-out 0.4s both;
}

#ez-toc-container {
	animation: fadeInArticle 0.6s ease-out 0.6s both;
}

/* Hover эффекты для интерактивности */
.post-content {
	backface-visibility: hidden;
	will-change: transform;
}

.post-content__image {
	backface-visibility: hidden;
	will-change: transform;
}

#ez-toc-container {
	backface-visibility: hidden;
	will-change: transform;
}

/* Улучшенные переходы для мобильных устройств */
@media (hover: none) {
	.post-content__image:hover {
		transform: none;
	}
	
	#ez-toc-container:hover {
		transform: none;
	}
}