/**
 * Smoking Aces — Story widget styles
 * Estratti 1:1 dal prototipo Story.dc.html
 */

.sma-sto-wrap {
	font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
	color: var(--sma-sto-text, #1C1A16);
	background: var(--sma-sto-outer-bg, #EFEDEC);
	-webkit-font-smoothing: antialiased;
}
.sma-sto-wrap *,
.sma-sto-wrap *::before,
.sma-sto-wrap *::after { box-sizing: border-box; }

.sma-sto {
	width: 100%;
	margin: 0 auto;
	padding: clamp(32px, 4vw, 64px) clamp(20px, 3vw, 48px);
}

.sma-sto__inner {
	width: 100%;
	margin: 0 auto;
}

.sma-sto__grid {
	display: grid;
	grid-template-columns: 45% minmax(0, 1fr);
	gap: clamp(24px, 3vw, 72px);
	align-items: center;
}

@media (max-width: 1200px) {
	.sma-sto__grid {
		grid-template-columns: 40% minmax(0, 1fr);
		gap: clamp(20px, 2.5vw, 40px);
	}
}

@media (max-width: 720px) {
	.sma-sto__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
	}
}

.sma-sto__media {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 16px;
	background-color: #000;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

.sma-sto__badge {
	position: absolute;
	right: 18px;
	bottom: 18px;
	background: var(--sma-sto-badge-bg, #E6FD56);
	color: var(--sma-sto-badge-color, #1C1A16);
	border-radius: 14px;
	padding: 14px 22px;
	text-align: center;
	line-height: 1.1;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.sma-sto__badge-num {
	font-family: 'Manrope', system-ui, sans-serif;
	font-weight: 800;
	font-size: clamp(22px, 2.2vw, 30px);
	letter-spacing: -0.02em;
	display: block;
}
.sma-sto__badge-lbl {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-top: 4px;
	display: block;
	opacity: 0.9;
}

.sma-sto__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sma-sto-text, #1C1A16);
	margin: 0 0 18px;
}
.sma-sto__eyebrow::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--sma-sto-eyebrow-dot, #B9D62F);
	flex: 0 0 6px;
}

.sma-sto__title {
	font-family: 'Manrope', system-ui, sans-serif;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.08;
	margin: 0;
	font-size: clamp(28px, 3.4vw, 44px);
	color: var(--sma-sto-text, #1C1A16);
	text-wrap: balance;
}

.sma-sto__desc {
	font-size: clamp(15px, 1.05vw, 16px);
	line-height: 1.6;
	color: var(--sma-sto-text, #1C1A16);
	margin: 16px 0 28px;
	text-wrap: pretty;
	max-width: 56ch;
}

.sma-sto__author {
	font-family: 'Manrope', system-ui, sans-serif;
	font-weight: 800;
	font-size: 18px;
	margin: 0 0 4px;
	color: var(--sma-sto-text, #1C1A16);
}

.sma-sto__role {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sma-sto-role, #8A857E);
	margin: 0 0 20px;
}

.sma-sto__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--sma-sto-btn-bg, #E6FD56);
	color: var(--sma-sto-btn-color, #1C1A16);
	font-weight: 700;
	font-size: 15px;
	padding: 14px 22px;
	border-radius: 999px;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease;
}
.sma-sto__btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.sma-sto__btn svg { width: 16px; height: 16px; }
