/* Base Styles */
.via-poster-card {
	display: block;
	position: relative;
	overflow: hidden;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	text-decoration: none;
	color: #fff;
	background-size: cover;
	background-position: center;
	background-color: #222;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

.via-poster-card:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.via-poster-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%); */
	z-index: 1;
}

.via-poster-content-wrap {
	position: relative;
	z-index: 2;
	display: flex;
	padding: 30px;
	height: 100%;
	gap: 16px;
}

.via-poster-image-col img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
	transition: transform 0.4s ease;
}

.via-poster-text-col {
	background-color: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(10px);
	border: 1px solid #fff;
	border-radius: 12px;
	height: 100%;
	position: relative;
	padding: 20px;
}

.via-poster-text-col::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 10px;
	width: 9px;
	height: 9px;
	background-color: #fff;
	border-radius: 50%;
}

.via-poster-card:hover .via-poster-image-col img {
	transform: scale(1.05);
}

.via-poster-title {
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 10px 0;
	color: #fff;
	line-height: 1.3;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.via-poster-desc {
	font-size: 15px;
	color: #222;
	padding: 20px 16px 20px 16px;
	line-height: 1.6;
}

.via-poster-btn {
	display: inline-block;
	background: var(--via-primary-color);
	color: #fff;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 12px;
	font-style: italic;
	text-decoration: none;
	transition: all 0.3s ease;
}

.via-poster-btn:hover {
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
	color: #fff;
	transform: translateX(6px);
	transition: all 0.3s ease;
}

/* ====================
   Khung Dọc (Vertical)
   ==================== */
.via-poster-vertical .via-poster-content-wrap {
	flex-direction: column;
	text-align: center;
	align-items: center;
	padding: 40px 20px;
}

.via-poster-vertical .via-poster-image-col {
	margin-bottom: 25px;
	width: 80%;
	max-width: 250px;
}

/* ====================
   Khung Ngang (Horizontal)
   ==================== */
.via-poster-horizontal .via-poster-content-wrap {
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.via-poster-horizontal .via-poster-text-col {
	flex: 1;
}

.via-poster-horizontal .via-poster-image-col {
	flex: 0 0 40%;
	max-width: 300px;
	text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
	.via-poster-horizontal .via-poster-content-wrap {
		flex-direction: column-reverse;
		text-align: center;
		padding: 30px 20px;
	}

	.via-poster-horizontal .via-poster-text-col {
		padding-right: 0;
		margin-top: 20px;
	}

	.via-poster-horizontal .via-poster-image-col {
		flex: 1;
		width: 80%;
		margin: 0 auto;
		text-align: center;
	}

	.via-poster-title {
		font-size: 22px;
	}
}