/* ─── Closet Types Widget ───────────────────────────────────────────────── */

.hbc-ct-wrap {
	padding: 0 3%;
}

.hbc-ct-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.hbc-ct-card {
	position: relative;
	height: 320px;
	overflow: hidden;
	background: #111;
}

.hbc-ct-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.42);
}

.hbc-ct-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.hbc-ct-card:hover img {
	transform: scale(1.04);
}

.hbc-ct-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 0 36px 30px;
}

.hbc-ct-title {
	margin: 0 0 8px;
	padding: 0;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.1;
	color: #fff;
}

.hbc-ct-desc {
	max-width: 760px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	color: #fff;
}

/* ─── Tablet (≤1024px) ───────────────────────────────────────────────────── */

@media (max-width: 1024px) {
	.hbc-ct-grid {
		gap: 24px;
	}

	.hbc-ct-card {
		height: 270px;
	}

	.hbc-ct-title {
		font-size: 24px;
	}

	.hbc-ct-desc {
		font-size: 12px;
	}
}

/* ─── Mobile (≤767px) ────────────────────────────────────────────────────── */

@media (max-width: 767px) {
	.hbc-ct-wrap {
		padding: 0 18px;
	}

	.hbc-ct-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.hbc-ct-card {
		height: 260px;
	}

	.hbc-ct-content {
		padding: 0 20px 22px;
	}

	.hbc-ct-title {
		font-size: 23px;
	}

	.hbc-ct-desc {
		font-size: 12px;
		line-height: 1.45;
	}
}

/* ─── Small mobile (≤480px) ─────────────────────────────────────────────── */

@media (max-width: 480px) {
	.hbc-ct-card {
		height: 230px;
	}

	.hbc-ct-title {
		font-size: 21px;
	}
}
