.hvv-photo-card {
	position: relative;
	background: #FFFFFF;
	border-radius: 26px;
	padding: 23px 28px 29px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 100%;
	box-sizing: border-box;
	height: 100%;
}

.hvv-photo-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 16px rgba(0, 0, 0, 0.18);
}

.hvv-photo-card__link {
	position: absolute;
	inset: 0;
	z-index: 2;
	text-indent: -9999px;
	overflow: hidden;
	border-radius: 26px;
}

.hvv-photo-card__image {
	width: 100%;
	height: 365px;
	border-radius: 26px;
	overflow: hidden;
	background: #f0f0f0;
	flex-shrink: 0;
}

.hvv-photo-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hvv-photo-card__body {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.hvv-photo-card__date {
	margin: 0;
	color: #1A8DA1;
	font-family: Montserrat, sans-serif;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 0.96px;
	line-height: normal;
}

.hvv-photo-card__description {
	margin: 0;
	color: #000;
	font-family: Montserrat, sans-serif;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.96px;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media screen and (max-width: 1199px) {
	.hvv-photo-card {
		padding: 20px;
		gap: 20px;
	}
	.hvv-photo-card__image {
		height: 280px;
	}
	.hvv-photo-card__date,
	.hvv-photo-card__description {
		font-size: 20px;
	}
}

@media screen and (max-width: 768px) {
	.hvv-photo-card__image {
		height: 220px;
	}
	.hvv-photo-card__date,
	.hvv-photo-card__description {
		font-size: 18px;
	}
}
