/* =========================================================================
   Blog post template  —  [blog-content-template]
   Two-column article layout, FAQ accordion, CTA banner.
   ========================================================================= */

.jeb-post {
	--jeb-accent: var(--accent, #359BD6);
	--jeb-accent-dark: #2b86bb;
	--jeb-ink: #111111;
	--jeb-ink-soft: #3a3a3a;
	--jeb-muted: #6b6b6b;
	--jeb-border: var(--border, #C6C6C6);
	--jeb-border-soft: #E5E7EB;
	--jeb-surface: var(--surface, #F9F9F9);
	--jeb-radius: 3px;

	/* Article type scale (deliberately a step below site globals) */
	--jeb-body: 1.0625rem;      /* 17px */
	--jeb-lead: 1.1875rem;      /* 19px */
	--jeb-h2: 1.75rem;          /* 28px */
	--jeb-h3: 1.3125rem;        /* 21px */
	--jeb-h4: 1.125rem;         /* 18px */
	--jeb-small: 0.875rem;      /* 14px */
	--jeb-xs: 0.75rem;          /* 12px */

	--jeb-content-max: 900px;
	--jeb-sidebar-w: 320px;
	--jeb-gap: 64px;

	color: var(--jeb-ink);
	width: 100%;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.jeb-post-placeholder {
	padding: 40px;
	border: 1px dashed var(--border, #C6C6C6);
	border-radius: 3px;
	text-align: center;
	color: #6b6b6b;
	font-size: 15px;
}

/* -------------------------------------------------------------------------
   Grid
   ---------------------------------------------------------------------- */
.jeb-post__grid {
	display: grid;
	grid-template-columns: minmax(0, var(--jeb-content-max)) var(--jeb-sidebar-w);
	column-gap: var(--jeb-gap);
	justify-content: center;
	align-items: start;
	max-width: calc(var(--jeb-content-max) + var(--jeb-sidebar-w) + var(--jeb-gap));
	margin: 0 auto;
}

.jeb-post__main {
	min-width: 0;
	max-width: var(--jeb-content-max);
}

.jeb-post__sidebar {
	min-width: 0;
}

.jeb-post__sticky {
	position: sticky;
	top: var(--jeb-sticky-top, 120px);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* -------------------------------------------------------------------------
   Mobile meta bar (hidden on desktop where the sidebar carries it)
   ---------------------------------------------------------------------- */
.jeb-post__metabar {
	display: none;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 18px;
	margin: 0 0 28px;
	font-size: var(--jeb-small);
	color: var(--jeb-muted);
}
.jeb-post__metabar-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.jeb-post__metabar-item svg {
	width: 16px;
	height: 16px;
	flex: none;
}

/* -------------------------------------------------------------------------
   Article typography
   ---------------------------------------------------------------------- */
.jeb-post .jeb-post__content {
	font-size: var(--jeb-body);
	line-height: 1.7;
	font-weight: 400;
	color: var(--jeb-ink-soft);
	overflow-wrap: anywhere;
}

.jeb-post .jeb-post__content > * {
	margin-top: 0;
	margin-bottom: 1.25em;
}
.jeb-post .jeb-post__content > *:last-child {
	margin-bottom: 0;
}

/* Lead paragraph */
.jeb-post .jeb-post__content > p:first-child {
	font-size: var(--jeb-lead);
	line-height: 1.6;
	color: var(--jeb-ink);
}

.jeb-post .jeb-post__content p:last-child {
	margin-bottom: 0;
}
.jeb-post .jeb-post__content p:not(:last-child) {
	margin-block-end: 1.25em;
}

.jeb-post .jeb-post__content h2,
.jeb-post .jeb-post__content h3,
.jeb-post .jeb-post__content h4,
.jeb-post .jeb-post__content h5 {
	color: var(--jeb-ink);
	font-family: inherit;
	letter-spacing: -0.01em;
	scroll-margin-top: 140px;
}
.jeb-post .jeb-post__content h2 {
	font-size: var(--jeb-h2);
	font-weight: 500;
	line-height: 1.25;
	margin-top: 2.1em;
	margin-bottom: 0.65em;
	padding-top: 0.9em;
	border-top: 1px solid var(--jeb-border-soft);
}
.jeb-post .jeb-post__content > h2:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}
.jeb-post .jeb-post__content h3 {
	font-size: var(--jeb-h3);
	font-weight: 600;
	line-height: 1.35;
	margin-top: 1.9em;
	margin-bottom: 0.55em;
}
.jeb-post .jeb-post__content h4 {
	font-size: var(--jeb-h4);
	font-weight: 600;
	line-height: 1.4;
	margin-top: 1.6em;
	margin-bottom: 0.5em;
}
.jeb-post .jeb-post__content h5,
.jeb-post .jeb-post__content h6 {
	font-size: var(--jeb-body);
	font-weight: 600;
	line-height: 1.4;
	margin-top: 1.4em;
	margin-bottom: 0.4em;
}
.jeb-post .jeb-post__content h2 + h3,
.jeb-post .jeb-post__content h3 + h4 {
	margin-top: 0.8em;
}
.jeb-post .jeb-post__content h2 b,
.jeb-post .jeb-post__content h2 strong,
.jeb-post .jeb-post__content h3 b,
.jeb-post .jeb-post__content h3 strong {
	font-weight: inherit;
}

.jeb-post .jeb-post__content strong,
.jeb-post .jeb-post__content b {
	font-weight: 600;
	color: var(--jeb-ink);
}
.jeb-post .jeb-post__content a strong,
.jeb-post .jeb-post__content a b {
	color: inherit;
}

.jeb-post .jeb-post__content a:not(.jeb-btn) {
	color: var(--jeb-accent-dark);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	text-decoration-color: rgba(53, 155, 214, 0.5);
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.jeb-post .jeb-post__content a:not(.jeb-btn):hover {
	color: var(--jeb-accent);
	text-decoration-color: currentColor;
}

/* Lists */
.jeb-post .jeb-post__content ul,
.jeb-post .jeb-post__content ol {
	padding-left: 1.4em;
	margin-bottom: 1.4em;
}
.jeb-post .jeb-post__content li {
	margin: 0 0 0.5em;
	padding-left: 0.2em;
	line-height: 1.6;
}
.jeb-post .jeb-post__content li:last-child {
	margin-bottom: 0;
}
.jeb-post .jeb-post__content li > p {
	margin-bottom: 0.5em;
}
.jeb-post .jeb-post__content ul > li::marker {
	color: var(--jeb-accent);
	font-size: 1.05em;
}
.jeb-post .jeb-post__content ol > li::marker {
	color: var(--jeb-ink);
	font-weight: 600;
	font-variant-numeric: tabular-nums;
}
.jeb-post .jeb-post__content li ul,
.jeb-post .jeb-post__content li ol {
	margin: 0.5em 0 0.2em;
}
.jeb-post .jeb-post__content p + ul,
.jeb-post .jeb-post__content p + ol {
	margin-top: -0.5em;
}

/* Media */
.jeb-post .jeb-post__content img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: var(--jeb-radius);
	margin: 2.2em 0;
}
.jeb-post .jeb-post__content p > img:only-child {
	margin: 0.6em 0;
}
.jeb-post .jeb-post__content figure {
	margin: 2.2em 0;
}
.jeb-post .jeb-post__content figure img {
	margin: 0;
}
.jeb-post .jeb-post__content figcaption {
	margin-top: 0.7em;
	font-size: var(--jeb-small);
	color: var(--jeb-muted);
}
.jeb-post .jeb-post__content iframe,
.jeb-post .jeb-post__content video {
	max-width: 100%;
	border-radius: var(--jeb-radius);
}

/* Quotes */
.jeb-post .jeb-post__content blockquote {
	margin: 2em 0;
	padding: 0.4em 0 0.4em 1.4em;
	border-left: 3px solid var(--jeb-accent);
	font-size: 1.15em;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0;
	color: var(--jeb-ink);
}
.jeb-post .jeb-post__content blockquote p {
	margin-bottom: 0.6em;
}

/* Tables */
.jeb-post .jeb-post__content table {
	width: 100%;
	border-collapse: collapse;
	margin: 2em 0;
	font-size: 0.95em;
}
.jeb-post .jeb-post__content th,
.jeb-post .jeb-post__content td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--jeb-border-soft);
	text-align: left;
	vertical-align: top;
}
.jeb-post .jeb-post__content th {
	font-weight: 600;
	background: var(--jeb-surface);
	color: var(--jeb-ink);
}

.jeb-post .jeb-post__content hr {
	border: 0;
	border-top: 1px solid var(--jeb-border-soft);
	margin: 2.5em 0;
}

/* Legacy pasted <details> accordions inside body copy */
.jeb-post .jeb-post__content details {
	border: 1px solid var(--jeb-border-soft);
	border-radius: var(--jeb-radius);
	padding: 14px 18px;
	margin-bottom: 8px;
}
.jeb-post .jeb-post__content summary {
	cursor: pointer;
	font-weight: 600;
	color: var(--jeb-ink);
}

/* -------------------------------------------------------------------------
   Sidebar cards
   ---------------------------------------------------------------------- */
.jeb-card {
	background: #fff;
	border: 1px solid var(--jeb-border-soft);
	border-radius: var(--jeb-radius);
	padding: 24px;
	font-size: var(--jeb-small);
	line-height: 1.55;
	color: var(--jeb-ink-soft);
}
.jeb-card p {
	margin: 0;
}
.jeb-card__label {
	display: block;
	font-size: var(--jeb-xs);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--jeb-muted);
	margin-bottom: 8px;
}
.jeb-card__label--light {
	color: rgba(255, 255, 255, 0.65);
}
.jeb-card__heading {
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.3;
	margin: 0 0 8px;
	letter-spacing: -0.01em;
}

/* Author */
.jeb-author {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.jeb-author__avatar {
	flex: none;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	background: var(--jeb-surface);
}
.jeb-author__avatar--logo {
	object-fit: contain;
	padding: 4px;
	border: 1px solid var(--jeb-border-soft);
	background: #fff;
}
.jeb-author__body {
	min-width: 0;
}
.jeb-author__body .jeb-card__label {
	margin-bottom: 2px;
}
.jeb-author__name {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	color: var(--jeb-ink);
	line-height: 1.3;
	margin-bottom: 6px;
}
.jeb-author__bio {
	color: var(--jeb-muted);
}

/* Meta */
.jeb-meta__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.jeb-meta__list li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--jeb-ink-soft);
}
.jeb-meta__list svg {
	width: 18px;
	height: 18px;
	flex: none;
	color: var(--jeb-accent);
}
.jeb-meta__tax,
.jeb-meta__share {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--jeb-border-soft);
}
.jeb-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.jeb-chip {
	display: inline-flex;
	align-items: center;
	padding: 5px 10px;
	border-radius: 999px;
	border: 1px solid var(--jeb-border-soft);
	background: var(--jeb-surface);
	color: var(--jeb-ink-soft);
	font-size: var(--jeb-xs);
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
a.jeb-chip:hover {
	border-color: var(--jeb-accent);
	color: var(--jeb-accent-dark);
	background: #fff;
}
.jeb-chip--cat {
	background: rgba(53, 155, 214, 0.1);
	border-color: rgba(53, 155, 214, 0.25);
	color: var(--jeb-accent-dark);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.jeb-chip--cat:hover {
	background: var(--jeb-accent);
	border-color: var(--jeb-accent);
	color: #fff;
}

/* Share */
.jeb-share {
	display: flex;
	gap: 8px;
}
.jeb-post .jeb-share__btn,
.jeb-post button.jeb-share__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--jeb-border-soft);
	background: #fff;
	color: var(--jeb-ink-soft);
	cursor: pointer;
	padding: 0;
	margin: 0;
	font-size: 0;
	line-height: 1;
	box-shadow: none;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.jeb-post .jeb-share__btn svg {
	width: 18px;
	height: 18px;
	min-width: 18px;
	display: block;
	flex: none;
}
.jeb-post .jeb-share__btn:hover,
.jeb-post .jeb-share__btn.is-copied {
	background: var(--jeb-accent);
	border-color: var(--jeb-accent);
	color: #fff;
}
.jeb-share__copied {
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	font-size: var(--jeb-xs);
	background: var(--jeb-ink);
	color: #fff;
	padding: 4px 8px;
	border-radius: 3px;
	pointer-events: none;
}
.jeb-share__copied:empty {
	display: none;
}

/* Sidebar CTA card */
.jeb-card--cta {
	background: var(--jeb-ink);
	border-color: var(--jeb-ink);
	color: rgba(255, 255, 255, 0.8);
}
.jeb-card--cta .jeb-card__heading {
	color: #fff;
}
.jeb-card--cta p {
	margin-bottom: 18px;
}

/* -------------------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------------- */
.jeb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 12px 22px;
	border-radius: var(--jeb-radius);
	border: 1px solid transparent;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.1;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.jeb-post .jeb-btn svg {
	width: 18px;
	height: 18px;
	flex: none;
	display: block;
	color: inherit;
}
.jeb-post .jeb-btn span {
	color: inherit;
}
.jeb-post .jeb-btn--accent,
.jeb-post .jeb-btn--accent:hover,
.jeb-post .jeb-btn--accent span {
	color: #fff;
}
.jeb-btn--accent {
	background: var(--jeb-accent);
	border-color: var(--jeb-accent);
	width: 100%;
}
.jeb-btn--accent:hover {
	background: var(--jeb-accent-dark);
	border-color: var(--jeb-accent-dark);
	color: #fff;
}
.jeb-post .jeb-btn--ghost,
.jeb-post .jeb-btn--ghost:hover,
.jeb-post .jeb-btn--ghost span {
	color: #fff;
}
.jeb-btn--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.35);
}
.jeb-btn--ghost:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}
.jeb-btn--ghost:hover svg {
	transform: translateX(3px);
}
.jeb-btn--ghost svg {
	transition: transform 0.2s ease;
}
.jeb-btn--lg {
	min-height: 56px;
	padding: 14px 28px;
	font-size: 1rem;
	width: auto;
}

/* -------------------------------------------------------------------------
   FAQ accordion — mirrors the home page e-n-accordion (transparent_accordion)
   ---------------------------------------------------------------------- */
.jeb-faq {
	margin-top: 72px;
	padding-top: 40px;
	border-top: 1px solid var(--jeb-border-soft);
}
.jeb-post .jeb-faq__heading {
	font-size: var(--jeb-h2);
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: -0.01em;
	margin: 0 0 8px;
	color: var(--jeb-ink);
}
.jeb-faq__list {
	display: flex;
	flex-direction: column;
}
.jeb-faq__item {
	background: transparent;
	border: 0;
	border-bottom: 1px solid #D5D8DC;
	border-radius: 0;
}
.jeb-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 32px 0;
	margin: 0;
	cursor: pointer;
	list-style: none;
	font-size: 1.4375rem; /* 23px – site h4 */
	font-weight: 500;
	line-height: 1.4;
	color: #1F2124;
	user-select: none;
	transition: padding-bottom 0.2s ease;
}
.jeb-faq__item[open] > .jeb-faq__question {
	padding-bottom: 15px;
}
.jeb-faq__question::-webkit-details-marker {
	display: none;
}
.jeb-faq__question:focus-visible {
	outline: 2px solid var(--jeb-accent);
	outline-offset: 4px;
}
.jeb-faq__icon {
	position: relative;
	flex: none;
	width: 15px;
	height: 15px;
	color: #1F2124;
}
.jeb-faq__icon::before,
.jeb-faq__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 13px;
	height: 2.4px;
	border-radius: 1px;
	background: currentColor;
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease, opacity 0.25s ease;
}
.jeb-faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}
.jeb-faq__item[open] .jeb-faq__icon::after {
	transform: translate(-50%, -50%) rotate(0deg);
	opacity: 0;
}
.jeb-faq__answer {
	will-change: height;
}
.jeb-faq__answer-inner {
	padding: 0 0 32px;
	max-width: calc(100% - 50px);
	font-size: var(--jeb-body);
	line-height: 1.45;
	color: var(--jeb-ink);
}
.jeb-faq__answer-inner > *:first-child {
	margin-top: 0;
}
.jeb-faq__answer-inner > *:last-child {
	margin-bottom: 0;
}
.jeb-faq__answer-inner p:not(:last-child) {
	margin-block-end: 0.9em;
}
.jeb-faq__answer-inner a {
	color: var(--jeb-accent-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* -------------------------------------------------------------------------
   CTA banner
   ---------------------------------------------------------------------- */
.jeb-cta {
	position: relative;
	overflow: hidden;
	max-width: calc(var(--jeb-content-max) + var(--jeb-sidebar-w) + var(--jeb-gap));
	margin: 80px auto 0;
	padding: 0;
	border-radius: var(--jeb-radius);
	background: var(--jeb-ink);
	color: rgba(255, 255, 255, 0.82);
	display: grid;
	grid-template-columns: 1fr;
	align-items: stretch;
	isolation: isolate;
}
.jeb-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(60% 90% at 100% 0%, rgba(53, 155, 214, 0.35), transparent 60%),
		radial-gradient(40% 60% at 0% 100%, rgba(53, 155, 214, 0.18), transparent 60%);
	z-index: -1;
}
.jeb-cta--has-image {
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}
.jeb-cta__body {
	padding: 56px 64px;
	max-width: 680px;
	align-self: center;
}
.jeb-cta__eyebrow {
	display: inline-block;
	font-size: var(--jeb-xs);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--jeb-accent);
	margin-bottom: 14px;
}
.jeb-post .jeb-cta__heading {
	font-size: 2.125rem;
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0 0 16px;
	text-wrap: balance;
}
.jeb-cta__text {
	font-size: 1.0625rem;
	line-height: 1.6;
	margin: 0 0 22px;
}
.jeb-cta__points {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	font-size: var(--jeb-small);
	color: rgba(255, 255, 255, 0.9);
}
.jeb-cta__points li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.jeb-cta__points svg {
	width: 16px;
	height: 16px;
	color: var(--jeb-accent);
	flex: none;
}
.jeb-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.jeb-cta__media {
	position: relative;
	min-height: 320px;
}
.jeb-cta__media img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0;
	border-radius: 0;
}

/* -------------------------------------------------------------------------
   Hero tweaks for single posts (Elementor template #70)
   ---------------------------------------------------------------------- */
.single-post .elementor-location-single .elementor-element-e497644 {
	background-position: center center;
}
.single-post .elementor-location-single .elementor-element-e497644 > .e-con-inner,
.single-post .elementor-location-single .elementor-element-e497644 > .elementor-background-overlay {
	position: relative;
}
.single-post .elementor-location-single .elementor-element-e497644::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.65) 100%);
	pointer-events: none;
	border-radius: inherit;
	z-index: 0;
}
.single-post .elementor-location-single .elementor-element-e497644 h1 {
	position: relative;
	z-index: 1;
	text-wrap: balance;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.single-post .elementor-location-single .elementor-element-e497644 h4 {
	position: relative;
	z-index: 1;
}

/* -------------------------------------------------------------------------
   Responsive
   ---------------------------------------------------------------------- */
@media (max-width: 1440px) {
	.jeb-post {
		--jeb-gap: 48px;
		--jeb-sidebar-w: 300px;
	}
}

@media (max-width: 1100px) {
	.jeb-post__grid {
		grid-template-columns: minmax(0, 1fr);
		max-width: var(--jeb-content-max);
		row-gap: 48px;
	}
	.jeb-post__main {
		max-width: none;
	}
	.jeb-post__sidebar {
		order: 2;
	}
	.jeb-post__sticky {
		position: static;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}
	.jeb-post__sticky .jeb-card--cta {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
		column-gap: 32px;
	}
	.jeb-post__sticky .jeb-card--cta .jeb-card__label {
		grid-column: 1 / -1;
	}
	.jeb-post__sticky .jeb-card--cta .jeb-card__heading {
		grid-column: 1;
	}
	.jeb-post__sticky .jeb-card--cta p {
		grid-column: 1;
		margin-bottom: 0;
	}
	.jeb-post__sticky .jeb-card--cta .jeb-btn {
		grid-column: 2;
		grid-row: 2 / span 2;
		width: auto;
	}
	.jeb-post__metabar {
		display: flex;
	}
	.jeb-cta__body {
		padding: 48px;
	}
}

@media (max-width: 1024px) {
	/* Hero: kit sets 70px on tablet, which wraps long titles into 6–7 lines */
	.single-post .elementor-location-single .elementor-element-e497644 h1 {
		font-size: 2.75rem;
		line-height: 1.1;
	}
}

@media (max-width: 767px) {
	.jeb-post {
		--jeb-body: 1rem;        /* 16px */
		--jeb-lead: 1.0625rem;   /* 17px */
		--jeb-h2: 1.5rem;        /* 24px */
		--jeb-h3: 1.1875rem;     /* 19px */
		--jeb-h4: 1.0625rem;     /* 17px */
	}
	.jeb-post .jeb-post__content {
		line-height: 1.65;
	}
	.jeb-post .jeb-post__content h2 {
		margin-top: 1.8em;
		padding-top: 0.8em;
	}
	.jeb-post .jeb-post__content ul,
	.jeb-post .jeb-post__content ol {
		padding-left: 1.25em;
	}
	.jeb-post .jeb-post__content img,
	.jeb-post .jeb-post__content figure {
		margin: 1.6em 0;
	}
	.jeb-post__metabar {
		margin-bottom: 22px;
	}
	.jeb-post__sticky {
		grid-template-columns: 1fr;
	}
	.jeb-post__sticky .jeb-card--cta {
		display: block;
	}
	.jeb-post__sticky .jeb-card--cta .jeb-btn {
		width: 100%;
		margin-top: 24px;
	}
	.jeb-card {
		padding: 20px;
	}
	.jeb-faq {
		margin-top: 56px;
		padding-top: 32px;
	}
	.jeb-faq__question {
		padding: 22px 0;
		font-size: 1.25rem; /* 20px – site h4 mobile */
		gap: 14px;
	}
	.jeb-faq__item[open] > .jeb-faq__question {
		padding-bottom: 12px;
	}
	.jeb-faq__answer-inner {
		padding: 0 0 22px;
		max-width: calc(100% - 20px);
		font-size: 1rem;
	}
	.jeb-cta {
		margin-top: 48px;
	}
	.jeb-cta__body {
		padding: 36px 24px;
	}
	.jeb-cta--has-image {
		grid-template-columns: 1fr;
	}
	.jeb-cta__media {
		order: -1;
		min-height: 0;
		height: 220px;
	}
	.jeb-post .jeb-cta__heading {
		font-size: 1.625rem;
	}
	.jeb-cta__text {
		font-size: 1rem;
	}
	.jeb-cta__actions {
		flex-direction: column;
	}
	.jeb-cta__actions .jeb-btn {
		width: 100%;
	}

	/* Hero: tighter title on phones */
	.single-post .elementor-location-single .elementor-element-e497644 h1 {
		font-size: 2rem;
		line-height: 1.12;
	}
	.single-post .elementor-location-single .elementor-element-e497644 h4 {
		font-size: 1rem;
		line-height: 1.45;
	}
}

@media (prefers-reduced-motion: reduce) {
	.jeb-post *,
	.jeb-post *::before,
	.jeb-post *::after {
		transition: none !important;
	}
}
