/* WALIT — layout

   Contenitore, ritmo verticale, griglie. Le misure vengono dai token:
   nessun valore fisso qui dentro. */

:root {
	--header-height: 64px;
}

.wl-shell {
	overflow: hidden;
}

.wl-container {
	width: min(var(--content-width),100%);
	margin-inline: auto;
	padding-inline: var(--page-pad);
}

.wl-section {
	padding-block: var(--section-pad);
}

.wl-kicker, .wl-label, .wl-section-rule span {
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--grey-500);
}

.wl-section-rule {
	display: flex;
	align-items: center;
	margin-bottom: clamp(32px,5vh,72px);
}

.wl-section-rule:after {
	flex: 1;
	height: 1px;
	background: var(--dark-hairline);
	content: "";
}

.wl-section-rule span {
	border: 1px solid var(--dark-border-soft);
	padding: 8px 15px;
	white-space: nowrap;
}

.wl-columns {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	gap: clamp(28px,4vw,64px);
	margin-top: clamp(32px,5vh,56px);
}

.wl-columns p {
	max-width: 46ch;
	margin: 0;
}

.wl-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: clamp(32px,5vh,52px);
}

.wl-section-heading .wl-label {
	display: inline-block;
	margin-bottom: 20px;
	border: 1px solid var(--dark-border-soft);
	padding: 8px 15px;
}

.wl-grid {
	display: grid;
	gap: 12px;
}

.wl-grid--3 {
	grid-template-columns: repeat(3,minmax(0,1fr));
}

.wl-grid--4 {
	grid-template-columns: repeat(4,minmax(0,1fr));
}
