/* BlueWave Promo Cards — scope: .bw-promos */
.bw-promos {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 24px;
}

.bw-promo {
	position: relative;
	padding: 56px;
	border-radius: 28px;
	overflow: hidden;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: #ffffff;
	background-size: cover;
	background-position: center;
}

.bw-promo__content { position: relative; z-index: 1; }

.bw-promo__eyebrow {
	display: block;
	margin-bottom: 12px;
	font-family: var(--display, "Stack Sans Headline", "Helvetica Neue", Arial, sans-serif);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #f1c286;
}

.bw-promo__heading {
	font-family: var(--display, "Stack Sans Headline", "Helvetica Neue", Arial, sans-serif);
	font-size: clamp(34px, 3.4vw, 46px);
	color: #ffffff;
	margin: 0;
	line-height: 1.05;
	max-width: 14ch;
	font-weight: 700;
}

.bw-promo__body {
	color: #ffffff;
	margin: 14px 0 25px;
	max-width: 38ch;
	font-size: 16px;
	position: relative;
	z-index: 1;
}

.bw-promo__btn {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	transition: transform 0.2s ease, filter 0.2s ease;
	position: relative;
	z-index: 1;
}
.bw-promo__btn:hover {
	transform: translateY(-1px);
	filter: brightness(0.95);
}
.bw-promo__btn:hover .bw-btn-arrow { transform: translateX(3px); }

/* Deco shape — radial blob in one of the four corners. */
.bw-promo__deco {
	position: absolute;
	z-index: 0;
	pointer-events: none;
	border-radius: 50%;
}
.bw-promo__deco--tl { top: -60px;    left: -60px;   }
.bw-promo__deco--tr { top: -60px;    right: -60px;  }
.bw-promo__deco--bl { bottom: -60px; left: -60px;   }
.bw-promo__deco--br { bottom: -60px; right: -60px;  }

/* Responsive — stack on tablet/mobile and tame the deco. */
@media (max-width: 1024px) {
	.bw-promos { grid-template-columns: 1fr; }
	.bw-promo  { padding: 44px; }
	.bw-promo__deco { transform: scale(0.7); }
}
@media (max-width: 767px) {
	.bw-promo { padding: 32px; min-height: 260px; }
	.bw-promo__heading { font-size: clamp(26px, 6vw, 36px); }
}

/* Per-card hide-on-breakpoint. */
@media (min-width: 1025px) { .bw-promo--hide-desktop { display: none !important; } }
@media (max-width: 1024px) and (min-width: 768px) { .bw-promo--hide-tablet { display: none !important; } }
@media (max-width: 767px) { .bw-promo--hide-mobile { display: none !important; } }
