.post-catalog{
	padding: 45px 70px 30px;
	background: var(--light-blue-color);
	box-shadow: var(--shadow-inset);
	border-radius: var(--border-radius-xl);
	margin-bottom: 40px;
	position: relative;
	overflow: hidden;
}

.post-catalog: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-catalog__container{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.post-catalog__col{
	width: 50%;
	padding: 0 15px 35px;
}
.post-item{
	position: relative;
}
.post-item: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: -5px;
}
.post-item__inner{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 32px 35px 35px 45px;
	position: relative;
	background: #fff;
	box-shadow: var(--shadow-card);
	border-radius: var(--border-radius-lg);
	transition: all var(--transition-normal);
	transform: translateY(0);
}

.post-item__inner:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.post-item__content{
	max-height: 170px;
	overflow: hidden;
	margin-bottom: 22px;
	position: relative;
}
.post-item__content:before{
	content: '';
	display: block;
	height: 25px;
	background: linear-gradient(to bottom, rgba(255,255,255,0) 10%,rgba(255,255,255,1) 100%);
	position: absolute;
	top: 142px;
	left: 0;
	right: 0;
	z-index: 1;
}
.post-item__title{
	font-weight: 700;
	font-size: var(--font-size-xl);
	line-height: 1.3;
	margin-bottom: 18px;
}

.post-item__title a{
	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;
	text-decoration: none;
	transition: all var(--transition-fast);
}

.post-item__title a:hover {
	transform: translateX(2px);
}
.post-item__text{
	font-size: 15px;
	line-height: 25px;
	color: rgba(17,17,17,0.8);
}
.post-item__btn{
	text-align: right;
}
.post-item__btn a{
	display: inline-flex;
	align-items: center;
	height: 56px;
	padding: 8px 32px;
	background: linear-gradient(135deg, var(--blue-title-color) 0%, var(--footer-main) 100%);
	box-shadow: var(--shadow-button);
	border-radius: var(--border-radius-md);
	font-weight: 600;
	font-size: var(--font-size-sm);
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	color: #fff;
	transition: all var(--transition-normal);
	position: relative;
	overflow: hidden;
}

.post-item__btn a:before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left var(--transition-slow);
}

.post-item__btn a:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(67, 123, 148, 0.4);
}

.post-item__btn a:hover:before {
	left: 100%;
}
.post-item__btn i{
	display: block;
	line-height: 0;
	margin-left: 10px;
}
.post-item__btn svg{
	fill: #111;
}
.post-catalog .pagination{
	padding: 5px 0 0;
}













/* Responsive
-----------------------------------------------------------------------------*/
@media only screen and (max-width: 1310px){
	.post-catalog{
		padding: 45px 30px 30px;
	}
}
@media only screen and (max-width: 1190px){
	
}
@media only screen and (max-width: 992px){
	.post-catalog{
		padding: 15px 15px 10px;
		margin: 0 -15px 5px;
		border-radius: 0;
	}
	.post-catalog__col{
		width: 100%;
		padding: 0 15px 15px;
	}
	.post-item__inner{
		padding: 13px 20px 20px;
	}
	.post-item__content {
		max-height: 195px;
	}
	.post-item__title{
		margin-bottom: 5px;
	}
	.post-item__content:before{
		top: 120px;
	}
	.post-item__btn{
		text-align: center;
	}
	.post-item__btn a{
		height: 40px;
	}
	.post-catalog .pagination{
		padding: 10px 0 0;
	}
}
@media only screen and (max-width: 767px){
	
}
@media only screen and (max-width: 640px){
	
}
@media only screen and (max-width: 480px){
	
}
@media only screen and (max-width: 411px){
	
}
@media only screen and (max-width: 383px){
	.post-catalog .page-title {
		padding: 8px 15px 12px;
	}
	
}
@media only screen and (max-width: 359px){
	.post-catalog__col{
		padding: 0 10px 15px;
	}
	.post-item__inner{
		padding: 13px 15px 20px;
	}
	
}

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

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

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

.post-catalog__col:nth-child(1) { animation-delay: 0.1s; }
.post-catalog__col:nth-child(2) { animation-delay: 0.2s; }
.post-catalog__col:nth-child(3) { animation-delay: 0.3s; }
.post-catalog__col:nth-child(4) { animation-delay: 0.4s; }

.post-item__title {
	animation: slideInPostTitle 0.5s ease-out 0.2s both;
}

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

.post-item__inner:hover {
	z-index: 10;
}

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

