/* ==========================================================================
   RSNTP Vlog Grid
   Scoped to .rsntp-vlog-wrap to avoid theme/plugin conflicts.
   ========================================================================== */

.rsntp-vlog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 80px;
	align-items: start;
}

/* Card
   ========================================================================== */

.rsntp-vlog-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	text-decoration: none;
	color: inherit;
}

.rsntp-vlog-card:hover,
.rsntp-vlog-card:focus {
	text-decoration: none;
	color: inherit;
}

/* Image — div background, fixed frame, hover zoom stays inside
   ========================================================================== */

.rsntp-vlog-card__image {
	overflow: hidden;
	aspect-ratio: 327 / 245;
}

.rsntp-vlog-card__image-bg {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #e0e0e0;
	transition: transform 400ms ease;
}

.rsntp-vlog-card:hover .rsntp-vlog-card__image-bg {
	transform: scale(1.05);
}

/* Text
   ========================================================================== */

.rsntp-vlog-card__meta {
	display: flex;
	flex-direction: column;
}

.rsntp-vlog-card__category {
	color: #722E2B;
	font-size: 14px;
	font-weight: 400;
	line-height: 28px;
	letter-spacing: 2.24px;
}

.rsntp-vlog-card__title {
	color: #333333;
	font-size: 16px;
	font-weight: 400;
	line-height: 32px;
	letter-spacing: 2.56px;
}

/* Mobile — single column
   ========================================================================== */

@media (max-width: 767px) {
	.rsntp-vlog-grid {
		grid-template-columns: 1fr;
	}
}

/* Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	.rsntp-vlog-card__image-bg {
		transition: none;
	}
}
