/* Smoking Aces — Pick & Pay: Hero (sma_pickpay_hero) */

.sma-pph-wrap {
	--sma-pph-bg:#EFEDEC; --sma-pph-title:#1C1A16; --sma-pph-subtitle:#1C1A16; --sma-pph-desc:#1C1A16;
	--sma-pph-eyebrow:#8A857E; --sma-pph-dot:#B9D62F;
	--sma-pph-cta-bg:#E6FD56; --sma-pph-cta-bg-h:#B9D62F; --sma-pph-cta-color:#1C1A16; --sma-pph-cta-border:#1C1A16;
}

.sma-pph {
	width: 100%;
	box-sizing: border-box;
	background: var(--sma-pph-bg);
	padding: clamp(40px, 5vw, 88px) clamp(16px, 3vw, 48px);
	font-family: 'Plus Jakarta Sans', sans-serif;
	-webkit-font-smoothing: antialiased;
}

.sma-pph__max { max-width: 1600px; margin: 0 auto; }

.sma-pph__grid {
	display: grid;
	grid-template-columns: minmax(0, 44%) minmax(0, 1fr);
	gap: clamp(28px, 3.4vw, 64px);
	align-items: center;
}

.sma-pph__eyebrow {
	display: flex; align-items: center; gap: 9px;
	margin-bottom: clamp(12px, 1.2vw, 18px);
	font-weight: 700; font-size: clamp(11px, 0.85vw, 13px);
	letter-spacing: 0.14em; text-transform: uppercase;
	color: var(--sma-pph-eyebrow);
}
.sma-pph__dot { width: 6px; height: 6px; flex: 0 0 6px; border-radius: 50%; background: var(--sma-pph-dot); display: block; }

.sma-pph__title {
	margin: 0;
	font-family: Manrope, sans-serif; font-weight: 800;
	font-size: clamp(30px, 3.4vw, 50px); line-height: 1.05; letter-spacing: -0.03em;
	color: var(--sma-pph-title); text-wrap: balance;
}

.sma-pph__subtitle {
	margin: clamp(16px, 1.6vw, 24px) 0 0;
	font-family: Manrope, sans-serif; font-weight: 700;
	font-size: clamp(18px, 1.5vw, 24px); line-height: 1.25; letter-spacing: -0.01em;
	color: var(--sma-pph-subtitle);
}

.sma-pph__desc {
	margin: clamp(14px, 1.2vw, 18px) 0 0;
	max-width: 52ch;
	font-size: clamp(15px, 1.05vw, 17px); line-height: 1.65;
	color: var(--sma-pph-desc); text-wrap: pretty;
}

.sma-pph__cta {
	display: inline-flex; align-items: center; gap: 10px;
	margin-top: clamp(24px, 2.6vw, 36px);
	padding: 16px 28px;
	border-radius: 999px;
	background: var(--sma-pph-cta-bg);
	border: 1px solid var(--sma-pph-cta-border);
	color: var(--sma-pph-cta-color);
	font-weight: 700; font-size: clamp(14px, 1vw, 16px);
	text-decoration: none;
	transition: background .25s ease;
	box-sizing: border-box;
}
.sma-pph__cta:hover { background: var(--sma-pph-cta-bg-h); color: var(--sma-pph-cta-color); }
.sma-pph__cta svg { width: 16px; height: 16px; }

.sma-pph__photo {
	width: 100%;
	aspect-ratio: 1.45;
	border-radius: 24px;
	background-color: #D9D6D3;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* ===== Tablet / Mobile: immagine sopra ===== */
@media (max-width: 1024px) {
	.sma-pph-wrap .sma-pph__grid { grid-template-columns: minmax(0, 1fr) !important; }
	.sma-pph-wrap .sma-pph__photo { order: -1; border-radius: 10px; }
}
