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

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

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

.sma-srv__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-srv-text, #1C1A16);
	margin: 0 0 18px;
}
.sma-srv__eyebrow::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--sma-srv-eyebrow-dot, #B9D62F);
	flex: 0 0 6px;
}

.sma-srv__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-srv-text, #1C1A16);
	text-wrap: balance;
}

.sma-srv__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(24px, 3vw, 56px);
	margin-top: clamp(40px, 5vw, 72px);
}

@media (max-width: 900px) {
	.sma-srv__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
	.sma-srv__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
}

.sma-srv__card {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: transform .25s ease;
}
.sma-srv__card--link { cursor: pointer; }
.sma-srv__card--link .sma-srv__icon,
.sma-srv__card--link .sma-srv__card-title {
	transition: transform .25s ease, background .25s ease, color .25s ease;
}
.sma-srv__card--link:hover { transform: translateY(-4px); }
.sma-srv__card--link:hover .sma-srv__icon {
	background: var(--sma-srv-icon-color, #1C1A16);
	color: var(--sma-srv-icon-bg, #B9D62F);
}
.sma-srv__card--link:hover .sma-srv__card-title {
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.sma-srv__icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--sma-srv-icon-bg, #B9D62F);
	color: var(--sma-srv-icon-color, #1C1A16);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.sma-srv__icon svg { width: 20px; height: 20px; }
.sma-srv__icon i { font-size: 20px; line-height: 1; }

.sma-srv__card-title {
	font-family: 'Manrope', system-ui, sans-serif;
	font-weight: 800;
	letter-spacing: -0.01em;
	font-size: clamp(18px, 1.4vw, 22px);
	margin: 0 0 12px;
	color: var(--sma-srv-text, #1C1A16);
}

.sma-srv__card-desc {
	font-size: clamp(14px, 1vw, 15px);
	line-height: 1.6;
	color: var(--sma-srv-text, #1C1A16);
	margin: 0;
	text-wrap: pretty;
	max-width: 34ch;
}
