.hcta-card {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 400px;
	border-radius: 8px;
}

.hcta-image-wrap {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hcta-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease, filter 0.4s ease;
}

.hcta-card:hover .hcta-image-wrap img {
	transform: scale(1.08);
}

.hcta-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	text-align: left;
	padding: 30px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
	background: rgba(0, 0, 0, 0.55);
}

.hcta-card:hover .hcta-overlay,
.hcta-card:focus-within .hcta-overlay {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.hcta-title {
	margin: 0 0 10px;
	color: #ffffff;
}

.hcta-description {
	margin: 0 0 15px;
	color: #ffffff;
}

.hcta-button {
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

/* Reveal direction variants */
.hcta-reveal-fade .hcta-overlay {
	transform: none;
}

.hcta-reveal-slide-up .hcta-overlay {
	transform: translateY(100%);
}
.hcta-reveal-slide-up:hover .hcta-overlay,
.hcta-reveal-slide-up.hcta-card:focus-within .hcta-overlay {
	transform: translateY(0);
}

.hcta-reveal-slide-down .hcta-overlay {
	transform: translateY(-100%);
}
.hcta-reveal-slide-down:hover .hcta-overlay,
.hcta-reveal-slide-down.hcta-card:focus-within .hcta-overlay {
	transform: translateY(0);
}

.hcta-reveal-zoom .hcta-overlay {
	transform: scale(0.85);
}
.hcta-reveal-zoom:hover .hcta-overlay,
.hcta-reveal-zoom.hcta-card:focus-within .hcta-overlay {
	transform: scale(1);
}

.hcta-grayscale-normal .hcta-image-wrap img {
	filter: grayscale(100%);
}
.hcta-grayscale-normal:hover .hcta-image-wrap img {
	filter: grayscale(0%);
}
