/**
 * Westphal Solutions - Tools index (self-contained)
 *
 * Owns everything under the `wstools` prefix. Reads only the theme's brand
 * variables from main.css; shares no classes, files, or hooks with any other
 * tool. Safe to edit or delete on its own.
 */

.wstools { width: 100%; }

/* === Intro === */
.wstools__intro { margin-bottom: 56px; }
.wstools__title { margin: 14px 0 20px; }
.wstools__lead {
	color: var(--ws-muted);
	font-size: 1.125rem;
	line-height: 1.6;
	max-width: 60ch;
	margin: 0;
}

/* === Category groups === */
.wstools__groups {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 44px 48px;
}
.wstools__group { min-width: 0; }

.wstools__cat {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--ws-heading);
	margin: 0 0 18px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--ws-accent);
}

/* === Links === */
.wstools__list { list-style: none; margin: 0; padding: 0; }
.wstools__item { margin: 0; }
.wstools__item + .wstools__item { margin-top: 8px; }
.wstools__link { font-size: 1.125rem; line-height: 1.4; }

/* === Phones === */
@media (max-width: 600px) {
	.wstools__intro { margin-bottom: 40px; }
	.wstools__groups { grid-template-columns: 1fr; gap: 40px; }
}
