/* ── Outer container ── */
.wsc-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: clamp(20px, 5vw, 48px) clamp(12px, 4vw, 24px);
	font-family: inherit;
	box-sizing: border-box;
}

/* ── Section title ── */
.wsc-title {
	text-align: center;
	font-size: clamp(1.35rem, 4vw, 1.9rem);
	margin: 0 0 clamp(20px, 5vw, 40px);
	line-height: 1.3;
}
.wsc-date {
	font-weight: 400;
	opacity: 0.65;
}

/* ── Responsive grid ── */
.wsc-grid {
	display: grid;
	gap: clamp(12px, 2.5vw, 24px);
}
.wsc-cols-2 { grid-template-columns: repeat(2, 1fr); }
.wsc-cols-3 { grid-template-columns: repeat(3, 1fr); }
.wsc-cols-4 { grid-template-columns: repeat(4, 1fr); }
.wsc-cols-5 { grid-template-columns: repeat(5, 1fr); }
.wsc-cols-6 { grid-template-columns: repeat(6, 1fr); }

/* Tablet: max 3 columns */
@media (max-width: 960px) {
	.wsc-cols-4,
	.wsc-cols-5,
	.wsc-cols-6 {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

/* Large phone: 2 columns */
@media (max-width: 640px) {
	.wsc-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.wsc-cols-2 {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

/* Small phone: 1 column */
@media (max-width: 400px) {
	.wsc-grid {
		grid-template-columns: 1fr !important;
	}
}

/* ── Individual stat card ── */
.wsc-stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: clamp(18px, 4vw, 32px) clamp(10px, 3vw, 20px);
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	/* ensure cards in same row are equal height */
	align-self: stretch;
}
.wsc-stat-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}
/* Disable hover lift on touch screens */
@media (hover: none) {
	.wsc-stat-item:hover {
		transform: none;
		box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
	}
}

/* ── Number display ── */
.wsc-number {
	display: block;
	font-size: clamp(2rem, 6vw, 3rem);
	font-weight: 700;
	color: #2563eb;
	line-height: 1;
	margin-bottom: clamp(8px, 2vw, 14px);
	letter-spacing: -0.02em;
	word-break: break-word;
	/* Isolate text repaints from the rest of the page */
	contain: strict;
	will-change: contents;
}

/* ── Label ── */
.wsc-label {
	display: block;
	font-size: clamp(0.7rem, 2vw, 0.85rem);
	color: #555;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	line-height: 1.5;
}
