/* Industries listing + industry detail pages */
.industries-layout { display: grid; gap: 18px; }
.industries-copy { max-width: 78ch; }
.industries-subhead { margin-top: 18px; }
.industries-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.industries-media { height: 150px; }

/* Industry detail (Building Products) */
.industry-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 22px; align-items: start; }
.industry-hero-image {
	height: 260px;
	background-size: cover;
	background-position: center;
	border: 1px solid var(--hh-border);
	border-radius: var(--hh-radius);
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(2, 6, 23, 0.08);
}
.industry-copy { margin-top: 18px; max-width: 78ch; }
.industry-copy h2 { margin-top: 22px; margin-bottom: 10px; font-weight: 900; letter-spacing: -0.02em; color: var(--hh-text); }
.industry-copy h2:first-child { margin-top: 0; }
.industry-copy p { margin-bottom: 14px; }
.industry-copy .lead { font-size: 18px; line-height: 1.65; }
.industry-copy a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(11, 42, 91, 0.08);
	border: 1px solid rgba(11, 42, 91, 0.18);
	color: var(--hh-primary);
	text-decoration: none;
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.02em;
}
.industry-copy a:hover { background: rgba(11, 42, 91, 0.12); border-color: rgba(11, 42, 91, 0.28); }
.industry-copy a:focus-visible { outline: 3px solid rgba(255, 178, 0, 0.55); outline-offset: 2px; }
.industry-copy .page-quote { margin-top: 12px; margin-bottom: 12px; border-radius: var(--hh-radius); }
.industry-sidebar { display: grid; gap: 16px; }
.sidebar-card {
	border: 1px solid var(--hh-border);
	background: white;
	border-radius: var(--hh-radius);
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
}
.sidebar-card-head { padding: 12px 14px; font-size: 14px; border-bottom: 1px solid var(--hh-border); background: rgba(2, 6, 23, 0.02); color: rgba(15,23,42,0.85); }
.sidebar-card-head span { color: rgba(15,23,42,0.60); font-weight: 600; }
.sidebar-nav { list-style: none; padding: 0; margin: 0; background: white; }
.sidebar-nav li a { display: block; padding: 12px 14px; text-decoration: none; border-bottom: 1px solid rgba(2, 6, 23, 0.06); font-weight: 800; color: rgba(15,23,42,0.85); }
.sidebar-nav li a:hover { background: rgba(11, 42, 91, 0.06); }
.sidebar-nav li.is-active a { background: #0b7fb2; color: white; }
.sidebar-quote-head { padding: 12px 14px; background: rgba(2, 6, 23, 0.02); border-bottom: 1px solid var(--hh-border); font-weight: 800; color: rgba(15,23,42,0.80); }
.sidebar-form { padding: 12px 14px; display: grid; gap: 10px; background: white; }
.sidebar-form input, .sidebar-form select, .sidebar-form textarea {
	width: 100%;
	padding: 10px 10px;
	border: 1px solid rgba(15, 23, 42, 0.16);
	background: white;
	font: inherit;
	font-size: 13px;
}
.sidebar-form input:focus, .sidebar-form select:focus, .sidebar-form textarea:focus {
	outline: 3px solid rgba(255, 178, 0, 0.45);
	outline-offset: 1px;
	border-color: rgba(11, 42, 91, 0.35);
}
.sidebar-submit { background: var(--hh-primary); color: white; border: 0; padding: 12px 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; cursor: pointer; border-radius: 10px; }
.sidebar-submit:hover { filter: brightness(1.05); }
.sidebar-form-note { margin: 0; font-size: 11px; color: rgba(15,23,42,0.60); }
.sidebar-brochure { display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid var(--hh-border); border-radius: var(--hh-radius); text-decoration: none; background: linear-gradient(180deg, rgba(11,127,178,0.14), rgba(255,255,255,0)); box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06); }
.sidebar-brochure:hover { filter: brightness(1.02); }
.brochure-badge { background: #0b7fb2; color: white; font-weight: 900; padding: 10px 12px; }
.brochure-text { color: rgba(15,23,42,0.85); font-weight: 900; }
.brochure-text small { font-weight: 700; color: rgba(15,23,42,0.60); }

/* Building Products – match HiTech-like blocks (scoped) */
.industry-page-building-products .industry-hero-image,
.industry-page-building-products .sidebar-card,
.industry-page-building-products .sidebar-brochure,
.industry-page-building-products .page-quote,
.industry-page-building-products .sidebar-submit,
.industry-page-building-products .hh-btn,
.industry-page-building-products .hh-pill-list li,
.industry-page-building-products .hh-benefit-icon,
.industry-page-building-products .hh-expertise-tile {
	border-radius: 0 !important;
}

.industry-page-building-products .industry-copy a { all: unset; }
.industry-page-building-products .industry-copy a,
.industry-page-building-products .industry-copy a:hover { text-decoration: none; }

.industry-page-building-products .hh-cta-row { margin: 14px 0 22px; }
.industry-page-building-products .hh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border: 1px solid rgba(15, 23, 42, 0.16);
	background: white;
	color: var(--hh-primary);
	text-decoration: none;
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.02em;
}
.industry-page-building-products .hh-btn:hover { filter: brightness(0.98); }
.industry-page-building-products .hh-btn:focus-visible { outline: 3px solid rgba(255, 178, 0, 0.55); outline-offset: 2px; }
.industry-page-building-products .hh-btn-primary { background: #0b7fb2; border-color: #0b7fb2; color: white; }
.industry-page-building-products .hh-btn-link { background: transparent; border-color: transparent; color: #0b7fb2; padding: 0; font-weight: 800; }
.industry-page-building-products .hh-btn-link:hover { text-decoration: underline; }
.industry-page-building-products .hh-btn-accent { background: #f59e0b; border-color: #f59e0b; color: white; padding-inline: 22px; }

.industry-page-building-products .hh-pill-list {
	list-style: none;
	padding: 0;
	margin: 14px 0 14px;
	display: grid;
	gap: 12px;
}
.industry-page-building-products .hh-pill-list li {
	background: #eeeeee;
	border: 1px solid #e0e0e0;
	padding: 14px 16px;
	border-left: 4px solid #f59e0b;
	color: rgba(15, 23, 42, 0.78);
	font-weight: 600;
}

.industry-page-building-products .hh-benefits {
	margin-top: 12px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	align-items: start;
	text-align: center;
}
.industry-page-building-products .hh-benefit-icon {
	width: 96px;
	height: 96px;
	margin: 6px auto 14px;
	border: 3px solid #d1d5db;
	border-radius: 999px;
	display: grid;
	place-items: center;
	color: #0b2a5b;
}
.industry-page-building-products .hh-benefit-icon svg { width: 44px; height: 44px; }
.industry-page-building-products .hh-benefit-title { font-weight: 700; color: rgba(15, 23, 42, 0.78); }

.industry-page-building-products .hh-expertise { margin-top: 8px; }
.industry-page-building-products .hh-expertise-grid {
	margin-top: 14px;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}
.industry-page-building-products .hh-expertise-tile {
	border: 1px solid rgba(15, 23, 42, 0.18);
	background: white;
	padding: 14px 10px;
	display: grid;
	gap: 10px;
	justify-items: center;
	text-align: center;
}
.industry-page-building-products .hh-solid-icon {
	width: 56px;
	height: 56px;
	border-radius: 999px;
	background: #0b2a5b;
	box-shadow: inset 0 -6px 0 rgba(0, 0, 0, 0.18);
}
.industry-page-building-products .hh-solid-1 { background: #0b2a5b; }
.industry-page-building-products .hh-solid-2 { background: #0f766e; }
.industry-page-building-products .hh-solid-3 { background: #1d4ed8; }
.industry-page-building-products .hh-solid-4 { background: #7c3aed; }
.industry-page-building-products .hh-solid-5 { background: #0f172a; }
.industry-page-building-products .hh-solid-6 { background: #b91c1c; }
.industry-page-building-products .hh-solid-7 { background: #0b7fb2; }
.industry-page-building-products .hh-solid-8 { background: #a16207; }
.industry-page-building-products .hh-solid-9 { background: #334155; }
.industry-page-building-products .hh-solid-10 { background: #0ea5e9; }
.industry-page-building-products .hh-solid-11 { background: #16a34a; }
.industry-page-building-products .hh-solid-12 { background: #db2777; }
.industry-page-building-products .hh-expertise-label { font-size: 13px; font-weight: 700; color: rgba(15, 23, 42, 0.78); }

.industry-page-building-products .hh-seamless {
	margin-top: 26px;
	padding: 36px 0;
	background:
		radial-gradient(circle at 18% 30%, rgba(255,255,255,0.10), transparent 35%),
		radial-gradient(circle at 82% 64%, rgba(255,255,255,0.10), transparent 40%),
		radial-gradient(circle at 50% 20%, rgba(255,255,255,0.08), transparent 38%),
		linear-gradient(180deg, #0b7fb2, #0a6b96);
	border: 1px solid rgba(255,255,255,0.18);
}
.industry-page-building-products .hh-seamless-inner {
	max-width: 78ch;
	margin-inline: auto;
	padding: 0 18px;
	text-align: left;
	color: white;
}
.industry-page-building-products .hh-seamless-title { color: white; margin-bottom: 10px; }
.industry-page-building-products .hh-seamless-copy { color: rgba(255,255,255,0.88); margin-bottom: 16px; }

/* Heavy Engineering – list bullets as >> (scoped) */
.industry-page-heavy-engineering .about-list {
	list-style: none;
	padding-left: 0;
	margin-left: 0;
}
.industry-page-heavy-engineering .about-list li {
	position: relative;
	padding-left: 22px;
	margin: 10px 0;
}
.industry-page-heavy-engineering .about-list li::before {
	content: ">>";
	position: absolute;
	left: 0;
	top: 0;
	color: #0b7fb2;
	font-weight: 800;
	letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
	.industry-page-building-products .hh-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.industry-page-building-products .hh-expertise-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
	.industries-grid { grid-template-columns: 1fr; }
	.industry-detail-layout { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
	.industry-page-building-products .hh-expertise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
