/* Shared UI components (banner, cards, buttons) */

/* Page hero */
.section-page-hero { padding-top: 54px; padding-bottom: 54px; background: linear-gradient(180deg, rgba(11, 42, 91, 0.06), rgba(255, 255, 255, 0)); }
.page-title { margin: 10px 0 10px; }
.page-lead { max-width: 70ch; }
.page-quote { margin: 14px 0 0; padding: 14px 16px; border-left: 4px solid var(--hh-accent); background: rgba(255, 255, 255, 0.65); border-radius: 0; color: var(--hh-text); }

/* Banner */
.section-banner { padding: 44px 0; background: #0b7fb2; color: white; }
.breadcrumbs { display: inline-flex; gap: 10px; align-items: center; font-size: 12px; opacity: 0.95; }
.breadcrumbs a { color: white; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.banner-title { margin-top: 16px; color: white; }
.cs-note { font-size: 12px; color: #b91c1c; }
.cs-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.cs-card { display: block; background: white; border: 1px solid var(--hh-border); border-radius: 0; overflow: hidden; text-decoration: none; box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06); }
.cs-card-media { height: 130px; background: linear-gradient(135deg, rgba(11, 42, 91, 0.14), rgba(255, 178, 0, 0.14)); background-size: cover; background-position: center; }
.cs-card-title { padding: 12px 14px; text-align: center; font-weight: 800; color: #0b2a5b; background: #f8fafc; border-top: 1px solid var(--hh-border); }

/* Shared buttons/links */
.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;
}
.hh-btn:hover { filter: brightness(0.98); }
.hh-btn-primary { background: #0b7fb2; border-color: #0b7fb2; color: white; }
.hh-btn-red {
	background: #dc2626;
	border-color: #dc2626;
	color: #fff;
}
.hh-btn-red:hover {
	background: #b91c1c;
	border-color: #b91c1c;
	color: #fff;
}
.hh-btn-outline-navy {
	background: transparent;
	border: 2px solid #0b2a5b;
	color: #0b2a5b;
}
.hh-btn-outline-navy:hover {
	background: #0b2a5b;
	color: #fff;
}
.hh-btn-accent { background: #f59e0b; border-color: #f59e0b; color: white; }
.hh-link { color: #0b7fb2; font-weight: 800; text-decoration: none; }
.hh-link:hover { text-decoration: underline; }

@media (max-width: 768px) {
	.cs-grid { grid-template-columns: 1fr; }
}
