/* CouponVerity exclusive-brand showcase. Kept separate so this homepage block
 * can be redesigned without touching Header, Footer, Hero, Categories or Store UI. */
.cv-home-exclusive-brands {
	padding-top: 64px;
	padding-bottom: 72px;
}

.cv-exclusive-brand-heading {
	margin-bottom: 24px;
}

.cv-exclusive-brand-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cv-exclusive-brand-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 360px;
	padding: 20px;
	background: #fff;
	border: 1px solid #c8d9ce;
	border-radius: 14px;
	box-shadow: 0 5px 18px rgba(15, 23, 42, .07);
	transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.cv-exclusive-brand-card:hover,
.cv-exclusive-brand-card:focus-within {
	border-color: #87b79a;
	box-shadow: 0 12px 28px rgba(15, 23, 42, .11);
	transform: translateY(-2px);
}

.cv-exclusive-brand-card__badge {
	align-self: flex-start;
	padding: 5px 9px;
	border-radius: 999px;
	background: #e7f7ec;
	color: #15733d;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .055em;
	line-height: 1.2;
	text-transform: uppercase;
}

.cv-exclusive-brand-card__logo-stage {
	display: grid;
	place-items: center;
	height: 108px;
	margin: 16px 0 10px;
	padding: 10px;
	border-radius: 10px;
	background: #fbfcfd;
}

.cv-exclusive-brand-card__logo-stage img {
	display: block;
	width: auto;
	max-width: 140px;
	height: auto;
	max-height: 78px;
	object-fit: contain;
}

.cv-exclusive-brand-card__monogram {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	border-radius: 14px;
	background: #edf2f7;
	color: #153b78;
	font-size: 32px;
	font-weight: 800;
}

.cv-exclusive-brand-card__brand {
	margin: 0;
	color: #344054;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

.cv-exclusive-brand-card__saving {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 7px;
	margin-top: 10px;
	color: #1e293b;
	text-align: center;
}

.cv-exclusive-brand-card__saving strong {
	font-size: 34px;
	font-weight: 750;
	letter-spacing: -.045em;
	line-height: 1;
}

.cv-exclusive-brand-card__saving span {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .035em;
}

.cv-exclusive-brand-card h3 {
	margin: 13px 0 18px;
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: -.02em;
	text-align: center;
}

.cv-exclusive-brand-card h3 a {
	color: #17202c;
	text-decoration: none;
}

.cv-exclusive-brand-card h3 a:hover,
.cv-exclusive-brand-card h3 a:focus-visible {
	color: #0a397e;
	text-decoration: underline;
}

.cv-exclusive-brand-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	margin-top: auto;
	padding: 0 16px;
	border-radius: 5px;
	background: #16834a;
	color: #fff !important;
	font-weight: 750;
	text-decoration: none !important;
	box-shadow: 0 4px 10px rgba(22, 131, 74, .18);
	transition: background 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.cv-exclusive-brand-card__cta:hover,
.cv-exclusive-brand-card__cta:focus-visible {
	background: #116d3d;
	box-shadow: 0 8px 18px rgba(22, 131, 74, .24);
	transform: translateY(-1px);
}

@media (max-width: 980px) {
	.cv-exclusive-brand-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.cv-home-exclusive-brands {
		padding-top: 44px;
		padding-bottom: 52px;
	}

	.cv-exclusive-brand-grid {
		grid-template-columns: 1fr;
	}

	.cv-exclusive-brand-card {
		min-height: 330px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cv-exclusive-brand-card,
	.cv-exclusive-brand-card__cta {
		transition: none !important;
	}
}
