/*
Theme Name: Lazarin Kroni GP Child
Theme URI: https://lazarinkroni.com
Description: Fast editable child theme for Lazarin Kroni, built on GeneratePress.
Author: Lazarin Kroni
Template: generatepress
Version: 1.0.0
Text Domain: lazarin-kroni
*/

:root {
  --lk-bg: #f6f8fb;
  --lk-card: #ffffff;
  --lk-ink: #0f172a;
  --lk-muted: #64748b;
  --lk-line: #e2e8f0;
  --lk-blue: #1d4ed8;
  --lk-blue-dark: #173a9a;
  --lk-cyan: #06b6d4;
  --lk-green: #16a34a;
  --lk-shadow: 0 20px 60px rgba(15, 23, 42, .10);
  --lk-radius: 22px;

  /* Editorial system (Lazarin Kroni V2) */
  --lked-bg: #eeece5;
  --lked-ink: #171713;
  --lked-line: #c9c6bc;
  --lked-acid: #d9ff43;
  --lked-violet: #6548ff;
  --lked-dark: #181814;
  --lked-paper: #f9f8f4;
  --lked-content-width: 1240px;
  --lked-gutter: clamp(20px, 3vw, 38px);
  --lked-font-display: "Archivo Narrow Variable", "Arial Narrow", "Helvetica Neue Condensed", sans-serif;
  --lked-font-body: "Instrument Sans Variable", Inter, ui-sans-serif, system-ui, sans-serif;
}

@font-face {
  font-family: "Archivo Narrow Variable";
  src: url("assets/fonts/archivo-narrow-variable.woff2") format("woff2-variations"),
       url("assets/fonts/archivo-narrow-variable.woff2") format("woff2");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans Variable";
  src: url("assets/fonts/instrument-sans-variable.woff2") format("woff2-variations"),
       url("assets/fonts/instrument-sans-variable.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

body.lk-blog {
  margin: 0;
  background: var(--lked-bg);
  color: var(--lked-ink);
  font-family: var(--lked-font-body);
}

body.lk-inner-page {
  margin: 0;
  background: var(--lked-bg);
  color: var(--lked-ink);
  font-family: var(--lked-font-body);
}

body.lk-inner-page h1,
body.lk-inner-page h2,
body.lk-inner-page h3,
body.lk-blog h1,
body.lk-blog h2,
body.lk-blog h3 {
  font-family: var(--lked-font-display);
}

/* ==========================================================================
   Editorial system — Lazarin Kroni V2
   ========================================================================== */

body.lk-home {
  background: var(--lked-bg);
  color: var(--lked-ink);
  font-family: var(--lked-font-body);
  font-size: 16px;
  line-height: 1.5;
}

.lked-page {
  overflow-x: hidden;
}

.lked-shell {
  width: min(100% - (var(--lked-gutter) * 2), var(--lked-content-width));
  margin-inline: auto;
}

.lked-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--lked-ink);
  color: var(--lked-paper);
  padding: 12px 18px;
  z-index: 100;
}

.lked-skip:focus {
  left: var(--lked-gutter);
  top: var(--lked-gutter);
}

.lked-page h1,
.lked-page h2,
.lked-page h3 {
  font-family: var(--lked-font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}

/* Header */

.lked-topbar {
  height: 4px;
  background: var(--lked-violet);
}

.lked-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--lked-line);
}

.lked-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lked-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--lked-font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--lked-ink);
  text-decoration: none;
  flex-shrink: 0;
}

.lked-wordmark__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lked-acid);
  display: inline-block;
}

.lked-header__right {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.lked-nav {
  display: flex;
}

.lked-menu {
  display: flex;
  gap: 28px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
}

.lked-menu a {
  color: var(--lked-ink);
  text-decoration: none;
}

.lked-menu a:hover {
  color: var(--lked-violet);
}

.lked-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lked-lang {
  display: inline-flex;
  border: 1px solid var(--lked-line);
  border-radius: 999px;
  overflow: hidden;
}

.lked-lang a {
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--lked-ink);
  opacity: 0.5;
  text-decoration: none;
}

.lked-lang a[aria-current="true"] {
  background: var(--lked-ink);
  color: var(--lked-paper);
  opacity: 1;
}

.lked-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Burger button — hidden on desktop, shown at tablet/mobile widths */

.lked-burger {
  -webkit-appearance: none;
  appearance: none;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 1px solid var(--lked-line);
  border-radius: 50%;
  background: transparent;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.lked-burger:hover {
  border-color: var(--lked-ink);
}

.lked-burger__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 18px;
}

.lked-burger__line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--lked-ink);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
}

.lked-burger[aria-expanded="true"] .lked-burger__box {
  gap: 0;
}

.lked-burger[aria-expanded="true"] .lked-burger__line:nth-child(1) {
  transform: translateY(1.5px) rotate(45deg);
}

.lked-burger[aria-expanded="true"] .lked-burger__line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.lked-burger[aria-expanded="true"] .lked-burger__line:nth-child(3) {
  transform: translateY(-1.5px) rotate(-45deg);
}

.lked-burger--close {
  border-color: rgba(249, 248, 244, 0.3);
}

.lked-burger--close:hover {
  border-color: var(--lked-paper);
}

.lked-burger--close .lked-burger__line {
  background: var(--lked-paper);
}

.lked-burger--close .lked-burger__box {
  gap: 0;
}

.lked-burger--close .lked-burger__line:nth-child(1) {
  transform: rotate(45deg);
}

.lked-burger--close .lked-burger__line:nth-child(2) {
  transform: rotate(-45deg) translateY(0);
  margin-top: -1.5px;
}

/* Mobile nav overlay panel */

.lked-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--lked-dark);
  color: var(--lked-paper);
  display: flex;
  flex-direction: column;
  padding: 20px var(--lked-gutter) clamp(24px, 6vw, 40px);
  overflow-y: auto;
}

.lked-mobile-nav[hidden] {
  display: none;
}

.lked-mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: clamp(24px, 6vw, 40px);
}

.lked-wordmark--on-dark {
  color: var(--lked-paper);
}

.lked-mobile-nav__list {
  flex: 1;
}

.lked-mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lked-mobile-menu li {
  border-bottom: 1px solid rgba(249, 248, 244, 0.16);
}

.lked-mobile-menu li:first-child {
  border-top: 1px solid rgba(249, 248, 244, 0.16);
}

.lked-mobile-menu a {
  display: block;
  padding: 20px 0;
  font-family: var(--lked-font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  color: var(--lked-paper);
  text-decoration: none;
}

.lked-mobile-menu a:hover {
  color: var(--lked-acid);
}

.lked-mobile-nav__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: clamp(24px, 6vw, 40px);
  flex-wrap: wrap;
}

.lked-mobile-nav__bottom .lked-lang {
  border-color: rgba(249, 248, 244, 0.3);
}

.lked-mobile-nav__bottom .lked-lang a {
  color: var(--lked-paper);
}

.lked-mobile-nav__bottom .lked-lang a[aria-current="true"] {
  background: var(--lked-paper);
  color: var(--lked-ink);
}

.lked-btn.lked-btn--on-dark {
  border-color: var(--lked-paper);
  color: var(--lked-paper);
}

.lked-btn.lked-btn--on-dark:hover {
  background: var(--lked-paper);
  color: var(--lked-ink);
}

body.lked-nav-open {
  overflow: hidden;
}

.lked-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lked-font-body);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: 0;
}

.lked-btn--outline {
  background: transparent;
  color: var(--lked-ink);
  border: 1px solid var(--lked-ink);
  padding: 9px 16px;
  border-radius: 999px;
}

.lked-btn--outline:hover {
  background: var(--lked-ink);
  color: var(--lked-paper);
}

.lked-btn--dark {
  background: var(--lked-ink);
  color: var(--lked-paper);
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 15px;
}

.lked-btn--dark:hover {
  background: var(--lked-violet);
}

/* Hero */

.lked-hero {
  padding-top: clamp(24px, 4vw, 48px);
}

.lked-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .85fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.lked-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lked-ink);
  margin: 0 0 14px;
}

.lked-eyebrow__rule {
  width: 22px;
  height: 1px;
  background: var(--lked-ink);
  display: inline-block;
}

.lked-hero__title {
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.92;
  margin-bottom: 28px;
}

.lked-hero__title span {
  display: block;
}

.lked-accent-violet {
  color: var(--lked-violet);
}

.lked-hero__foot {
  display: grid;
  grid-template-columns: minmax(140px, .32fr) minmax(0, .68fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  border-top: 1px solid var(--lked-line);
  padding-top: 18px;
}

.lked-hero__side-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lked-ink);
  margin: 0;
}

.lked-hero__intro {
  font-size: 15px;
  color: var(--lked-ink);
  margin: 0;
  max-width: 46ch;
}

.lked-portrait__frame {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--lked-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lked-portrait__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lked-portrait__accent {
  position: absolute;
  top: -34px;
  right: -34px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--lked-acid);
}

.lked-portrait__label {
  color: rgba(249, 248, 244, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lked-portrait__caption {
  font-size: 11px;
  color: var(--lked-ink);
  opacity: 0.6;
  margin: 10px 0 0;
}

/* Ticker */

.lked-ticker {
  border-top: 1px solid var(--lked-line);
  border-bottom: 1px solid var(--lked-line);
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.lked-ticker__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 14px 0;
}

.lked-ticker__item {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-left: 20px;
}

.lked-ticker__item:first-child {
  padding-left: 0;
}

.lked-ticker__item::before {
  content: "◆";
  position: absolute;
  left: 0;
  font-size: 8px;
  color: var(--lked-violet);
}

.lked-ticker__item:first-child::before {
  content: none;
}

/* Sections shared */

.lked-section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.lked-section--dark {
  background: var(--lked-dark);
  color: var(--lked-paper);
}

.lked-section--dark .lked-index,
.lked-section--dark .lked-lede {
  color: rgba(249, 248, 244, 0.6);
}

.lked-index {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lked-ink);
  margin: 0;
}

.lked-split-head {
  display: grid;
  grid-template-columns: minmax(140px, .28fr) minmax(0, .72fr);
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.lked-split-head__body h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

.lked-lede {
  font-family: var(--lked-font-body);
  font-weight: 400;
  text-transform: none;
  font-size: 15px;
  max-width: 60ch;
  margin: 0;
  color: var(--lked-ink);
}

/* Position cards */

.lked-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--lked-line);
}

.lked-card {
  padding: 28px 24px;
  border-right: 1px solid var(--lked-line);
  border-bottom: 1px solid var(--lked-line);
}

.lked-card:last-child {
  border-right: 0;
}

.lked-card.is-accent {
  background: var(--lked-acid);
  border-color: var(--lked-acid);
}

.lked-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin: 0 0 10px;
}

.lked-card h3 {
  font-size: 19px;
  text-transform: none;
  margin-bottom: 10px;
}

.lked-card p:not(.lked-card__label) {
  font-family: var(--lked-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Work list */

.lked-worklist {
  border-top: 1px solid rgba(249, 248, 244, 0.16);
}

.lked-worklist__row {
  display: grid;
  grid-template-columns: 56px minmax(160px, .32fr) minmax(0, .68fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid rgba(249, 248, 244, 0.16);
}

.lked-worklist__number {
  font-family: var(--lked-font-display);
  font-weight: 700;
  color: var(--lked-acid);
  font-size: 14px;
}

.lked-worklist__row h3 {
  font-size: 20px;
  text-transform: none;
}

.lked-worklist__row p {
  font-family: var(--lked-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(249, 248, 244, 0.72);
  margin: 0;
}

/* Statement */

.lked-statement {
  background: var(--lked-violet);
  color: var(--lked-paper);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.lked-statement blockquote {
  margin: 0 0 28px;
}

.lked-statement p {
  font-family: var(--lked-font-display);
  font-weight: 700;
  text-transform: none;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.15;
  max-width: 20ch;
  margin: 0;
}

.lked-statement__byline {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

/* Method */

.lked-method__grid {
  display: grid;
  grid-template-columns: minmax(0, .38fr) minmax(0, .62fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.lked-method h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 0.98;
}

.lked-steps__row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 6px 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--lked-line);
}

.lked-steps__row:first-child {
  border-top: 1px solid var(--lked-line);
}

.lked-steps__number {
  font-family: var(--lked-font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--lked-ink);
  opacity: 0.5;
}

.lked-steps__row h3 {
  font-size: 17px;
  text-transform: none;
  grid-column: 2;
}

.lked-steps__row p {
  font-family: var(--lked-font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--lked-ink);
  opacity: 0.75;
  grid-column: 2;
  margin: 0;
}

/* Final CTA */

.lked-final-cta {
  background: var(--lked-acid);
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.lked-final-cta__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.lked-final-cta h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  line-height: 1.05;
  max-width: 14ch;
}

/* Footer */

.lked-footer {
  background: var(--lked-dark);
  color: rgba(249, 248, 244, 0.6);
  padding: 20px 0;
  font-size: 12px;
}

.lked-footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.lked-footer a {
  color: rgba(249, 248, 244, 0.6);
  text-decoration: none;
}

.lked-footer nav {
  display: flex;
  gap: 18px;
}

.lked-footer a:hover {
  color: var(--lked-paper);
}

/* Responsive */

@media (max-width: 900px) {
  .lked-hero__grid {
    grid-template-columns: 1fr;
  }

  .lked-hero__foot {
    grid-template-columns: 1fr;
  }

  .lked-portrait {
    order: -1;
    max-width: 320px;
  }

  .lked-split-head {
    grid-template-columns: 1fr;
  }

  .lked-cards {
    grid-template-columns: 1fr;
  }

  .lked-card {
    border-right: 0;
  }

  .lked-worklist__row {
    grid-template-columns: 1fr;
  }

  .lked-method__grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 1024px) {
  .lked-header__right {
    display: none;
  }

  .lked-burger {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .lked-final-cta__row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Editorial system — shared inner pages (blog, single, page, archive)
   ========================================================================== */

.lked-masthead {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 5vw, 3rem);
}

.lked-masthead h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1;
  margin: 10px 0 14px;
}

.lked-masthead .lked-lede {
  max-width: 60ch;
}

/* Post grid + cards */

.lked-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.lked-post-card {
  display: flex;
  flex-direction: column;
}

.lked-post-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--lked-dark);
  margin-bottom: 16px;
}

.lked-post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lked-post-card__meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
  margin: 0 0 8px;
}

.lked-post-card h2 {
  font-size: 20px;
  text-transform: none;
  margin-bottom: 10px;
}

.lked-post-card h2 a {
  color: var(--lked-ink);
  text-decoration: none;
}

.lked-post-card h2 a:hover {
  color: var(--lked-violet);
}

.lked-post-card p {
  font-family: var(--lked-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 12px;
}

.lked-post-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--lked-ink);
  text-decoration: none;
  margin-top: auto;
}

.lked-post-card__link:hover {
  color: var(--lked-violet);
}

.lked-empty {
  font-size: 15px;
  opacity: 0.7;
  padding-bottom: 4rem;
}

/* Pagination */

.lked-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.lked-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--lked-line);
  color: var(--lked-ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.lked-pagination .page-numbers.current {
  background: var(--lked-ink);
  border-color: var(--lked-ink);
  color: var(--lked-paper);
}

.lked-pagination .page-numbers:hover:not(.current) {
  border-color: var(--lked-ink);
}

/* Single article */

.lked-article__header {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 4vw, 2.5rem);
}

.lked-article__back {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--lked-ink);
  opacity: 0.65;
  text-decoration: none;
  margin-bottom: 18px;
}

.lked-article__back:hover {
  opacity: 1;
}

.lked-article__header h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1;
  margin: 10px 0 14px;
  max-width: 22ch;
}

.lked-article__media {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.lked-article__media img {
  width: 100%;
  height: auto;
  display: block;
}

.lked-article__content {
  max-width: 760px;
  font-family: var(--lked-font-body);
  font-size: 17px;
  line-height: 1.7;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.lked-article__content > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.lked-article__content h2,
.lked-article__content h3 {
  text-transform: none;
  margin: 1.6em 0 0.6em;
}

.lked-article__content p,
.lked-article__content ul,
.lked-article__content ol {
  margin: 0 0 1.2em;
}

.lked-article__content img {
  max-width: 100%;
  height: auto;
}

.lked-article__content blockquote {
  border-left: 3px solid var(--lked-violet);
  padding-left: 1.2em;
  font-style: italic;
  margin: 1.6em 0;
}

.lked-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--lked-line);
  font-size: 14px;
  font-weight: 600;
}

.lked-post-nav a {
  color: var(--lked-ink);
  text-decoration: none;
}

.lked-post-nav a:hover {
  color: var(--lked-violet);
}

/* Generic inner page */

.lked-inner__content {
  max-width: 760px;
  font-family: var(--lked-font-body);
  font-size: 17px;
  line-height: 1.7;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.lked-inner__content h2,
.lked-inner__content h3 {
  text-transform: none;
  margin: 1.6em 0 0.6em;
}

.lked-inner__content p,
.lked-inner__content ul,
.lked-inner__content ol {
  margin: 0 0 1.2em;
}

.lked-inner__content img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .lked-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lked-post-grid {
    grid-template-columns: 1fr;
  }

  .lked-post-nav {
    flex-direction: column;
    gap: 10px;
  }

  .lked-footer__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .lked-footer nav {
    flex-wrap: wrap;
    gap: 6px 16px;
  }
}

/* ==========================================================================
   Editorial system — ERP page (and any future long-form offer page)
   ========================================================================== */

.lked-erp-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.98;
  margin: 14px 0 20px;
}

.lked-section > .lked-shell > .lked-lede {
  margin-bottom: 28px;
}

.lked-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.05;
  margin-bottom: 14px;
  max-width: 20ch;
}

/* Video placeholder */

.lked-video {
  aspect-ratio: 16 / 9;
  background: var(--lked-dark);
  color: var(--lked-paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  margin: 28px 0;
  padding: 20px;
}

.lked-video strong {
  font-family: var(--lked-font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.lked-video span {
  font-size: 12px;
  opacity: 0.6;
}

.lked-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Stat row */

.lked-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--lked-line);
  padding-top: 24px;
  margin-top: 28px;
}

.lked-section--dark .lked-stat-row {
  border-top-color: rgba(249, 248, 244, 0.16);
}

.lked-stat__number {
  font-family: var(--lked-font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 6px;
}

.lked-stat__number.is-violet {
  color: var(--lked-violet);
}

.lked-stat__number.is-ink {
  color: var(--lked-ink);
}

.lked-section--dark .lked-stat__number.is-ink {
  color: var(--lked-paper);
}

.lked-stat p:not(.lked-stat__number) {
  font-family: var(--lked-font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.75;
}

/* Cards — column-count variants (reuses .lked-card from the homepage system) */

.lked-cards--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lked-cards--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lked-section--dark .lked-cards {
  border-top-color: rgba(249, 248, 244, 0.16);
}

.lked-section--dark .lked-card {
  border-color: rgba(249, 248, 244, 0.16);
}

.lked-section--dark .lked-card p {
  opacity: 0.75;
}

/* Step badges (horizontal, for a short numbered sequence within a paragraph flow) */

.lked-step-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.lked-step-badge {
  border: 1px solid var(--lked-line);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lked-step-badge strong {
  font-family: var(--lked-font-display);
  font-size: 13px;
}

.lked-step-badge span {
  font-family: var(--lked-font-body);
  font-size: 13px;
  opacity: 0.7;
}

.lked-step-badge.is-active {
  border-color: var(--lked-violet);
  background: rgba(101, 72, 255, 0.06);
}

/* Statement block extended (heading + paragraph before the quote) */

.lked-statement__lead {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  max-width: 24ch;
  margin-bottom: 14px;
}

.lked-statement__text {
  font-family: var(--lked-font-body);
  font-weight: 400;
  text-transform: none;
  font-size: 15px;
  max-width: 60ch;
  opacity: 0.85;
  margin-bottom: 28px;
}

/* Final CTA muted line */

.lked-final-cta__muted {
  font-size: 15px;
  max-width: 60ch;
  margin: 12px 0 24px;
}

/* Contact + newsletter panels */

.lked-erp-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.lked-form-panel,
.lked-newsletter-panel {
  border: 1px solid var(--lked-line);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.lked-newsletter-panel {
  background: var(--lked-dark);
  color: var(--lked-paper);
  border-color: transparent;
}

.lked-newsletter-panel h3 {
  font-size: 18px;
  text-transform: none;
  margin-bottom: 10px;
}

.lked-newsletter-panel p {
  font-family: var(--lked-font-body);
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 16px;
}

.lked-newsletter-panel small {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  opacity: 0.55;
}

@media (max-width: 900px) {
  .lked-cards--2,
  .lked-cards--3 {
    grid-template-columns: 1fr;
  }

  .lked-step-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lked-stat-row {
    grid-template-columns: 1fr;
  }

  .lked-erp-contact-grid {
    grid-template-columns: 1fr;
  }
}
