/* =============================================================================
   Zehoro Toolkit — frontend styles
   CSS custom properties are injected dynamically via wp_add_inline_style()
   in Plugin::enqueue_assets(), so they always appear after this stylesheet
   and win the cascade. Edit colors in WP Admin → Site Toolkit → Visual Styles.
   ============================================================================= */

/* Static non-configurable tokens */
:root {
    --lkst-text-main:    #3D3730;
    --lkst-text-muted:   #8A8478;
    --lkst-border-light: rgba(15, 26, 46, 0.1);
}

/* =============================================================================
   Category / topic pills  (.lkst-cat-pills)
   ============================================================================= */

.lkst-cat-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}

.lkst-cat-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 5px 14px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 100px;
	color: #D4CFC8;
	font-size: var(--text-xs, 13px);
	font-weight: 500;
	text-decoration: none;
	transition: all 0.18s ease;
	letter-spacing: 0.02em;
	line-height: 1.2;
	white-space: nowrap;
}

.lkst-cat-pill:hover {
	background: rgba(30, 207, 196, 0.12);
	border-color: var(--lkst-secondary-color);
	color: var(--lkst-secondary-color);
	text-decoration: none;
}

.lkst-pill-count {
	font-size: 10px;
	font-weight: 400;
	opacity: 0.5;
}

/* Light variant — for use on light/cream backgrounds (e.g. home article
   section, fellowship-tinted hero panels). Uses light-bg-friendly colors
   while keeping the same shape. */
.lkst-cat-pills--light .lkst-cat-pill {
	background: var(--lkst-bg-light, #F5F0E8);
	border-color: color-mix(in oklch, var(--lkst-primary-contrast, #0F1A2E) 12%, transparent);
	color: color-mix(in oklch, var(--lkst-primary-contrast, #0F1A2E) 65%, transparent);
}

.lkst-cat-pills--light .lkst-cat-pill:hover {
	background: color-mix(in oklch, var(--lkst-primary-contrast, #0F1A2E) 8%, var(--lkst-bg-light, #F5F0E8));
	border-color: color-mix(in oklch, var(--lkst-primary-contrast, #0F1A2E) 20%, transparent);
	color: var(--lkst-primary-contrast, #0F1A2E);
}

/* Active state — works on both schemes. Navy bg, light text. */
.lkst-cat-pill.is-active,
.lkst-cat-pill.is-active:hover {
	background: var(--lkst-primary-contrast, #0F1A2E);
	border-color: var(--lkst-primary-contrast, #0F1A2E);
	color: var(--lkst-bg-light, #F5F0E8);
}

.lkst-cat-pill.is-active .lkst-pill-count {
	opacity: 0.7;
}


/* =============================================================================
   News ticker  (.lkst-ticker)
   ============================================================================= */

@keyframes lkst-ticker {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

.lkst-ticker {
	
	padding: 13px 0;
	border-top: 1px solid rgba(245, 240, 232, 0.08);
	border-bottom: 1px solid rgba(245, 240, 232, 0.08);
	font-size:0.7em;
	overflow: hidden;
}

.lkst-ticker__wrap {
	display: flex;
	
	width: 100%;

	overflow: hidden;
}

.lkst-ticker__track {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	animation: lkst-ticker 60s linear infinite;
}

.lkst-ticker__items {
	display: flex;
	align-items: center;
	white-space: nowrap;
}

.lkst-ticker__wrap:hover .lkst-ticker__track {
	animation-play-state: paused;
}

/* Ticker separator diamond — uses primary brand color via CSS var */
.lkst-ticker__sep {
	color: var(--lkst-primary-color, #E8A020);
	padding: 0 14px;
	flex-shrink: 0;
}

/* Ticker post links — light color on the dark ticker strip */
.lkst-ticker__link {
	color: #F5F0E8;
	white-space: nowrap;
	text-decoration: none;
	flex-shrink: 0;
}

.lkst-ticker__link:hover {
	color: var(--lkst-primary-color, #E8A020);
}


/* =============================================================================
   Mid-post newsletter CTA  (.lkst-midpost-cta)
   ============================================================================= */

.lkst-midpost-cta {
	margin-bottom: 20px;
	min-height: 180px;
	background: var(--lkst-bg-dark);
	border-left: 4px solid var(--lkst-primary-color);
	border-radius: 12px;
	padding: 36px 28px 28px;
	
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	align-items: start;
}

@media (max-width: 640px) {
	.lkst-midpost-cta { min-height: 180px; grid-template-columns: 1fr; }
}

/* Sidebar variant — single-column stacked layout */
.lkst-midpost-cta.lkst-sidebar-cta {
	grid-template-columns: 1fr;
	min-height: auto;
	gap: 16px;
	padding: 20px;
	margin: 0;
	border-radius: 8px;
}

.lkst-midpost-cta__heading {
	display: block;
	color: #F5F0E8;
	font-size: var(--text-m, 1.1rem);
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.35;
}

.lkst-midpost-cta__desc {
	display: block;
	color: rgba(245, 240, 232, 0.72);
	font-size: var(--text-s, 0.95rem);
	line-height: 1.6;
}


/* =============================================================================
   Author social links row  (.lkst-author-socials)
   ============================================================================= */

.lkst-author-socials {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: var(--space-s, 1rem);
	padding-top: var(--space-s, 1rem);
	border-top: 1px solid var(--lkst-border-light);
}

.lkst-author-socials__label {
	font-size: var(--text-xs, 0.8rem);
	font-weight: 600;
	color: var(--lkst-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-right: 4px;
}

.lkst-author-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: var(--lkst-bg-dark);
	border-radius: 50%;
	color: #F5F0E8;
	text-decoration: none;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.lkst-author-social-link:hover {
	background: var(--lkst-primary-color);
	color: var(--lkst-primary-contrast);
}

.lkst-author-social-link .dashicons {
	width: 18px;
	height: 18px;
	font-size: 18px;
	display: block;
	line-height: 1;
}


/* =============================================================================
   Post prev / next navigation  (.lkst-post-nav)
   ============================================================================= */

.lkst-post-nav {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.lkst-post-nav__item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-decoration: none;
	max-width: 47%;
	color: var(--lkst-bg-dark);
	transition: color 0.2s ease;
}

.lkst-post-nav__item:hover {
	color: var(--lkst-primary-color);
	text-decoration: none;
}

.lkst-post-nav__next {
	text-align: right;
	margin-left: auto;
}

.lkst-post-nav__empty {
	flex: 0;
}

.lkst-post-nav__label {
	font-size: var(--text-xs, 0.8rem);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--lkst-text-muted);
}

.lkst-post-nav__title {
	font-size: var(--text-s, 0.95rem);
	font-weight: 600;
	line-height: 1.4;
}

@media (max-width: 560px) {
	.lkst-post-nav { flex-direction: column; gap: 12px; }
	.lkst-post-nav__item,
	.lkst-post-nav__next { max-width: 100%; text-align: left; margin-left: 0; }
}


/* =============================================================================
   Author box  (.lkst-author-box)
   ============================================================================= */

.lkst-author-box {
	background: var(--lkst-bg-light);
	border: 1px solid var(--lkst-border-light);
	border-radius: 12px;
	padding: 28px;
	margin-top: 0;
}

.lkst-ab-header {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 16px;
}

.lkst-ab-avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	flex-shrink: 0;
	object-fit: cover;
	border: 3px solid var(--lkst-primary-color);
}

.lkst-ab-identity {
	flex: 1;
	min-width: 0;
}

.lkst-ab-name {
	display: block;
	font-size: var(--text-m, 1.1rem);
	font-weight: 700;
	color: var(--lkst-bg-dark);
	line-height: 1.3;
	margin-bottom: 4px;
}

.lkst-ab-tagline {
	display: block;
	font-size: var(--text-xs, 0.8rem);
	color: var(--lkst-text-muted);
	font-weight: 500;
	letter-spacing: 0.02em;
}

.lkst-ab-bio {
	font-size: var(--text-s, 0.95rem);
	color: var(--lkst-text-main);
	line-height: 1.7;
	margin-bottom: 16px;
}

.lkst-ab-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.lkst-ab-chip {
	display: inline-block;
	background: var(--lkst-bg-dark);
	color: #F5F0E8;
	font-size: var(--text-xs, 0.8rem);
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 100px;
	letter-spacing: 0.02em;
}

.lkst-ab-ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.lkst-ab-btn-primary {
	display: inline-flex;
	align-items: center;
	background: var(--lkst-primary-color);
	color: var(--lkst-primary-contrast);
	font-weight: 700;
	font-size: var(--text-s, 0.95rem);
	padding: 10px 22px;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s ease;
}

.lkst-ab-btn-primary:hover {
	filter: brightness(0.9);
	color: var(--lkst-primary-contrast);
	text-decoration: none;
}

.lkst-ab-btn-secondary {
	display: inline-flex;
	align-items: center;
	background: transparent;
	color: var(--lkst-bg-dark);
	font-weight: 600;
	font-size: var(--text-s, 0.95rem);
	padding: 10px 22px;
	border-radius: 8px;
	border: 1px solid rgba(15, 26, 46, 0.25);
	text-decoration: none;
	transition: all 0.2s ease;
}

.lkst-ab-btn-secondary:hover {
	border-color: var(--lkst-secondary-color);
	color: var(--lkst-secondary-color);
	text-decoration: none;
}

.lkst-ab-socials {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-top: 16px;
	border-top: 1px solid var(--lkst-border-light);
}

.lkst-ab-socials-label {
	font-size: var(--text-xs, 0.8rem);
	font-weight: 600;
	color: var(--lkst-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-right: 4px;
}

.lkst-ab-social {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: var(--lkst-bg-dark);
	border-radius: 50%;
	color: #F5F0E8;
	text-decoration: none;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.lkst-ab-social:hover {
	background: var(--lkst-primary-color);
	color: var(--lkst-primary-contrast);
	text-decoration: none;
}

.lkst-ab-social .dashicons {
	width: 18px;
	height: 18px;
	font-size: 18px;
	display: block;
	line-height: 1;
}

/* Contextual CTA wrappers */
.lkst-contextual-cta {
    
}

.lkst-midpost-cta__eyebrow {
	display: block;
	font-size: var(--text-xs, 0.75rem);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--lkst-primary-color, #E8A020);
	margin-bottom: 6px;
}
/* =============================================================================
   Content CTA Layouts
   ============================================================================= */

/* Image layout variants */
.lkst-midpost-cta.has-image.image-left,
.lkst-midpost-cta.has-image.image-right {
  grid-template-columns: 200px 1fr 1fr;
}
.lkst-midpost-cta.has-image.image-left .lkst-cta-image-wrapper,
.lkst-midpost-cta.has-image.image-right .lkst-cta-image-wrapper {
  width: 200px;
  min-width: 200px;
  max-width: 200px;
}

.lkst-midpost-cta.has-image.image-left .lkst-cta-image-wrapper  { order: 1; }
.lkst-midpost-cta.has-image.image-left .lkst-midpost-cta__text   { order: 2; }
.lkst-midpost-cta.has-image.image-left .lkst-midpost-cta__form   { order: 3; }

.lkst-midpost-cta.has-image.image-right .lkst-midpost-cta__text  { order: 1; }
.lkst-midpost-cta.has-image.image-right .lkst-midpost-cta__form  { order: 2; }
.lkst-midpost-cta.has-image.image-right .lkst-cta-image-wrapper  { order: 3; }

.lkst-midpost-cta.has-image.image-top {
  grid-template-columns: 1fr 1fr; /* text | form — image spans full width above */
  grid-template-rows: auto 1fr;
}
.lkst-midpost-cta.has-image.image-top .lkst-cta-image-wrapper {
  grid-column: 1 / -1; /* full width */
}

.lkst-cta-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Cap image-top height to prevent 16:9 images from dominating */
.lkst-midpost-cta.has-image.image-top .lkst-cta-image-wrapper img {
  max-height: 200px;
}

/* Stack form elements (input on top, button below) inside any CTA.
   Fluent Forms adds gap:15px to .ff-t-container at >=768px — override it
   with a tighter value so the stacked pair doesn't look too spread out. */
.lkst-midpost-cta__form .ff-t-container {
  flex-direction: column;
  gap: 8px;
}
.lkst-midpost-cta__form .ff-t-cell {
  width: 100% !important;
}

/* Mobile: always hide CTA images */
@media (max-width: 768px) {
  .lkst-midpost-cta.hide-image-mobile .lkst-cta-image-wrapper {
    display: none;
  }
  /* Collapse to single column when image is hidden */
  .lkst-midpost-cta.hide-image-mobile {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   Table of Contents (Wirecutter Style)
   ============================================================================= */

.lkst-toc-wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #F5F0E8;
    border-top: 1px solid var(--lkst-border-light, rgba(15, 26, 46, 0.1));
    border-bottom: 1px solid var(--lkst-border-light, rgba(15, 26, 46, 0.1));
    border-radius: 0;
    margin-bottom: 2rem;
    font-family: inherit;
    width: 100%;
}



.lkst-toc-header {
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0F1A2E;
    cursor: pointer;
    max-width: 1200px;
    margin: 0 auto;
}

.lkst-toc-title {
    font-size: 12px;
    font-weight: 400;
    padding-right: 16px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    overflow: hidden;
}

.lkst-toc-active-text-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

.lkst-toc-active-text {
    display: inline-block;
    white-space: nowrap;
    color: #3D3730;
    font-size:15px;
}

.lkst-toc-active-text.is-marquee {
    display: inline-flex;
    animation: lkst-marquee-anim 10s linear infinite;
}

@keyframes lkst-marquee-anim {
    0% { transform: translateX(0); }
    100% { transform: translateX(var(--scroll-dist)); }
}
    85%, 100% { transform: translateX(var(--scroll-dist)); }
}
    85%, 100% { transform: translateX(var(--scroll-dist)); }
}

.lkst-toc-title strong {
    font-size: 12px !important;
    font-weight: 800;
    text-transform: uppercase;
}

.lkst-toc-sep {
    margin: 0 8px;
    color: rgba(15, 26, 46, 0.3);
}

.lkst-toc-active-text {
    color: #3D3730;
}

.lkst-toc-toggle {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.lkst-toc-wrapper.is-open .lkst-toc-toggle {
    transform: rotate(180deg);
}

/* Dropdown body for ALL screen sizes */
.lkst-toc-body {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    max-height: 60vh;
    overflow-y: auto;
    padding: 0;
    border-bottom: 1px solid rgba(15, 26, 46, 0.1);
}

.lkst-toc-wrapper.is-open .lkst-toc-body {
    display: block;
}

.lkst-toc-list {
    list-style: none;
    margin: 0 auto;
    padding: 20px;
    max-width: 1200px;
}

.lkst-toc-item {
    margin-bottom: 12px;
}

.lkst-toc-item:last-child {
    margin-bottom: 0;
}

.lkst-toc-depth-3 {
    padding-left: 20px;
    font-size: 0.9em;
}

.lkst-toc-list a {
    color: #3D3730;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lkst-toc-list a:hover,
.lkst-toc-list a.is-active {
    color: #E8A020;
    font-weight: 600;
}



/* FluentForm Gap Override */
@media (min-width: 768px) {
    .lkst-midpost-cta .frm-fluent-form .ff-t-container,
    .lkst-sidebar-cta .frm-fluent-form .ff-t-container {
        gap: 0 !important;
    }
}
/* Tablet and Mobile Stacking Rules */
@media (max-width: 900px) {
    .lkst-midpost-cta {
        grid-template-columns: 1fr !important;
        padding: 20px !important;
        gap: 20px !important;
    }
    
    .lkst-midpost-cta.has-image .lkst-cta-image-wrapper {
        display: none !important;
    }
    
    .lkst-midpost-cta .lkst-midpost-cta__text,
    .lkst-midpost-cta .lkst-midpost-cta__form {
        order: initial !important;
        grid-column: 1 / -1 !important;
    }
}
/* Fix for container gap on mobile */
@media (max-width: 768px) {
    #brxe-dlyscy {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

/* =============================================================================
   Shared editorial block base  (.lkst-editorial-block)
   Used by AffiliateDisclosure, LastUpdated, FreshnessLog
   ============================================================================= */

.lkst-editorial-block {
	background: var(--lkst-bg-light, #F5F0E8);
	border-radius: 4px;
	margin-bottom: 2em;
	font-size: 13px;
	line-height: 1.5;
}


/* =============================================================================
   Affiliate Disclosure  (.lkst-affiliate-disclosure)
   ============================================================================= */

.lkst-affiliate-disclosure {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 12px 16px;
	color: #4A5568;
}

.lkst-affiliate-disclosure a {
	color: var(--lkst-primary-color, #E8A020);
	text-decoration: underline;
}


/* =============================================================================
   FAQ Accordion  (.lkst-faq-accordion)
   ============================================================================= */

.lkst-faq-accordion {
	margin-bottom: 1.5em;
	border: 1px solid var(--lkst-border-light, rgba(15, 26, 46, 0.1));
	border-radius: 6px;
	background-color: #fff;
}

.lkst-faq-accordion summary {
	font-weight: 600;
	font-size: 18px;
	cursor: pointer;
	padding: 16px 20px;
	list-style-position: inside;
	color: var(--lkst-primary-contrast, #0F1A2E);
	transition: background 0.15s ease;
}

.lkst-faq-accordion summary:hover {
	background: var(--lkst-bg-light, #F5F0E8);
	border-radius: 6px 6px 0 0;
}

.lkst-faq-accordion[open] summary {
	border-bottom: 1px solid var(--lkst-border-light, rgba(15, 26, 46, 0.1));
	border-radius: 6px 6px 0 0;
}

.lkst-faq-answer {
	padding: 0 20px 20px;
	line-height: 1.6;
	color: var(--lkst-text-main, #3D3730);
}


/* =============================================================================
   Last Updated Badge  (.lkst-last-updated)
   ----------------------------------------------------------------------------
   Default (`.lkst-last-updated`) is intentionally unstyled — it inherits the
   surrounding typography so it composes cleanly inside article bodies, page
   hero metadata rows, sidebars, etc.

   The legacy "editorial pill" look is now opt-in via the modifier class
   `.lkst-last-updated--pill`, applied either by:
     • passing variant="pill" to the shortcode: [lkst_last_updated variant="pill"]
     • or by hand: <span class="lkst-last-updated lkst-last-updated--pill">…</span>
   ============================================================================= */

.lkst-last-updated--pill {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 4px 10px;
	background: var(--lkst-bg-light, #F5F0E8);
	color: var(--lkst-primary-contrast, #0F1A2E);
	border-radius: 3px;
	margin-bottom: 1em;
}


/* =============================================================================
   Sticky Bar  (#lkst-sticky-bar)
   ============================================================================= */

#lkst-sticky-bar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999999;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	padding: 12px 20px;
}

#lkst-sb-close {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	opacity: 0.7;
	transition: opacity 0.2s ease;
}

#lkst-sb-close:hover {
	opacity: 1;
}


/* =============================================================================
   Freshness Log  (.lkst-freshness-log)
   ============================================================================= */

.lkst-freshness-log {
	margin: 2em 0;
	border: 1px solid var(--lkst-border-light, rgba(15, 26, 46, 0.1));
	border-radius: 6px;
	background: #fff;
	overflow: hidden;
}


/* =============================================================================
   Inline Posts  (.lkst-inline-post)
   ============================================================================= */

.lkst-inline-post {
	display: block;
	margin: 2em 0;
	text-decoration: none !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	transition: opacity 0.2s ease;
	border-radius: 2px;
	padding: 1.2em;
}

.lkst-inline-post:hover {
	opacity: 0.9;
	text-decoration: none !important;
}

.lkst-inline-post-cta {
	font-weight: 700;
	font-size: 16px;
	margin-right: 8px;
}

.lkst-inline-post-title {
	font-size: 16px;
	text-decoration: underline !important;
}


/* =============================================================================
   Steps / Process  (.lkst-steps)
   ============================================================================= */

.lkst-steps {
	margin: 2em 0;
}

.lkst-steps-task {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--lkst-text-muted, #8A8478);
	margin-bottom: 1em;
}

.lkst-steps-list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: lkst-step;
}

.lkst-step {
	display: flex;
	gap: 1.25em;
	margin-bottom: 1.5em;
	padding-bottom: 1.5em;
	border-bottom: 1px solid var(--lkst-border-light, rgba(15, 26, 46, 0.1));
}

.lkst-step:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.lkst-step-number {
	flex-shrink: 0;
	width: 2.25em;
	height: 2.25em;
	background: var(--lkst-primary-color, #E8A020);
	color: var(--lkst-primary-contrast, #0F1A2E);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 15px;
	line-height: 1;
	margin-top: 2px;
}

.lkst-step-body {
	flex: 1;
	min-width: 0;
}

.lkst-step-title {
	margin: 0 0 0.4em;
	font-size: 1.05em;
	font-weight: 700;
	color: var(--lkst-text-main, #3D3730);
}

.lkst-step-content {
	margin: 0;
	color: var(--lkst-text-muted, #8A8478);
	font-size: 0.95em;
	line-height: 1.6;
}

.lkst-step-content p:last-child {
	margin-bottom: 0;
}

/* Editor chrome */
.lkst-steps--editor .lkst-step-editor-row {
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 12px;
	margin-bottom: 10px;
	background: #fafafa;
}

.lkst-steps--editor .lkst-step-editor-header {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 8px;
}

.lkst-steps--editor .lkst-step-num {
	background: var(--lkst-primary-color, #E8A020);
	color: var(--lkst-primary-contrast, #0F1A2E);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 13px;
	flex-shrink: 0;
}


/* =============================================================================
   Testimonial  (.lkst-testimonial)
   ============================================================================= */

.lkst-testimonial {
	margin: 2em 0;
	padding: 1.5em;
	border-radius: 6px;
}

.lkst-testimonial--card {
	border: 1px solid var(--lkst-border-light, rgba(15, 26, 46, 0.1));
	background: #fff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.lkst-testimonial--minimal {
	padding: 0.5em 0;
	border: none;
}

.lkst-testimonial--highlight {
	border: none;
	border-left: 4px solid var(--lkst-primary-color, #E8A020);
	background: rgba(232, 160, 32, 0.04);
}

.lkst-testimonial-avatar {
	margin-bottom: 1em;
}

.lkst-testimonial-avatar img {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
}

.lkst-testimonial-quote {
	margin: 0 0 1em;
	padding: 0;
}

.lkst-testimonial-quote p {
	font-size: 1.05em;
	line-height: 1.65;
	font-style: italic;
	color: var(--lkst-text-main, #3D3730);
	margin: 0;
}

.lkst-testimonial-byline {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.lkst-testimonial-name {
	font-weight: 700;
	font-size: 0.95em;
	color: var(--lkst-text-main, #3D3730);
}

.lkst-testimonial-role {
	font-size: 0.85em;
	color: var(--lkst-text-muted, #8A8478);
}


/* =============================================================================
   Stat Callout  (.lkst-stat-callout)
   ============================================================================= */

.lkst-stat-callout {
	margin: 2em 0;
	padding: 1.5em;
}

.lkst-stat-callout--centered {
	text-align: center;
}

.lkst-stat-callout--left {
	text-align: left;
}

.lkst-stat-callout--boxed {
	text-align: center;
	background: var(--lkst-bg-light, #F5F0E8);
	border-radius: 8px;
	border: 1px solid var(--lkst-border-light, rgba(15, 26, 46, 0.1));
}

.lkst-stat-number {
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 900;
	line-height: 1;
	color: var(--lkst-primary-color, #E8A020);
	letter-spacing: -0.02em;
}

.lkst-stat-label {
	font-size: 1.05em;
	font-weight: 600;
	color: var(--lkst-text-main, #3D3730);
	margin-top: 0.3em;
}

.lkst-stat-desc {
	font-size: 0.9em;
	color: var(--lkst-text-muted, #8A8478);
	margin: 0.5em 0 0;
	line-height: 1.5;
}

.lkst-stat-source {
	font-size: 0.8em;
	color: var(--lkst-text-muted, #8A8478);
	margin: 0.5em 0 0;
}

.lkst-stat-source a {
	color: inherit;
	text-decoration: underline;
}


/* =============================================================================
   Inline Product Mention  (.lkst-inline-product)
   ============================================================================= */

.lkst-inline-product {
	display: flex;
	align-items: center;
	gap: 1em;
	margin: 1.5em 0;
	padding: 1em 1.25em;
	border: 1px solid var(--lkst-border-light, rgba(15, 26, 46, 0.1));
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.lkst-inline-product-image {
	flex-shrink: 0;
}

.lkst-inline-product-image img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	border-radius: 4px;
}

.lkst-inline-product-body {
	flex: 1;
	min-width: 0;
}

.lkst-inline-product-name {
	font-weight: 700;
	font-size: 1em;
	color: var(--lkst-text-main, #3D3730);
	margin-bottom: 4px;
}

.lkst-inline-product-desc {
	font-size: 0.88em;
	color: var(--lkst-text-muted, #8A8478);
	line-height: 1.45;
}

.lkst-inline-product-cta {
	flex-shrink: 0;
}

.lkst-inline-product-btn {
	display: inline-block;
	padding: 0.5em 1.1em;
	background: var(--lkst-primary-color, #E8A020);
	color: var(--lkst-primary-contrast, #0F1A2E) !important;
	font-weight: 700;
	font-size: 0.88em;
	border-radius: 4px;
	text-decoration: none !important;
	white-space: nowrap;
	transition: opacity 0.18s ease;
}

.lkst-inline-product-btn:hover {
	opacity: 0.88;
	text-decoration: none !important;
}

@media (max-width: 560px) {
	.lkst-inline-product {
		flex-wrap: wrap;
	}
	.lkst-inline-product-cta {
		width: 100%;
	}
	.lkst-inline-product-btn {
		width: 100%;
		text-align: center;
	}
}

/* shared editor label */
.lkst-editor-label,
.lkst-steps-editor-label {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #757575;
	margin: 0 0 12px;
}
