.tcp-showcase {
	--tcp-ink: #171717;
	--tcp-gold: #d89a31;
	--tcp-cream: #f7f3ec;
	--tcp-line: #e8dfd3;
	width: min(1180px, calc(100% - 32px));
	margin: clamp(42px, 6vw, 76px) auto;
	padding: clamp(26px, 4vw, 48px);
	border: 1px solid var(--tcp-line);
	border-radius: 30px;
	background:
		radial-gradient(circle at 100% 0, rgba(216, 154, 49, .12), transparent 28%),
		linear-gradient(180deg, #fff, #fbf8f3);
	box-shadow: 0 22px 60px rgba(45, 34, 18, .08);
	font-family: Manrope, Roboto, sans-serif;
}

.tcp-showcase *,
.tcp-showcase *::before,
.tcp-showcase *::after {
	box-sizing: border-box;
}

.tcp-showcase__head {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
	align-items: end;
	gap: 36px;
	margin-bottom: 30px;
}

.tcp-showcase__eyebrow {
	display: inline-block;
	margin-bottom: 10px;
	color: var(--tcp-gold);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.tcp-showcase__head h2 {
	margin: 0;
	color: var(--tcp-ink);
	font: 800 clamp(30px, 4vw, 46px)/1.05 Manrope, Roboto, sans-serif !important;
	letter-spacing: -.04em;
	text-transform: none;
}

.tcp-showcase__head p {
	max-width: 620px;
	margin: 0;
	color: #655f57;
	font-size: 16px;
	line-height: 1.75;
}

.tcp-showcase__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.tcp-card {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--tcp-line);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(30, 25, 18, .07);
	transition: transform .25s ease, box-shadow .25s ease;
}

.tcp-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 44px rgba(30, 25, 18, .12);
}

.tcp-showcase .tcp-card__media {
	position: relative;
	display: block;
	width: 100%;
	min-height: 0;
	height: 210px;
	border-radius: 0;
	background: #ddd;
	box-shadow: none;
	overflow: hidden;
}

.tcp-showcase .tcp-card__media img {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	display: block;
	transition: transform .35s ease;
}

.tcp-card:hover .tcp-card__media img {
	transform: scale(1.04);
}

.tcp-card__media::after {
	content: "";
	position: absolute;
	inset: 45% 0 0;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .55));
	pointer-events: none;
}

.tcp-card__count,
.tcp-card__zoom {
	position: absolute;
	z-index: 2;
	color: #fff;
	background: rgba(18, 18, 18, .7);
	border: 1px solid rgba(255, 255, 255, .22);
	backdrop-filter: blur(8px);
}

.tcp-card__count {
	left: 14px;
	bottom: 14px;
	padding: 7px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
}

.tcp-card__zoom {
	right: 14px;
	top: 14px;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	font-size: 17px;
}

.tcp-card__hidden-image {
	display: none !important;
}

.tcp-card__body {
	position: relative;
	min-height: 215px;
	padding: 22px 22px 20px;
}

.tcp-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 25px;
	margin-bottom: 12px;
	border-radius: 999px;
	background: rgba(216, 154, 49, .13);
	color: var(--tcp-gold);
	font-size: 11px;
	font-weight: 800;
}

.tcp-card__body h3 {
	margin: 0 0 9px;
	font: 800 21px/1.2 Manrope, Roboto, sans-serif !important;
	letter-spacing: -.025em;
	text-transform: none;
}

.tcp-card__body h3 a {
	color: var(--tcp-ink);
	text-decoration: none;
}

.tcp-card__body p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 70px;
	margin: 0 0 16px;
	color: #6c655d;
	font-size: 14px;
	line-height: 1.65;
}

.tcp-card__link,
.tcp-showcase__footer a {
	color: var(--tcp-ink);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.tcp-card__link span,
.tcp-showcase__footer span {
	color: var(--tcp-gold);
	font-size: 17px;
	transition: transform .2s ease;
}

.tcp-card__link:hover span,
.tcp-showcase__footer a:hover span {
	display: inline-block;
	transform: translateX(4px);
}

.tcp-showcase__footer {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.tcp-showcase__footer a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 12px 18px;
	border: 1px solid var(--tcp-line);
	border-radius: 999px;
	background: #fff;
}

@media (max-width: 980px) {
	.tcp-showcase__head {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.tcp-showcase__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.tcp-showcase {
		width: min(100% - 20px, 1180px);
		margin: 30px auto;
		padding: 20px 14px;
		border-radius: 22px;
	}

	.tcp-showcase__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.tcp-showcase .tcp-card__media {
		height: 205px;
	}

	.tcp-card__body {
		min-height: 0;
		padding: 19px 18px;
	}

	.tcp-card__body p {
		min-height: 0;
	}
}
