/* ============================================================
   Nautica Gift Card Promo — Sezione homepage sponsor gift card
   Layout: immagine quadrata sx + testo dx, sopra il banner
   ============================================================ */

.nws-gcpromo-section {
	width: 100%;
	max-width: 1300px;
	margin: 40px auto;
	padding: 0 16px;
	box-sizing: border-box;
}

.nws-gcpromo {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: stretch;
	padding: 40px;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(10,37,64,.06), 0 12px 32px rgba(10,37,64,.08);
	min-height: 420px;
}

/* ─── Immagine quadrata ─── */
.nws-gcpromo__media {
	display: block;
	aspect-ratio: 1 / 1;
	width: 100%;
	max-width: 460px;
	justify-self: center;
	align-self: center;
	border-radius: 18px;
	overflow: hidden;
	background: rgba(255,255,255,.4);
	transition: transform .25s ease;
	box-shadow: 0 4px 14px rgba(10,37,64,.10);
}
.nws-gcpromo__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.nws-gcpromo__media:hover { transform: scale(1.015); }

/* ─── Contenuto destra (riempie tutto il box) ─── */
.nws-gcpromo__content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
	justify-content: center;
	padding: 0;
}

.nws-gcpromo__title {
	font-family: "Jost", sans-serif;
	font-size: clamp(28px, 3vw, 44px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -1px;
	margin: 0;
}

.nws-gcpromo__desc {
	font-family: "Jost", sans-serif;
	font-size: 17px;
	line-height: 1.55;
	margin: 0;
	max-width: 560px;
}

/* ─── CTA ─── */
.nws-gcpromo__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	align-self: flex-start;
	padding: 16px 32px;
	border-radius: 999px;
	background: #0a2540;
	color: #fff !important;
	font-family: "Jost", sans-serif;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .3px;
	text-decoration: none !important;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
	box-shadow: 0 3px 12px rgba(10,37,64,.22);
	margin-top: 10px;
}
.nws-gcpromo__btn:hover {
	background: #122f4d;
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(10,37,64,.28);
}
.nws-gcpromo__btn svg { transition: transform .18s ease; }
.nws-gcpromo__btn:hover svg { transform: translateX(3px); }

/* ─── Responsive ─── */
@media (max-width: 980px) {
	.nws-gcpromo {
		gap: 32px;
		padding: 28px;
		min-height: auto;
	}
	.nws-gcpromo__title { font-size: clamp(24px, 4vw, 34px); }
	.nws-gcpromo__media { max-width: 360px; }
}

@media (max-width: 768px) {
	.nws-gcpromo-section {
		padding: 0 12px;
	}
	.nws-gcpromo {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 22px;
		border-radius: 16px;
	}
	.nws-gcpromo__media {
		max-width: 280px;
		margin: 0 auto;
		border-radius: 14px;
	}
	.nws-gcpromo__content {
		text-align: center;
		align-items: center;
		padding: 0;
	}
	.nws-gcpromo__btn { align-self: center; }
}

@media (max-width: 480px) {
	.nws-gcpromo__title { font-size: 22px; }
	.nws-gcpromo__desc  { font-size: 14px; }
	.nws-gcpromo__btn   { padding: 13px 24px; font-size: 14px; }
}
