/**
 * jcproto-child — layout & components mapped to legacy jcproto.com (site-res.css).
 */

:root {
	/* Brand — jccncmachining.com black industrial */
	--jcproto-primary: #0a0a0a;
	--jcproto-primary-hover: #333333;
	--jcproto-primary-dark: #1a1a1a;
	--jcproto-accent: #0a0a0a;
	--jcproto-accent-hover: #333333;
	--jcproto-nav-accent: #0a0a0a;
	--jcproto-nav-blue: #1a1a1a;
	--jcproto-topbar-bg: #1a1a1a;
	--jcproto-header-bg: #ffffff;
	--jcproto-footer-bg: #1a1a1a;
	--jcproto-footer-bottom: #0a0a0a;
	--jcproto-footer-link-hover: #ffffff;
	--jcproto-text: #0a0a0a;
	--jcproto-text-body: #555555;
	--jcproto-text-muted: #777777;
	--jcproto-footer-link: #cccccc;
	--jcproto-bg: #ffffff;
	--jcproto-surface: #f8f8f8;
	--jcproto-border: #e0e0e0;
	--jcproto-section-gray: #f8f8f8;
	--jcproto-link: #0066cc;
	--jcproto-link-hover: #0052a3;
	--jcproto-container: 1380px;
	--jcproto-font-display: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--jcproto-font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--jcproto-font: var(--jcproto-font-body);
	--jcproto-radius-sm: 6px;
	--jcproto-radius: 8px;
	--jcproto-radius-lg: 12px;
	--jcproto-radius-pill: 999px;
	--jcproto-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
	--jcproto-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
	--jcproto-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
	--jcproto-section-y: clamp(3rem, 6vw, 5rem);
	--jcproto-header-h: 52px;
	--jcproto-z-header: 1000;
	--jcproto-z-nav-mobile: 2000;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.jcproto-body {
	margin: 0;
	font-family: var(--jcproto-font);
	font-size: 16px;
	line-height: 1.65;
	color: var(--jcproto-text-body);
	background: var(--jcproto-bg);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--jcproto-text-body); text-decoration: none; }
a:hover { color: var(--jcproto-primary); text-decoration: underline; }

/* Bootstrap grid container parity */
.jcproto-container,
.container.container-opened,
.container {
	width: 100%;
	max-width: var(--jcproto-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

@media (min-width: 1200px) {
	.container[data-module-width="1380"],
	.jcproto-container {
		max-width: 1380px;
		padding-left: 40px;
		padding-right: 40px;
	}
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.jcproto-skip-link:focus {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 100000;
	padding: 12px 16px;
	background: #fff;
	color: #000;
	clip: auto;
	width: auto;
	height: auto;
}

/* Typography — sitewidget parity */
.sitewidget-hd > h1,
.sitewidget-hd > h2,
.sitewidget-hd > h3,
.graphicNewTitle,
.jcproto-section__title {
	font-family: var(--jcproto-font-display);
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	color: var(--jcproto-text);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.sitewidget-bd,
.jcproto-section__lead {
	font-family: Calibri, var(--jcproto-font);
	font-size: 14px;
	color: var(--jcproto-text-body);
	line-height: 1.7em;
}

/* Buttons — legacy backstage-component */
.jcproto-btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 15px;
	border: 1px solid transparent;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	cursor: pointer;
	text-decoration: none !important;
}

.jcproto-btn--primary,
.jcproto-header .backstage-component-btncolor {
	background-color: var(--jcproto-accent) !important;
	color: #fff !important;
	border-color: var(--jcproto-accent) !important;
}

.jcproto-btn--primary:hover,
.jcproto-header .backstage-component-btncolor:hover {
	background-color: var(--jcproto-accent-hover) !important;
	border-color: var(--jcproto-accent-hover) !important;
	color: #fff !important;
}

.jcproto-btn--outline {
	background: #fff;
	color: var(--jcproto-text) !important;
	border: 1px solid #333;
}

.jcproto-btn--outline:hover {
	background: #333;
	color: #fff !important;
}

.jcproto-btn--lg { padding: 14px 28px; font-size: 15px; }

/* Top bar #outerContainer_1675305041679 */
#outerContainer_1675305041679,
.jcproto-topbar {
	background-color: var(--jcproto-topbar-bg) !important;
	padding: 3px 0;
	border-bottom: none;
}

.jcproto-topbar__text a {
	color: #fff;
	text-decoration: none;
}

.jcproto-topbar__text a:hover { text-decoration: underline; }

/* Header #outerContainer_1675246415286 */
#outerContainer_1675246415286,
.jcproto-header__main {
	background-color: var(--jcproto-header-bg) !important;
	padding: 0;
	box-shadow: var(--jcproto-shadow-sm);
	border-bottom: 1px solid var(--jcproto-border);
	position: relative;
	z-index: var(--jcproto-z-header);
}

/* Header layout: see header-legacy.css */

.jcproto-logo img {
	max-height: 52px;
	width: auto;
	margin-left: 25px;
}

/* Navigation — desktop rules in site-res.css + header-legacy.css */
.jcproto-nav .smsmart,
.jcproto-nav .navnew {
	list-style: none;
	margin: 0;
	padding: 0;
}

.jcproto-nav .navnew-item {
	position: relative;
	list-style: none;
}

.jcproto-nav .navnew-sub1 {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 280px;
	margin: 0;
	padding: 20px;
	list-style: none;
	background: #fff;
	border: none;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	z-index: 200;
}

.jcproto-nav .navnew-item:hover > .navnew-sub1,
.jcproto-nav .navnew-item:focus-within > .navnew-sub1 {
	display: block;
}

.jcproto-nav .navnew-sub1 .navnew-link {
	color: #505a61 !important;
	font-size: 12px !important;
	line-height: 39px !important;
	padding: 0 !important;
	border: none !important;
}

.jcproto-nav .navnew-sub1 .navnew-link:hover {
	color: var(--jcproto-nav-blue) !important;
}

/* Mobile nav toggle */
.jcproto-nav-toggle {
	display: none;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.jcproto-nav-toggle .nav-thumb-ham {
	display: block;
	width: 22px;
	height: 2px;
	margin: 5px 0;
	background: #333;
}

#outerContainer_1675246415286 .jcproto-nav-toggle .nav-thumb-ham {
	background: var(--jcproto-text);
}

/* Hero slider */
.jcproto-hero-slider {
	position: relative;
	overflow: hidden;
	background: #0a1628;
}

.jcproto-hero-slider__track {
	position: relative;
	width: 100%;
	aspect-ratio: 1920 / 720;
	max-height: 720px;
	min-height: 280px;
}

.jcproto-hero-slider__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.8s ease;
	pointer-events: none;
}

.jcproto-hero-slider__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}

.jcproto-hero-slider__bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.jcproto-hero-slider__bg--placeholder {
	background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #000000 100%);
}

.jcproto-hero-slider__caption {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
}

.jcproto-hero-slider__title {
	margin: 0 0 20px;
	max-width: 700px;
	font-size: clamp(1.5rem, 3.5vw, 2.75rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.jcproto-hero-slider__dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 5;
}

.jcproto-hero-slider__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid #fff;
	background: transparent;
	cursor: pointer;
	padding: 0;
}

.jcproto-hero-slider__dot.is-active {
	background: #fff;
}

/* Sections */
.jcproto-section { padding: 48px 0; }

#outerContainer_1679468772392,
#outerContainer_1680852706231 {
	background-color: var(--jcproto-section-gray);
}

.jcproto-section__title {
	text-align: center;
	margin: 0 0 20px;
}

.jcproto-section__title--left { text-align: left; }

.jcproto-section__lead,
.jcproto-section__note {
	text-align: center;
	max-width: 960px;
	margin: 0 auto 28px;
}

/* Services */
.jcproto-service-card {
	padding: 20px 16px;
	height: 100%;
}

.jcproto-service-card__title {
	margin: 0 0 12px;
	font-size: 18px;
}

.jcproto-service-card__title a {
	color: var(--jcproto-text);
	font-weight: 700;
	text-decoration: none;
}

.jcproto-service-card__title a:hover { color: var(--jcproto-primary); }

.jcproto-service-card__desc { margin: 0; }

/* Video */
.jcproto-video-block__embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 4px;
}

.jcproto-video-block__embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.jcproto-customers__map {
	margin: 24px auto 0;
	max-width: 1000px;
}

/* Projects */
.jcproto-projects__tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-bottom: 24px;
}

.jcproto-projects__tab {
	padding: 10px 20px;
	border: 1px solid #ddd;
	background: #fff;
	border-radius: 3px;
	cursor: pointer;
	font-size: 14px;
	color: var(--jcproto-text);
}

.jcproto-projects__tab.is-active {
	background: var(--jcproto-primary);
	color: #fff;
	border-color: var(--jcproto-primary);
}

.jcproto-projects__panel { display: none; }
.jcproto-projects__panel.is-active { display: block; }

.jcproto-projects__item {
	margin-bottom: 24px;
	text-align: center;
}

.jcproto-projects__item img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 4px;
}

.jcproto-projects__item figcaption {
	margin-top: 8px;
	font-size: 13px;
	color: var(--jcproto-text-body);
}

.jcproto-projects__more { text-align: center; margin-top: 16px; }

/* Trust cards */
.jcproto-trust__grid { margin-top: 16px; }

.jcproto-trust-card {
	text-align: center;
	padding: 28px 16px;
	background: #f7f7f7;
	border-radius: 4px;
	height: 100%;
}

.jcproto-trust-card__title {
	margin: 0 0 8px;
	font-size: 18px;
	color: var(--jcproto-text);
}

.jcproto-trust-card__stat {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--jcproto-primary);
	margin: 8px 0;
}

/* Resources */
.jcproto-resource-card {
	display: block;
	overflow: hidden;
	border-radius: 4px;
	text-align: center;
	color: var(--jcproto-text);
	text-decoration: none !important;
	margin-bottom: 24px;
}

.jcproto-resource-card img {
	width: 100%;
	aspect-ratio: 16/10;
	object-fit: cover;
}

.jcproto-resource-card h3 {
	margin: 0;
	padding: 16px;
	font-size: 18px;
	background: #f7f7f7;
}

.jcproto-resource-card:hover h3 { background: #eee; }

/* Process */
.jcproto-process__iso { margin: 16px auto; }

/* Quote block */
.jcproto-quote-block {
	background: #f5f8fc;
}

.jcproto-quote-block__notes {
	max-width: 720px;
	margin: 0 auto 24px;
}

/* Article */
.jcproto-article__header { margin-bottom: 32px; }

.jcproto-page-title {
	margin: 0 0 16px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--jcproto-text);
}

.jcproto-breadcrumb { margin-bottom: 16px; font-size: 14px; }

.jcproto-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.jcproto-breadcrumb__list li::after {
	content: "/";
	margin-left: 8px;
	color: var(--jcproto-text-muted);
}

.jcproto-breadcrumb__list li:last-child::after { content: none; }

.entry-content { max-width: 100%; }
.entry-content h2, .entry-content h3 { margin-top: 1.5em; color: var(--jcproto-text); }

/* Footer */
#outerContainer_1675410224544,
.jcproto-footer__main {
	background-color: var(--jcproto-footer-bg) !important;
	padding: 58px 0 31px !important;
	color: #ccc;
}

#outerContainer_1686733984631.jcproto-quote-banner,
.jcproto-quote-banner {
	background-color: #2b2b2b !important;
	padding: 46px 0 40px;
	margin: 0;
	text-align: center;
}

.jcproto-quote-banner__title {
	margin: 0 0 30px;
	color: #fff !important;
	font-family: Calibri, "Segoe UI", Arial, sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
}

.jcproto-quote-banner__action {
	margin: 0;
}

.jcproto-quote-banner__btn {
	display: inline-block;
	background-color: #025ddf;
	color: #fff !important;
	font-size: 16px;
	font-weight: 600;
	height: auto;
	min-height: 48px;
	line-height: 1.4;
	padding: 12px 30px;
	border: 0;
	border-radius: 0;
	text-decoration: none !important;
	transition: background-color 0.2s ease;
	box-sizing: border-box;
}

.jcproto-quote-banner__btn:hover,
.jcproto-quote-banner__btn:focus {
	background-color: var(--jcproto-primary-hover);
	color: #fff !important;
	text-decoration: none !important;
}

#outerContainer_1686734018547,
.jcproto-footer__bottom {
	background-color: var(--jcproto-footer-bottom) !important;
	padding: 24px 0 20px !important;
}

.jcproto-footer a { color: var(--jcproto-footer-link); text-decoration: none; }
.jcproto-footer a:hover { color: #eee; text-decoration: none; }

.jcproto-footer__title,
.jcproto-footer .graphicNewTitle {
	color: #fff !important;
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 16px;
}

.jcproto-footer__muted {
	color: var(--jcproto-footer-link);
	font-size: 14px;
	margin: 0 0 8px;
	line-height: 1.7;
}

.jcproto-footer__label {
	color: #fff;
	margin: 16px 0 8px;
}

.jcproto-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.jcproto-footer__links li { margin-bottom: 8px; }

.jcproto-footer__grid {
	margin-bottom: 0;
	align-items: stretch;
}

.jcproto-footer__col--brand,
.jcproto-footer__col--capabilities {
	display: flex;
	flex-direction: column;
}

.jcproto-footer__col--brand {
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
}

.jcproto-footer__brand-box {
	max-width: 360px;
	padding-right: 24px;
}

.jcproto-footer__brand-box .jcproto-logo {
	display: inline-block;
	margin-bottom: 18px;
}

.jcproto-footer__contact {
	margin: 0;
	margin-top: auto;
	padding-top: 20px;
}

.jcproto-footer__phone,
.jcproto-footer__email {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.7;
	color: var(--jcproto-footer-link);
}

.jcproto-footer__email-note {
	display: inline-block;
	margin-top: 4px;
	font-size: 12px;
	line-height: 1.5;
	color: #777;
}

.jcproto-footer__copy {
	margin: 0;
	text-align: center;
	font-size: 14px;
	color: #999;
}

.jcproto-footer__social {
	margin-top: 14px;
}

.jcproto-footer__social .sitewidget-bd {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.jcproto-footer__social .follow-a {
	display: inline-flex;
	flex-shrink: 0;
	line-height: 0;
	color: #999;
	transition: color 0.2s ease;
}

.jcproto-footer__social .follow-a:hover,
.jcproto-footer__social .follow-a:focus {
	color: #eee;
}

.jcproto-footer__social-icon {
	display: block;
	width: 36px;
	height: 36px;
}

.jcproto-footer__iso {
	margin: 0;
	margin-top: auto;
	padding-top: 15px;
	max-width: 100%;
	text-align: left;
}

.jcproto-footer__iso-link {
	display: inline-block;
	max-width: 100%;
}

.jcproto-footer__iso-img {
	display: block;
	width: 100%;
	max-width: 600px;
	height: auto;
}

/* 404 */
.jcproto-404 { text-align: center; padding: 80px 20px; }

/* Responsive */
@media (max-width: 991px) {
	.jcproto-footer__col--brand {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.jcproto-footer__brand-box {
		max-width: none;
		padding-right: 0;
		margin-bottom: 0;
	}

	.jcproto-footer__contact {
		margin-top: 20px;
		padding-top: 0;
	}

	.jcproto-footer__iso {
		margin-top: 20px;
		padding-top: 0;
	}

	.jcproto-header__logo-col,
	.jcproto-header__nav-col {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.jcproto-nav-toggle { display: block; }

	.jcproto-nav {
		position: fixed;
		top: 0;
		right: 0;
		width: min(320px, 90vw);
		height: 100vh;
		background: var(--jcproto-nav-blue);
		padding: 80px 0 24px;
		transform: translateX(100%);
		transition: transform 0.3s;
		overflow-y: auto;
		z-index: 2000;
	}

	.jcproto-nav.is-open { transform: translateX(0); }

	.jcproto-nav .smsmart {
		flex-direction: column;
		align-items: stretch;
		float: none;
	}

	.jcproto-nav .navnew-sub1 {
		position: static;
		display: none;
		box-shadow: none;
		background: var(--jcproto-primary-dark);
		padding: 0;
	}

	.jcproto-nav .navnew-item.is-expanded > .navnew-sub1,
	.jcproto-nav .navnew-sub1-item.is-expanded > .navnew-sub2 { display: block; }

	.jcproto-nav .nav-sub-item.hide,
	.jcproto-nav .navnew-sub2-item.hide {
		display: block !important;
	}

	.jcproto-nav .navnew-sub1-item.is-expanded > .navnew-sub2 {
		position: static;
		box-shadow: none;
		background: var(--jcproto-primary);
		padding: 0;
		min-width: 0;
	}

	.jcproto-nav .navnew-sub2 .navnew-link {
		color: #fff !important;
		padding-left: 56px !important;
	}

	.jcproto-nav .navnew-sub1 .navnew-link {
		color: #fff !important;
		padding-left: 40px !important;
	}

	.jcproto-logo img { margin-left: 0; }

	.jcproto-hero-slider__track { aspect-ratio: 16 / 9; }
}

@media (max-width: 767px) {
	.jcproto-topbar__text { text-align: center; font-size: 12px; }
}

/* Page shell (inner pages) */
.jcproto-page-shell {
	padding: 24px 0 48px;
}

.jcproto-page-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--jcproto-text);
	margin: 16px 0 24px;
}

.jcproto-breadcrumb {
	margin: 12px 0;
	font-size: 13px;
	color: var(--jcproto-text-muted);
}

.jcproto-breadcrumb__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.jcproto-breadcrumb__list li + li::before {
	content: "/";
	margin-right: 6px;
	color: #ccc;
}

/* Generic carousel */
.jcproto-carousel { position: relative; }

.jcproto-carousel__track {
	position: relative;
	min-height: 200px;
}

.jcproto-carousel__slide {
	display: none;
	margin: 0;
}

.jcproto-carousel__slide.is-active { display: block; }

.jcproto-carousel__nav {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}

.jcproto-carousel__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 0;
	background: #ccc;
	cursor: pointer;
	padding: 0;
}

.jcproto-carousel__dot.is-active { background: var(--jcproto-primary); }

/* Workshop */
.jcproto-workshop .jcproto-carousel__slide img {
	width: 100%;
	max-height: 480px;
	object-fit: cover;
	margin: 0 auto;
	border-radius: 4px;
}

/* Client testimonials */
.jcproto-clients__quote {
	font-size: 16px;
	line-height: 1.8;
	color: var(--jcproto-text-body);
	margin: 0 0 20px;
	text-align: center;
	font-style: italic;
}

.jcproto-clients__author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.jcproto-clients__avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
}

.jcproto-clients__author cite {
	font-style: normal;
	font-weight: 600;
}

/* Trust jump numbers */
.jcproto-jump-num {
	transition: transform 0.4s ease, color 0.4s ease;
}

.jcproto-jump-num.is-visible {
	color: var(--jcproto-primary);
}

/* Article list (prodlist) */
.jcproto-article-search {
	margin-bottom: 24px;
}

.jcproto-article-search .prodsearch-styles-wrap {
	display: flex;
	gap: 8px;
	max-width: 640px;
}

.jcproto-article-search input[type="search"] {
	flex: 1;
	padding: 12px 14px;
	border: 1px solid var(--jcproto-border, rgba(15, 79, 134, 0.12));
	border-radius: var(--jcproto-radius, 8px);
	font-size: 15px;
}

.jcproto-article-search button {
	border-radius: var(--jcproto-radius, 8px);
	background: var(--jcproto-accent, #59c4ff);
	border: none;
	color: #fff;
	font-weight: 600;
	padding: 12px 20px;
	cursor: pointer;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.jcproto-article-search button:hover {
	background: var(--jcproto-accent-hover, #3eb8fb);
	box-shadow: var(--jcproto-shadow-sm);
}

.jcproto-prodlist__grid {
	margin-left: -15px;
	margin-right: -15px;
}

.jcproto-prodlist__thumb {
	margin: 0 0 12px;
	overflow: hidden;
	border-radius: var(--jcproto-radius-lg, 12px);
	box-shadow: var(--jcproto-shadow-sm);
}

.jcproto-prodlist__item {
	margin-bottom: 30px;
	transition: transform 0.2s ease;
}

.jcproto-prodlist__link {
	display: block;
	color: inherit;
	text-decoration: none !important;
}

.jcproto-prodlist__link:hover .jcproto-prodlist__title {
	color: var(--jcproto-primary);
}

.jcproto-prodlist__link:hover {
	transform: translateY(-2px);
}

.jcproto-prodlist__title {
	font-family: var(--jcproto-font-display, inherit);
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 8px;
	color: var(--jcproto-text, #071a33);
}

.jcproto-prodlist__summary {
	font-size: 13px;
	color: var(--jcproto-text-muted);
	margin: 0 0 8px;
}

.jcproto-prodlist__meta {
	font-size: 12px;
	color: #aaa;
	margin: 0;
}

.jcproto-pagination {
	margin-top: 32px;
	text-align: center;
}

/* FAQ layout */
.jcproto-faq-sidebar__title {
	font-size: 18px;
	margin: 0 0 12px;
}

.jcproto-faq-sidebar__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.jcproto-faq-sidebar__list a {
	display: block;
	padding: 10px 12px;
	border-left: 3px solid transparent;
}

.jcproto-faq-sidebar__list a:hover,
.jcproto-faq-sidebar__list .current-cat a {
	border-left-color: var(--jcproto-primary);
	background: var(--jcproto-section-gray);
	text-decoration: none;
}

.jcproto-faq-item {
	border-bottom: 1px solid #eee;
	padding: 12px 0;
}

.jcproto-faq-item__q {
	cursor: pointer;
	font-weight: 600;
	list-style: none;
}

.jcproto-faq-item__q::-webkit-details-marker { display: none; }

.jcproto-faq-placeholder {
	color: var(--jcproto-text-muted);
	font-style: italic;
}

/* Single 9+3 */
.jcproto-article-layout {
	margin-left: -15px;
	margin-right: -15px;
}

.jcproto-article-sidebar .widget {
	margin-bottom: 28px;
}

.jcproto-widget-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.jcproto-widget-list li {
	padding: 6px 0;
	border-bottom: 1px solid #f0f0f0;
}

.jcproto-article__nav {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid #eee;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 16px;
}

/* Wide inner container (capabilities — legacy 1440px) */
@media (min-width: 1200px) {
	.jcproto-container--wide {
		max-width: 1440px;
		padding-left: 40px;
		padding-right: 40px;
	}
}

/* Legacy sitewidget-position breadcrumb */
.jcproto-position-breadcrumb {
	margin: 12px 0 20px;
	font-size: 13px;
	color: var(--jcproto-text-muted);
}

.jcproto-position-breadcrumb__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.jcproto-position-breadcrumb__list li + li::before {
	content: ">";
	margin-right: 6px;
	color: #ccc;
}

/* Capabilities sub-navigation */
.jcproto-cap-subnav {
	margin: 0 0 28px;
	padding: 0;
	border-bottom: 1px solid var(--jcproto-border, #e8e8e8);
}

.jcproto-cap-subnav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 20px;
}

.jcproto-cap-subnav__list a,
.jcproto-cap-subnav__list .jcproto-cap-subnav__label {
	display: block;
	padding: 12px 4px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none !important;
	color: var(--jcproto-text, #0a0a0a);
	border-bottom: 2px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
	cursor: default;
}

.jcproto-cap-subnav__list .is-active a,
.jcproto-cap-subnav__list a:hover,
.jcproto-cap-subnav__list .is-active .jcproto-cap-subnav__label,
.jcproto-page-subnav__list .is-active a,
.jcproto-page-subnav__list a:hover {
	color: var(--jcproto-primary);
	border-bottom-color: var(--jcproto-primary);
}

.jcproto-cap-subnav__list .is-active .jcproto-cap-subnav__label {
	color: var(--jcproto-primary);
	border-bottom-color: var(--jcproto-primary);
}

/* Resource hub cards */
.jcproto-resource-hub {
	margin-bottom: 32px;
}

.jcproto-resource-hub__grid {
	margin-left: -15px;
	margin-right: -15px;
}

.jcproto-resource-card--hub {
	display: block;
	text-align: center;
	text-decoration: none !important;
	margin-bottom: 24px;
	padding: 16px;
	border: 1px solid #eee;
	border-radius: 4px;
	transition: box-shadow 0.2s, border-color 0.2s;
}

.jcproto-resource-card--hub:hover {
	border-color: var(--jcproto-primary);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.jcproto-resource-card--hub img {
	margin: 0 auto 12px;
	max-height: 180px;
	object-fit: cover;
	width: 100%;
}

.jcproto-resource-card__placeholder {
	display: block;
	height: 120px;
	margin: 0 auto 12px;
	background: var(--jcproto-section-gray);
	border-radius: 4px;
}

.jcproto-resource-card--hub h3 {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	color: var(--jcproto-text);
}

.jcproto-resource-card--hub:hover h3 {
	color: var(--jcproto-primary);
}

.jcproto-resource-hub-content {
	margin-top: 8px;
}

/* Contact form shell */
.jcproto-article--contact .wpcf7-form,
.jcproto-article--contact form {
	max-width: 900px;
}

.jcproto-article--contact input[type="text"],
.jcproto-article--contact input[type="email"],
.jcproto-article--contact input[type="tel"],
.jcproto-article--contact textarea,
.jcproto-article--contact select {
	width: 100%;
	max-width: 100%;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-bottom: 12px;
}

.jcproto-article--contact .btn-primary,
.jcproto-article--contact input[type="submit"],
.jcproto-article--contact button[type="submit"] {
	background: var(--jcproto-primary);
	color: #fff;
	border: 0;
	padding: 12px 28px;
	border-radius: 4px;
	cursor: pointer;
}

.jcproto-article--contact .btn-primary:hover,
.jcproto-article--contact input[type="submit"]:hover,
.jcproto-article--quote .btn-primary:hover,
.jcproto-article--quote input[type="submit"]:hover {
	background: var(--jcproto-primary-hover);
}

/* Instant quote — same form shell as contact */
.jcproto-article--quote .wpcf7-form,
.jcproto-article--quote form {
	max-width: 960px;
}

.jcproto-article--quote input[type="text"],
.jcproto-article--quote input[type="email"],
.jcproto-article--quote input[type="tel"],
.jcproto-article--quote input[type="file"],
.jcproto-article--quote textarea,
.jcproto-article--quote select {
	width: 100%;
	max-width: 100%;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-bottom: 12px;
}

.jcproto-article--quote .btn-primary,
.jcproto-article--quote input[type="submit"],
.jcproto-article--quote button[type="submit"] {
	background: var(--jcproto-primary);
	color: #fff;
	border: 0;
	padding: 12px 28px;
	border-radius: 4px;
	cursor: pointer;
}

/* Company — video listing page */
.jcproto-article--video .entry-content iframe,
.jcproto-article--video .sitewidget-video iframe,
.jcproto-layout-company .jcproto-article--video .wp-block-embed iframe {
	max-width: 100%;
	aspect-ratio: 16 / 9;
}

.jcproto-article--video .entry-content .row > [class*="col-"],
.jcproto-article--video .sitewidget-video {
	margin-bottom: 24px;
}

/* Company — factory photo grid */
.jcproto-article--gallery .entry-content .row,
.jcproto-article--gallery .entry-content img {
	max-width: 100%;
	height: auto;
}

.jcproto-article--gallery .entry-content [class*="col-md-4"],
.jcproto-article--gallery .entry-content [class*="col-sm-"] {
	margin-bottom: 20px;
}

/* Company — quality / certificates */
.jcproto-article--quality .entry-content img {
	max-width: 100%;
	height: auto;
}

/* 404 — legacy col-md-3 | 6 | 3 */
.jcproto-page-shell--404 {
	padding: clamp(3rem, 8vw, 5rem) 0 clamp(4rem, 10vw, 6rem);
	background: var(--jcproto-surface);
}

.jcproto-404-layout__main {
	text-align: center;
}

.jcproto-404__figure {
	margin: 0 auto 28px;
}

.jcproto-404__figure img {
	margin: 0 auto;
	max-width: min(365px, 80vw);
}

.jcproto-404__message {
	text-align: left;
	max-width: 520px;
	margin: 0 auto;
	font-size: 15px;
	line-height: 1.8;
	color: var(--jcproto-text-body);
}

.jcproto-404__message a {
	color: var(--jcproto-link);
	font-weight: 600;
	text-decoration: none;
}

.jcproto-404__message a:hover {
	color: var(--jcproto-link-hover);
	text-decoration: underline;
}
