/* ============================================================
   JSB How It Works Hub - front-end styles
   Visual language matches the existing site (see Astra child
   theme style.css + jsb-why.css): deep navy #081845 / #060F2E,
   white #ffffff, matte gold #C9A84C, light grey #F8F9FB.
   Fonts: Inter (body) + Plus Jakarta Sans (headings), loaded
   globally by the child theme.

   Every rule is scoped under body.jsb-how-active (page 149,
   /how-it-works/ only) or the .jsb-how subtree, so the home
   page, main navigation menu, products, Resources, OEM/ODM
   services, Why Us page and theme files are never touched.
   No horizontal overflow: grids use minmax(0,1fr), long strings
   wrap, and the anchor nav becomes a horizontally scrollable
   strip on small screens.
   ============================================================ */

.jsb-how {
	--jb-blue: #081845;
	--jb-navy-deep: #060F2E;
	--jb-gold: #C9A84C;
	--jb-gold-dark: #b5953d;
	--jb-gold-soft: rgba(201, 168, 76, 0.16);
	--jb-bg-light: #F8F9FB;
	--jb-line: #E5E7EB;
	--jb-text-muted: #4B5563;
	--jb-white-soft: rgba(255, 255, 255, 0.78);
	--jb-white-line: rgba(255, 255, 255, 0.14);

	font-family: 'Inter', sans-serif;
	color: var(--jb-blue);
	line-height: 1.6;
	width: 100%;
	box-sizing: border-box;
}

.jsb-how *,
.jsb-how *::before,
.jsb-how *::after { box-sizing: border-box; }

.jsb-how img,
.jsb-how svg { max-width: 100%; }

/* ----------------------------------------------------------------------------
   Astra layout reset - page 149 (/how-it-works/) ONLY.
   Removes the white gap Astra's #primary margin creates between the sticky
   site nav (#masthead, 100px, sticky) and the hero, and zeroes the content
   container padding so the hero spans the full viewport edge to edge. The
   Astra child theme caps .entry-content > * at 1240px with 20px gutters; that
   cap is lifted for the .jsb-how root so the hero band is full-width (each
   inner wrapper re-applies its own 1240px max-width). All rules are scoped
   under body.jsb-how-active, so other pages are untouched.

   The full-width rule below targets ONLY content-area containers (#primary /
   .content-area descendants), never #masthead: Astra's main nav renders its
   own .ast-container (.site-primary-header-wrap.ast-container) inside
   #masthead, and forcing it to 100% stretched the site header (logo/menu/
   Contact) edge-to-edge. A dedicated guard keeps the header container at the
   site-standard 1240px max-width with 20px gutters — the exact same computed
   style the home page header uses.
   ------------------------------------------------------------------------- */
body.jsb-how-active #primary .ast-container,
body.jsb-how-active .content-area .ast-container { max-width: 100% !important; padding: 0 !important; }
body.jsb-how-active #masthead .ast-container {
	max-width: 1240px !important;
	padding-left: 20px !important;
	padding-right: 20px !important;
}
body.jsb-how-active .ast-article-single { padding: 0 !important; margin: 0 !important; }
body.jsb-how-active .entry-content { margin: 0 !important; padding: 0 !important; }
body.jsb-how-active .content-area,
body.jsb-how-active #primary { margin-top: 0 !important; }
body.jsb-how-active .entry-content > .jsb-how,
body.jsb-how-active .jsb-how {
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}
/* Hide the theme's duplicate auto page title (Astra renders it as
   <header class="entry-header"><h1 class="entry-title">); the page renders
   its own hero H1. A theme filter (astra_the_title_enabled) also removes it
   server-side; this CSS is the second line of defence. Page 149 only. */
body.jsb-how-active .ast-article-single .entry-header,
body.jsb-how-active .ast-article-single .entry-title { display: none !important; }

/* ------------------------- Shared bits ------------------------- */
.jsb-how-eyebrow {
	font-size: 12px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--jb-gold);
	font-weight: 700;
	margin: 0 0 10px;
}
.jsb-how-eyebrow-light { color: var(--jb-gold); }

.jsb-how-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 32px;
	font-weight: 800;
	line-height: 1.22;
	color: var(--jb-blue);
	margin: 0 0 26px;
}

.jsb-how-inline-link {
	color: var(--jb-blue);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: var(--jb-gold);
	text-underline-offset: 3px;
	transition: color 0.2s;
}
.jsb-how-inline-link:hover { color: var(--jb-gold-dark); }

/* ================= Hero ================= */
/* Full-viewport-width deep-navy hero, flush under the sticky site nav
   (no white gap). Solid navy gradient with a subtle gold radial accent
   matching the site language; inner content max-width 1240px. */
.jsb-how-hero {
	position: relative;
	width: 100%;
	background:
		radial-gradient(1000px 420px at 85% -10%, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0) 60%),
		linear-gradient(180deg, var(--jb-blue) 0%, var(--jb-navy-deep) 100%);
	color: #ffffff;
	padding: 92px 0 100px;
	overflow: hidden;
}
.jsb-how-hero-inner {
	position: relative;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}
/* Hero breadcrumb: Home / How It Works. Home -> site root (/), How It Works
   is the current page (no link). White link + light-gold current/separator. */
.jsb-how-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.3px;
	color: #ffffff;
}
.jsb-how-breadcrumb-link {
	color: #ffffff;
	text-decoration: none !important;
	transition: color 0.2s;
}
.jsb-how-breadcrumb-link:hover {
	color: var(--jb-gold);
	text-decoration: none !important;
}
.jsb-how-breadcrumb-sep {
	color: var(--jb-gold);
	font-weight: 700;
	font-size: 12px;
}
.jsb-how-breadcrumb-current {
	color: var(--jb-gold);
	font-weight: 700;
}
.jsb-how-hero-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 46px;
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.5px;
	color: #ffffff;
	margin: 0 0 16px;
	max-width: 860px;
}
.jsb-how-hero-sub {
	font-size: 19px;
	font-weight: 600;
	line-height: 1.5;
	color: var(--jb-gold);
	margin: 0 0 18px;
	max-width: 760px;
}
.jsb-how-hero-desc {
	font-size: 16px;
	line-height: 1.7;
	color: var(--jb-white-soft);
	margin: 0 0 28px;
	max-width: 860px;
}
.jsb-how-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.jsb-how-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	border: 1px solid var(--jb-white-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	font-size: 13px;
	font-weight: 600;
	color: #ffffff;
	min-width: 0;
}
.jsb-how-badge-icon {
	display: inline-flex;
	color: var(--jb-gold);
	flex: none;
}

/* ================= Sticky page-internal anchor nav ================= */
/* Sticky below the sticky site header (100px). On small screens the strip
   scrolls horizontally instead of wrapping/overflowing.

   Logged-in visitors get the WP admin bar: the site header then sticks at the
   admin bar's bottom (32px desktop, 46px at <=782px — WP core exposes this as
   --wp-admin--admin-bar--height), so --jsb-adminbar-h mirrors it and the
   anchor nav + anchor scroll offsets shift down by the same amount. Guests
   (no .admin-bar, variable undefined) fall back to 0 and keep the original
   100px / 176px / 168px values. */
body.jsb-how-active.admin-bar {
	--jsb-adminbar-h: var(--wp-admin--admin-bar--height, 32px);
}
.jsb-how-nav {
	position: sticky;
	top: calc(100px + var(--jsb-adminbar-h, 0px));
	z-index: 900;
	background: var(--jb-navy-deep);
	border-top: 1px solid var(--jb-white-line);
	border-bottom: 3px solid var(--jb-gold);
	box-shadow: 0 6px 18px rgba(6, 15, 46, 0.28);
}
.jsb-how-nav-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 24px;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.jsb-how-nav-inner::-webkit-scrollbar { display: none; }
.jsb-how-nav-link {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	padding: 16px 18px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.2px;
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
	transition: color 0.2s, background 0.2s;
	border-bottom: 3px solid transparent;
}
.jsb-how-nav-link:hover,
.jsb-how-nav-link.is-active { color: var(--jb-gold); }
.jsb-how-nav-link.is-active { border-bottom-color: var(--jb-gold); }

/* Anchor targets clear the sticky header + sticky nav */
#process, #sampling, #faq {
	scroll-margin-top: calc(176px + var(--jsb-adminbar-h, 0px));
}

/* ================= Wrap / sections ================= */
.jsb-how-wrap {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px 84px;
}
.jsb-how-sec { padding-top: 84px; }

/* ================= Module 1: timeline overview ================= */
.jsb-how-timeline-overview {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	background: var(--jb-bg-light);
	border: 1px solid var(--jb-line);
	border-radius: 10px;
	overflow: hidden;
	margin: 0 0 40px;
}
.jsb-how-tl-cell {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 18px 22px;
	border-right: 1px solid var(--jb-line);
	min-width: 0;
}
.jsb-how-tl-cell:last-child { border-right: 0; }
.jsb-how-tl-label {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--jb-gold-dark);
}
.jsb-how-tl-value {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 20px;
	font-weight: 800;
	color: var(--jb-blue);
	line-height: 1.2;
}

/* ================= Module 1: 6-step vertical timeline ================= */
.jsb-how-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.jsb-how-step {
	position: relative;
	display: flex;
	gap: 22px;
	padding-bottom: 30px;
	min-width: 0;
}
.jsb-how-step:last-child { padding-bottom: 0; }
/* vertical connector line */
.jsb-how-step::before {
	content: '';
	position: absolute;
	left: 23px;
	top: 52px;
	bottom: 0;
	width: 2px;
	background: rgba(201, 168, 76, 0.35);
}
.jsb-how-step:last-child::before { display: none; }
.jsb-how-step-num {
	position: relative;
	z-index: 1;
	flex: none;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--jb-gold);
	color: var(--jb-navy-deep);
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 20px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.18);
}
.jsb-how-step-body {
	flex: 1;
	background: #ffffff;
	border: 1px solid var(--jb-line);
	border-left: 4px solid var(--jb-gold);
	border-radius: 10px;
	padding: 20px 24px;
	min-width: 0;
	box-shadow: 0 2px 10px rgba(8, 24, 69, 0.05);
	transition: transform 0.2s, box-shadow 0.2s;
}
.jsb-how-step:hover .jsb-how-step-body {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(8, 24, 69, 0.1);
}
.jsb-how-step-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 10px;
	min-width: 0;
}
.jsb-how-step-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--jb-blue);
	margin: 0;
	min-width: 0;
}
.jsb-how-step-days {
	flex: none;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: 0.6px;
	color: var(--jb-navy-deep);
	background: var(--jb-gold-soft);
	border: 1px solid rgba(201, 168, 76, 0.45);
	border-radius: 999px;
	padding: 4px 12px;
	white-space: nowrap;
}
.jsb-how-step-descs {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.jsb-how-step-desc {
	position: relative;
	padding-left: 20px;
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--jb-text-muted);
	min-width: 0;
	overflow-wrap: break-word;
}
.jsb-how-step-desc::before {
	content: '';
	position: absolute;
	left: 2px;
	top: 9px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--jb-gold);
}

/* ================= Module 2: sampling band ================= */
.jsb-how-band {
	width: 100%;
	background: var(--jb-bg-light);
	border-top: 1px solid var(--jb-line);
	border-bottom: 1px solid var(--jb-line);
	padding: 84px 0 92px;
}
.jsb-how-inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}

/* two policy cards */
.jsb-how-policy-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	margin-bottom: 44px;
}
.jsb-how-policy-card {
	position: relative;
	background: #ffffff;
	border: 1px solid var(--jb-line);
	border-top: 5px solid var(--jb-gold);
	border-radius: 12px;
	padding: 30px 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
	box-shadow: 0 2px 10px rgba(8, 24, 69, 0.05);
}
.jsb-how-policy-price {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 34px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.5px;
	color: var(--jb-blue);
}
.jsb-how-policy-card:nth-child(2) .jsb-how-policy-price { color: var(--jb-gold-dark); }
.jsb-how-policy-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 19px;
	font-weight: 700;
	color: var(--jb-blue);
	margin: 0;
}
.jsb-how-policy-desc {
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--jb-text-muted);
	margin: 0;
	min-width: 0;
	overflow-wrap: break-word;
}

/* 3-step express sampling workflow */
.jsb-how-workflow-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--jb-blue);
	margin: 0 0 20px;
}
.jsb-how-workflow-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}
.jsb-how-workflow-card {
	position: relative;
	background: #ffffff;
	border: 1px solid var(--jb-line);
	border-radius: 12px;
	padding: 26px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
	box-shadow: 0 2px 10px rgba(8, 24, 69, 0.05);
	transition: transform 0.2s, box-shadow 0.2s;
}
.jsb-how-workflow-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(8, 24, 69, 0.1);
}
.jsb-how-workflow-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--jb-gold);
	color: var(--jb-navy-deep);
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 16px;
	font-weight: 800;
}
.jsb-how-workflow-card-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--jb-blue);
	margin: 0;
}
.jsb-how-workflow-card-desc {
	font-size: 13.5px;
	line-height: 1.65;
	color: var(--jb-text-muted);
	margin: 0;
	min-width: 0;
	overflow-wrap: break-word;
}

/* sampling bottom note */
.jsb-how-sampling-note {
	font-size: 15px;
	line-height: 1.7;
	color: var(--jb-blue);
	background: #ffffff;
	border-left: 4px solid var(--jb-gold);
	border-radius: 0 10px 10px 0;
	padding: 18px 24px;
	margin: 36px 0 0;
	min-width: 0;
	overflow-wrap: break-word;
}

/* ================= Module 3: FAQ ================= */
.jsb-how-faq {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.jsb-how-faq-item {
	background: #ffffff;
	border: 1px solid var(--jb-line);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(8, 24, 69, 0.04);
}
.jsb-how-faq-item[open] { border-color: rgba(201, 168, 76, 0.55); }
.jsb-how-faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	cursor: pointer;
	list-style: none;
	padding: 20px 24px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--jb-blue);
	min-width: 0;
}
.jsb-how-faq-q::-webkit-details-marker { display: none; }
.jsb-how-faq-q-text { min-width: 0; overflow-wrap: break-word; }
.jsb-how-faq-icon {
	flex: none;
	position: relative;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 2px solid var(--jb-gold);
	transition: transform 0.25s ease, background 0.25s ease;
}
.jsb-how-faq-icon::before,
.jsb-how-faq-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 2px;
	background: var(--jb-gold-dark);
	transform: translate(-50%, -50%);
	border-radius: 2px;
}
.jsb-how-faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.jsb-how-faq-item[open] .jsb-how-faq-icon { transform: rotate(45deg); }
.jsb-how-faq-a {
	padding: 0 24px 24px;
	color: var(--jb-text-muted);
	font-size: 14.5px;
	line-height: 1.7;
	min-width: 0;
}
.jsb-how-faq-answer {
	margin: 0;
	min-width: 0;
	overflow-wrap: break-word;
}

/* MOQ table inside Q1 */
.jsb-how-moq-lead {
	margin: 0 0 14px;
	color: var(--jb-blue);
	font-weight: 600;
}
.jsb-how-moq-table {
	width: 100%;
	max-width: 640px;
	border-collapse: collapse;
	font-size: 14px;
	margin: 0 0 14px;
}
.jsb-how-moq-table th,
.jsb-how-moq-table td {
	text-align: left;
	padding: 11px 16px;
	border: 1px solid var(--jb-line);
}
.jsb-how-moq-table thead th {
	background: var(--jb-blue);
	color: #ffffff;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.4px;
}
.jsb-how-moq-table tbody tr:nth-child(even) { background: var(--jb-bg-light); }
.jsb-how-moq-table tbody td:last-child {
	font-weight: 700;
	color: var(--jb-blue);
	white-space: nowrap;
}
.jsb-how-moq-note {
	margin: 0;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--jb-gold-dark);
}

/* ================= Bottom: Fast RFQ banner ================= */
.jsb-how-bottom {
	width: 100%;
	background:
		radial-gradient(900px 380px at 18% 120%, rgba(201, 168, 76, 0.16), rgba(201, 168, 76, 0) 60%),
		var(--jb-blue);
	color: #ffffff;
	padding: 84px 0;
}
.jsb-how-bottom-inner {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 24px;
	text-align: center;
}
.jsb-how-bottom-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 36px;
	font-weight: 800;
	line-height: 1.2;
	color: #ffffff;
	margin: 0 0 16px;
}
.jsb-how-bottom-sub {
	font-size: 16px;
	line-height: 1.7;
	color: var(--jb-white-soft);
	margin: 0 auto 34px;
	max-width: 720px;
}
.jsb-how-bottom-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}
.jsb-how-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 30px;
	border-radius: 6px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.jsb-how-btn:hover { transform: translateY(-2px); }
.jsb-how-btn-gold { background: var(--jb-gold); color: var(--jb-navy-deep); }
.jsb-how-btn-gold:hover { background: var(--jb-gold-dark); color: #ffffff; }
.jsb-how-btn-outline {
	background: transparent;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.45);
}
.jsb-how-btn-outline:hover { border-color: var(--jb-gold); color: var(--jb-gold); }

/* ================= Responsive ================= */
@media (max-width: 1024px) {
	.jsb-how-hero { padding: 72px 0 84px; }
	.jsb-how-hero-title { font-size: 38px; }
	.jsb-how-workflow-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
	.jsb-how-nav { top: calc(100px + var(--jsb-adminbar-h, 0px)); }
	.jsb-how-nav-inner { padding: 0 16px; flex-wrap: nowrap; scroll-snap-type: x proximity; scroll-padding-left: 16px; scroll-padding-right: 16px; }
	.jsb-how-nav-link { padding: 14px 14px; font-size: 13px; flex: 0 0 auto; scroll-snap-align: start; }
	/* Right-edge fade hint (mobile only): while more tabs are reachable, the
	   bar's right edge dissolves (mask on the nav bar itself, so the navy
	   background + clipped tab sliver both fade). Toggled by jsb-how.js via
	   .jsb-nav-scrollable / .jsb-nav-at-end on the nav; the hint disappears at
	   the end and returns when scrolling back left. Mask is paint-only - tabs
	   stay clickable, no overlay element is added. */
	.jsb-how-nav.jsb-nav-scrollable:not(.jsb-nav-at-end) {
		-webkit-mask-image: linear-gradient(to right, #000 0%, #000 calc(100% - 44px), transparent calc(100% - 16px));
		mask-image: linear-gradient(to right, #000 0%, #000 calc(100% - 44px), transparent calc(100% - 16px));
	}
	#process, #sampling, #faq { scroll-margin-top: calc(168px + var(--jsb-adminbar-h, 0px)); }

	.jsb-how-hero { padding: 56px 0 64px; }
	.jsb-how-hero-inner { padding: 0 18px; }
	.jsb-how-hero-title { font-size: 30px; }
	.jsb-how-hero-sub { font-size: 16.5px; }
	.jsb-how-hero-desc { font-size: 15px; }

	.jsb-how-wrap { padding: 0 18px 60px; }
	.jsb-how-sec { padding-top: 60px; }
	.jsb-how-inner { padding: 0 18px; }
	.jsb-how-band { padding: 60px 0 64px; }
	.jsb-how-title { font-size: 25px; }

	.jsb-how-timeline-overview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.jsb-how-tl-cell:nth-child(2) { border-right: 0; }
	.jsb-how-tl-cell:nth-child(-n+2) { border-bottom: 1px solid var(--jb-line); }

	.jsb-how-policy-grid { grid-template-columns: 1fr; }
	.jsb-how-step { gap: 16px; }
	.jsb-how-step::before { left: 21px; }
	.jsb-how-step-body { padding: 18px 18px; }
	.jsb-how-step-head { flex-direction: column; gap: 8px; }

	.jsb-how-bottom { padding: 60px 0; }
	.jsb-how-bottom-inner { padding: 0 18px; }
	.jsb-how-bottom-title { font-size: 27px; }
	.jsb-how-bottom-actions { flex-direction: column; align-items: stretch; }
}

@media (max-width: 480px) {
	.jsb-how-timeline-overview { grid-template-columns: 1fr; }
	.jsb-how-tl-cell { border-right: 0 !important; border-bottom: 1px solid var(--jb-line); }
	.jsb-how-tl-cell:last-child { border-bottom: 0; }
	.jsb-how-faq-q { font-size: 15px; padding: 18px 18px; }
	.jsb-how-faq-a { padding: 0 18px 20px; }
}
