/**
 * Coupons Section Block Styles
 * Loaded automatically when the coupons-section block is present on the page.
 */

/* ==========================================================================
   SECTION
   ========================================================================== */

.coupons-section {
	background: var(--color-white, #fff);
	padding: 72px 0 80px;
	overflow: hidden;
}

/* ==========================================================================
   INNER / LAYOUT
   ========================================================================== */

.coupons-section__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
}

/* ==========================================================================
   TITLE
   ========================================================================== */

.coupons-section__title {
	font-family: var(--font-base);
	font-size: 42px;
	font-weight: 900;
	line-height: 1.045;
	color: var(--color-black, #000);
	text-align: center;
	margin: 0;
}

/* ==========================================================================
   GRID
   ========================================================================== */

.coupons-section__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
}

/* ==========================================================================
   CARD
   ========================================================================== */

.coupons-section__card {
	background: var(--color-bg-grey, #f8fafc);
	border: 4px dashed #b90017;
	border-radius: 8px;
	padding: 48px 32px 36px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	min-height: 300px;
	justify-content: center;
}

/* ---------- Card Title ---------- */

.coupons-section__card-title {
	font-family: var(--font-base);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.0625; /* ~34px */
	letter-spacing: -0.3125px;
	color: #1b3a6b;
	margin: 0 0 4px;
}

/* ---------- Call For Details ---------- */

.coupons-section__card-call {
	font-family: var(--font-base);
	font-size: 23px;
	font-weight: 500;
	line-height: 1.391;
	color: #1b3a6b;
	margin: 0;
}

/* ---------- Expire ---------- */

.coupons-section__card-expire {
	font-family: var(--font-base);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.0625;
	color: #1b3a6b;
	margin: 0;
}

/* ---------- Terms / Fine print ---------- */

.coupons-section__card-terms {
	font-family: var(--font-base);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.416;
	color: #1b3a6b;
	max-width: 275px;
	margin: 4px 0 0;
	text-align: center;
}

.coupons-section__card-terms p {
	margin: 0;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.coupons-section__cta-wrap {
	display: flex;
	justify-content: center;
}

.coupons-section__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 47px;
	padding: 0 40px;
	border-radius: 4px;
	background: var(--color-red, #d30000);
	color: var(--color-white, #fff) !important;
	font-family: var(--font-base);
	font-size: 16px;
	font-weight: 900;
	text-decoration: none !important;
	white-space: nowrap;
	transition: opacity 0.2s ease;
}

.coupons-section__cta:hover {
	opacity: 0.88;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1199px) {
	.coupons-section__title {
		font-size: 36px;
	}

	.coupons-section__card-title {
		font-size: 28px;
	}
}

@media (max-width: 991px) {
	.coupons-section__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.coupons-section {
		padding: 48px 0 56px;
	}

	.coupons-section__title {
		font-size: 30px;
	}

	.coupons-section__grid {
		grid-template-columns: 1fr;
	}

	.coupons-section__card {
		padding: 36px 24px 28px;
		min-height: auto;
	}

	.coupons-section__card-title {
		font-size: 26px;
	}

	.coupons-section__card-call {
		font-size: 19px;
	}
}


/* Center coupon cards (single or multiple) */
.coupons-section__grid {
	grid-template-columns: repeat(auto-fit, minmax(0, 416px));
	justify-content: center;
}
