/* Smoking Aces — Chi siamo: Hero */

.sma-abh-wrap {
	--sma-abh-outer-bg: #0F0E0D;
	--sma-abh-eyebrow: #EFEDEC;
	--sma-abh-eyebrow-dot: #E6FD56;
	--sma-abh-title: #FFFFFF;
	--sma-abh-title-accent: #E6FD56;
	--sma-abh-desc: #C9C5C0;
	--sma-abh-media-bg: #000000;
	--sma-abh-side-border: rgba(255,255,255,0.2);
	width: 100%;
}

.sma-abh {
	background: var(--sma-abh-outer-bg);
	width: 100%;
	box-sizing: border-box;
	padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 40px);
	overflow-x: clip;
	font-family: 'Plus Jakarta Sans', sans-serif;
	-webkit-font-smoothing: antialiased;
}

.sma-abh__inner {
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(36px, 4.5vw, 64px);
}

/* --- Testo --- */
.sma-abh__text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(14px, 1.4vw, 20px);
	max-width: 1000px;
	text-align: center;
	width: 100%;
}

.sma-abh__eyebrow {
	display: flex;
	align-items: center;
	gap: 9px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 700;
	font-size: clamp(11px, 0.85vw, 13px);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sma-abh-eyebrow);
	line-height: 1.3;
}

.sma-abh__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--sma-abh-eyebrow-dot);
	display: block;
	flex: 0 0 auto;
}

.sma-abh__title {
	margin: 0;
	padding: 0;
	font-family: Manrope, sans-serif;
	font-weight: 800;
	font-size: clamp(30px, 3.9vw, 56px);
	line-height: 1.14;
	letter-spacing: -0.02em;
	color: var(--sma-abh-title);
	text-wrap: balance;
}

.sma-abh__title-l2 { color: var(--sma-abh-title-accent); }

.sma-abh__desc {
	margin: 0;
	max-width: 720px;
	font-size: clamp(14px, 1.1vw, 17px);
	line-height: 1.62;
	color: var(--sma-abh-desc);
	text-wrap: pretty;
}

/* --- Immagini --- */
.sma-abh__media {
	position: relative;
	width: 100%;
	max-width: 1124px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.sma-abh__main {
	width: 100%;
	padding-top: 54%;
	border-radius: 16px;
	background-color: var(--sma-abh-media-bg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.sma-abh__side {
	position: absolute;
	width: 34%;
	max-width: 384px;
	aspect-ratio: 1 / 1;
	border-radius: 14px;
	border: 1px solid var(--sma-abh-side-border);
	box-sizing: border-box;
	background-color: var(--sma-abh-media-bg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}

.sma-abh__side--left {
	left: 0;
	top: 16%;
	transform: translateX(-22%);
}

.sma-abh__side--right {
	right: 0;
	bottom: 10%;
	transform: translateX(22%);
}

@media (max-width: 700px) {
	.sma-abh__side { box-shadow: 0 14px 32px rgba(0,0,0,0.5); }
}
