/* Signe Agency — Journal styles
   Tokens: #111111 black | #FFFFFF white | #E05C38 orange | #1B6CB8 blue | #F5F4F0 cream
   Fonts: Barlow Condensed 900 (headlines) | Cormorant Garamond 300 italic (accents)
   No radius. No shadows. No gradients. */

/* ── Journal header ── */
.sa-journal-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
}
.sa-journal-header__logo img { height: 28px; display: block; }
.sa-journal-header__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.6);
  text-decoration: none;
}

/* ── Journal index ── */
.sa-journal-page { max-width: 860px; margin: 0 auto; padding: 0 24px 96px; }

.sa-journal-title-block { padding: 72px 0 48px; border-bottom: 1px solid #111; margin-bottom: 0; }
.sa-journal-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E05C38;
  margin-bottom: 20px;
}
.sa-journal-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 20px;
}
.sa-journal-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 21px;
  color: #E05C38;
  margin: 0;
}

/* ── Post row ── */
.sa-post-row {
  border-bottom: 1px solid #111;
  padding: 40px 0;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.sa-post-row:hover .sa-hero-card { opacity: 0.92; }

/* ── Hero card (60/40 black panel / photo) ── */
.sa-hero-card {
  display: flex;
  height: 260px;
  border: 1px solid #111;
  overflow: hidden;
  transition: opacity 0.15s;
}
.sa-hero-card--article { height: 400px; }

.sa-hero-panel {
  flex: 0 0 60%;
  background: #111;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 28px;
  position: relative;
}
.sa-hero-photo {
  flex: 0 0 40%;
  position: relative;
}
.sa-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.sa-orange-rule {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #E05C38;
  z-index: 1;
}

.sa-card-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E05C38;
  margin: 0 0 8px;
}
.sa-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 10px;
}
.sa-card-byline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.sa-post-excerpt {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  color: rgba(17,17,17,0.6);
  margin: 16px 0 8px;
  line-height: 1.5;
}
.sa-post-read {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #111;
}
.sa-post-read:hover { color: #E05C38; }

/* ── Article page ── */
.sa-article-page { max-width: 740px; margin: 0 auto; padding: 0 24px 96px; }

.sa-back-link {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.6);
  text-decoration: none;
  margin: 32px 0 24px;
}
.sa-back-link:hover { color: #111; }

.sa-article-deck {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: rgba(17,17,17,0.7);
  margin: 24px 0 32px;
}

/* Takeaways panel */
.sa-takeaways {
  background: #F5F4F0;
  border: 1px solid #111;
  padding: 32px;
  margin: 0 0 40px;
}
.sa-takeaways__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E05C38;
  margin: 0 0 16px;
}
.sa-takeaways ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sa-takeaways ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  margin-bottom: 12px;
}
.sa-takeaways ul li:last-child { margin-bottom: 0; }
.sa-takeaways ul li::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  background: #E05C38;
  margin-top: 7px;
}

/* Article body */
.sa-article-body { font-size: 17px; line-height: 1.7; color: #111; }
.sa-article-body p { margin: 0 0 24px; }
.sa-article-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #111;
  margin: 48px 0 20px;
}

/* Callout / citation capsule */
.sa-callout {
  border-left: 3px solid #1B6CB8;
  background: #F5F4F0;
  padding: 20px 24px;
  margin: 32px 0;
}
.sa-callout__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1B6CB8;
  margin: 0 0 8px;
}
.sa-callout p { font-size: 16px; line-height: 1.6; margin: 0; color: #111; }

/* FAQ */
.sa-faq { margin: 48px 0; }
.sa-faq h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #111;
  margin: 0 0 24px;
}
.sa-faq-item {
  border-top: 1px solid rgba(17,17,17,0.12);
  padding: 20px 0;
}
.sa-faq-item:last-child { border-bottom: 1px solid rgba(17,17,17,0.12); }
.sa-faq-q { font-size: 17px; font-weight: 700; color: #111; margin: 0 0 8px; }
.sa-faq-a { font-size: 15px; line-height: 1.7; color: rgba(17,17,17,0.65); margin: 0; }

/* Conclusion + CTA */
.sa-conclusion { font-size: 17px; line-height: 1.7; color: #111; margin: 40px 0; }
.sa-cta-block {
  background: #111;
  padding: 40px;
  margin: 48px 0 0;
}
.sa-cta-block p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 24px;
}
.sa-cta-block a {
  display: inline-block;
  background: #E05C38;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
}
.sa-cta-block a:hover { background: #C04A28; }

/* ── Inline figures ── */
.sa-figure { margin: 40px 0; }

/* Compare panels */
.sa-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #111;
}
.sa-compare-before {
  background: #F5F4F0;
  padding: 24px;
  border-right: 1px solid rgba(17,17,17,0.12);
}
.sa-compare-after {
  background: #fff;
  padding: 24px;
  border-left: 3px solid #1B6CB8;
}
.sa-compare-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.sa-compare-before .sa-compare-label { color: rgba(17,17,17,0.5); }
.sa-compare-after .sa-compare-label { color: #1B6CB8; }
.sa-compare-text { font-size: 15px; line-height: 1.6; color: #111; margin: 0; }
.sa-compare-before .sa-compare-text { color: rgba(17,17,17,0.6); }

/* Wireframe zones */
.sa-wireframe { border: 1px solid rgba(17,17,17,0.12); }
.sa-wireframe-row {
  display: grid;
  grid-template-columns: 120px 1fr 160px;
  border-bottom: 1px solid rgba(17,17,17,0.12);
  min-height: 72px;
}
.sa-wireframe-row:last-child { border-bottom: 0; }
.sa-wireframe-label-col {
  display: flex;
  align-items: center;
  padding: 16px;
  border-right: 1px solid rgba(17,17,17,0.12);
}
.sa-wireframe-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: horizontal-tb;
}
.sa-wireframe-label--orange { color: #E05C38; }
.sa-wireframe-label--blue { color: #1B6CB8; }
.sa-wireframe-label--black { color: #111; }
.sa-wireframe-content-col {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid rgba(17,17,17,0.12);
}
.sa-wire-line {
  height: 8px;
  background: rgba(17,17,17,0.12);
  border-radius: 0;
}
.sa-wire-line--short { width: 60%; }
.sa-wireframe-note-col {
  display: flex;
  align-items: center;
  padding: 16px;
}
.sa-wireframe-note {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 13px;
  color: rgba(17,17,17,0.6);
  margin: 0;
}
.sa-wireframe-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: #E05C38;
  margin: 12px 0 0;
  text-align: center;
}

/* SERP mockup */
.sa-serp {
  border: 1px solid rgba(17,17,17,0.12);
  padding: 24px;
  background: #fff;
}
.sa-serp-bar {
  background: #f5f5f5;
  border: 1px solid rgba(17,17,17,0.12);
  padding: 10px 16px;
  font-size: 14px;
  color: #111;
  margin-bottom: 20px;
  font-family: sans-serif;
}
.sa-serp-result {
  padding: 14px 0;
  border-bottom: 1px solid rgba(17,17,17,0.08);
  opacity: 0.5;
}
.sa-serp-result--winner {
  opacity: 1;
  border-left: 3px solid #1B6CB8;
  padding-left: 16px;
  margin-left: -19px;
  position: relative;
}
.sa-serp-result:last-child { border-bottom: 0; }
.sa-serp-tag {
  display: inline-block;
  background: #1B6CB8;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 8px;
  margin-bottom: 4px;
}
.sa-serp-title { font-size: 16px; color: #1a0dab; margin: 0 0 2px; font-family: sans-serif; }
.sa-serp-url { font-size: 12px; color: #006621; margin: 0 0 4px; font-family: sans-serif; }
.sa-serp-snippet { font-size: 13px; color: #545454; margin: 0; font-family: sans-serif; line-height: 1.5; }

/* Funnel */
.sa-funnel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 32px 0;
}
.sa-funnel-row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 560px;
  justify-content: center;
  position: relative;
}
.sa-funnel-bar {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}
.sa-funnel-bar--1 { width: 100%; background: #ccc; }
.sa-funnel-bar--2 { width: 78%; background: #1B6CB8; color: #fff; }
.sa-funnel-bar--3 { width: 56%; background: #E05C38; color: #fff; position: relative; }
.sa-funnel-bar--4 { width: 34%; background: #111; color: #fff; }
.sa-funnel-drop-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E05C38;
  white-space: nowrap;
  margin-left: 8px;
  position: absolute;
  right: -120px;
}
.sa-funnel-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(17,17,17,0.6);
  text-align: center;
  margin-top: 12px;
}

/* Checklist */
.sa-checklist {
  background: #fff;
  border: 1px solid rgba(17,17,17,0.12);
  padding: 28px 32px;
}
.sa-checklist__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 4px;
}
.sa-checklist__subtitle {
  font-size: 13px;
  color: rgba(17,17,17,0.5);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin: 0 0 20px;
}
.sa-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}
.sa-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #111;
}
.sa-check-box {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sa-check-box--on { background: #1B6CB8; color: #fff; font-size: 11px; }
.sa-check-box--off { border: 2px solid #E05C38; }

/* LinkedIn header mockup */
.sa-linkedin-mockup {
  border: 1px solid rgba(17,17,17,0.12);
  overflow: hidden;
}
.sa-linkedin-banner {
  background: #0A1628;
  height: 80px;
}
.sa-linkedin-profile-row {
  background: #fff;
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(17,17,17,0.08);
}
.sa-linkedin-name { font-size: 18px; font-weight: 700; color: #111; margin: 0 0 2px; font-family: sans-serif; }
.sa-linkedin-headline-good { font-size: 14px; color: #111; margin: 0 0 6px; font-family: sans-serif; }
.sa-linkedin-annotation {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 8px;
}
.sa-linkedin-annotation--blue { background: rgba(27,108,184,0.1); color: #1B6CB8; border-left: 2px solid #1B6CB8; }
.sa-linkedin-annotation--orange { background: rgba(224,92,56,0.1); color: #E05C38; border-left: 2px solid #E05C38; }
.sa-linkedin-divider { border: 0; border-top: 1px solid rgba(17,17,17,0.08); margin: 8px 0; }
.sa-linkedin-headline-bad { font-size: 14px; color: rgba(17,17,17,0.4); margin: 0; font-family: sans-serif; }

/* Before/After cards */
.sa-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid rgba(17,17,17,0.12);
  gap: 1px;
  background: rgba(17,17,17,0.12);
}
.sa-ba-card { background: #fff; }
.sa-ba-before {
  background: #F5F4F0;
  padding: 16px;
  border-bottom: 1px solid rgba(17,17,17,0.12);
  font-size: 14px;
  color: rgba(17,17,17,0.6);
}
.sa-ba-before-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.4);
  margin-bottom: 6px;
}
.sa-ba-after {
  padding: 16px;
  border-left: 3px solid #1B6CB8;
  font-size: 14px;
  color: #111;
}
.sa-ba-after-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1B6CB8;
  margin-bottom: 6px;
}

/* Annotated arrows figure */
.sa-annotated-site {
  border: 1px solid rgba(17,17,17,0.12);
  background: #fff;
  overflow: hidden;
}
.sa-ann-nav {
  background: #f5f5f5;
  padding: 10px 20px;
  font-size: 12px;
  color: rgba(17,17,17,0.5);
  font-family: sans-serif;
  border-bottom: 1px solid rgba(17,17,17,0.08);
}
.sa-ann-body {
  padding: 24px 20px 20px;
}
.sa-ann-headline {
  font-family: Georgia, serif;
  font-size: 22px;
  color: #222;
  margin: 0 0 6px;
}
.sa-ann-sub {
  font-family: sans-serif;
  font-size: 14px;
  color: #888;
  margin: 0 0 20px;
}
.sa-ann-chips { display: flex; flex-direction: column; gap: 8px; }
.sa-ann-chip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-left: 3px solid #E05C38;
  padding: 8px 12px;
  background: rgba(224,92,56,0.06);
  font-size: 13px;
  color: #111;
  font-family: sans-serif;
}
.sa-ann-chip::before { content: '↑'; color: #E05C38; font-weight: 700; flex-shrink: 0; }

/* Worksheet split */
.sa-worksheet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(17,17,17,0.12);
}
.sa-ws-left {
  background: #F5F4F0;
  padding: 24px;
  border-right: 1px solid rgba(17,17,17,0.12);
}
.sa-ws-right { background: #fff; padding: 24px; }
.sa-ws-col-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.sa-ws-left .sa-ws-col-label { color: rgba(17,17,17,0.5); }
.sa-ws-right .sa-ws-col-label { color: #111; }
.sa-ws-line { margin-bottom: 16px; }
.sa-ws-label { font-size: 12px; color: rgba(17,17,17,0.5); margin-bottom: 4px; }
.sa-ws-blank {
  border-bottom: 1px dashed rgba(17,17,17,0.3);
  height: 20px;
}
.sa-ws-filled {
  border-bottom: 1px solid rgba(17,17,17,0.2);
  height: 20px;
  font-size: 13px;
  color: #111;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2px;
}

/* Journey compare (ai-search-journey) */
.sa-journey {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #111;
}
.sa-journey-left {
  background: #F5F4F0;
  padding: 28px;
  border-right: 3px solid #1B6CB8;
}
.sa-journey-right {
  background: #fff;
  padding: 28px;
}
.sa-journey-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.sa-journey-left .sa-journey-label { color: rgba(17,17,17,0.6); }
.sa-journey-right .sa-journey-label { color: #1B6CB8; }
.sa-journey-step {
  font-size: 14px;
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(17,17,17,0.2);
  color: rgba(17,17,17,0.55);
}
.sa-journey-right .sa-journey-step {
  border-bottom: 1px solid rgba(17,17,17,0.1);
  color: #111;
}
.sa-journey-right .sa-journey-step:last-child { font-weight: 700; }

/* LinkedIn impact compare */
.sa-linkedin-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #111;
}
.sa-lc-left {
  background: #F5F4F0;
  padding: 24px;
  border-right: 1px solid rgba(17,17,17,0.12);
  opacity: 0.7;
}
.sa-lc-right {
  background: #fff;
  padding: 24px;
  border-left: 3px solid #1B6CB8;
}
.sa-lc-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.sa-lc-left .sa-lc-label { color: #E05C38; }
.sa-lc-right .sa-lc-label { color: #1B6CB8; }
.sa-lc-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.sa-lc-avatar {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.sa-lc-left .sa-lc-avatar { background: rgba(17,17,17,0.15); }
.sa-lc-right .sa-lc-avatar { background: #111; }
.sa-lc-name { font-size: 13px; color: rgba(17,17,17,0.5); }
.sa-lc-right .sa-lc-name { font-size: 13px; font-weight: 700; color: #111; }
.sa-lc-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(17,17,17,0.5);
  margin: 0 0 14px;
}
.sa-lc-right .sa-lc-text { color: #111; }
.sa-lc-stats { font-size: 11px; color: rgba(17,17,17,0.4); }
.sa-lc-right .sa-lc-stats { font-size: 11px; font-weight: 700; color: #111; }

/* Post grid 2-column */
.sa-post-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid #111;
}
.sa-post-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 32px 0;
  border-bottom: 1px solid #111;
  cursor: pointer;
}
.sa-post-card:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid #111;
}
.sa-post-card:nth-child(even) {
  padding-left: 32px;
}
.sa-post-card:hover .sa-hero-card { opacity: 0.92; }
.sa-card-title--grid { font-size: 22px !important; line-height: 1.05 !important; }

/* Responsive */
@media (max-width: 640px) {
  .sa-journal-header { padding: 0 16px; }
  .sa-journal-page, .sa-article-page { padding: 0 16px 64px; }
  .sa-hero-card { height: 200px; flex-direction: column; }
  .sa-hero-card--article { height: auto; flex-direction: column; }
  .sa-hero-panel { flex: none; min-height: 140px; }
  .sa-hero-photo { flex: none; height: 160px; }
  .sa-post-grid { grid-template-columns: 1fr; }
  .sa-post-card:nth-child(odd) { padding-right: 0; border-right: 0; }
  .sa-post-card:nth-child(even) { padding-left: 0; }
  .sa-compare, .sa-checklist-grid, .sa-before-after { grid-template-columns: 1fr; }
  .sa-wireframe-row { grid-template-columns: 80px 1fr; }
  .sa-wireframe-note-col { display: none; }
  .sa-funnel-drop-label { display: none; }
}

/* ═══════════════════════════════════
   FEATURED HERO
═══════════════════════════════════ */

.sa-featured-hero {
  display: flex;
  min-height: 420px;
  background: #111;
  overflow: hidden;
}
.sa-featured-panel {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 52px 52px;
  position: relative;
  z-index: 1;
}
.sa-featured-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #E05C38;
  border: 1px solid #E05C38;
  display: inline-block;
  padding: 5px 12px;
  margin: 0 0 20px;
  width: fit-content;
}
.sa-featured-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.97;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
}
.sa-featured-title a {
  color: inherit;
  text-decoration: none;
}
.sa-featured-title a:hover { color: #E05C38; }
.sa-featured-excerpt {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin: 0 0 28px;
  max-width: 480px;
}
.sa-featured-btn {
  display: inline-block;
  background: #E05C38;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.15s;
}
.sa-featured-btn:hover { background: #C04A28; }
.sa-featured-photo {
  flex: 0 0 45%;
  position: relative;
  border-left: 3px solid #E05C38;
}
.sa-featured-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ═══════════════════════════════════
   MARQUEE
═══════════════════════════════════ */

.sa-marquee {
  background: #E05C38;
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.sa-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: sa-scroll 32s linear infinite;
}
.sa-marquee-track:hover { animation-play-state: paused; }
.sa-marquee-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  padding-right: 0;
  flex-shrink: 0;
}
@keyframes sa-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Read the Latest label */
.sa-journal-read-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.45);
  margin: 40px 0 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(17,17,17,0.12);
}

/* ═══════════════════════════════════
   FULL-WIDTH LAYOUT + 3-COL GRID + SIDEBAR
═══════════════════════════════════ */

.sa-journal-outer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 96px;
}
.sa-journal-outer .sa-journal-title-block {
  padding: 72px 0 48px;
  border-bottom: 1px solid #111;
  margin-bottom: 0;
}

/* Main content + sticky sidebar — journal index */
.sa-journal-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
  padding-top: 48px;
}
/* Main content + sticky sidebar — single post */
.sa-article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
  margin-top: 24px;
}
.sa-article-main {
  min-width: 0;
  max-width: 740px;
}

/* ── 3-column post grid ── */
.sa-post-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid #111;
  border-left: 1px solid #111;
}
.sa-post-card-3 {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
  transition: background 0.15s;
}
.sa-post-card-3:hover { background: #F5F4F0; }
.sa-card-3-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: 1px solid #111;
  background: #111;
}
.sa-card-3-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}
.sa-post-card-3:hover .sa-card-3-image img { transform: scale(1.03); }
.sa-card-3-placeholder {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
}
.sa-card-3-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sa-card-3-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #111;
  margin: 6px 0 8px;
}
.sa-card-3-byline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.4);
  margin: 0 0 10px;
}
.sa-card-3-excerpt {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 15px;
  color: rgba(17,17,17,0.6);
  line-height: 1.5;
  margin: 0 0 16px;
  flex: 1;
}

/* ── Sticky sidebar ── */
.sa-journal-sidebar {
  position: sticky;
  top: 32px;
}
.sa-sidebar-audit {
  background: #111;
  padding: 32px 28px;
  border-top: 3px solid #E05C38;
}
.sa-sidebar-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #E05C38;
  margin: 0 0 14px;
}
.sa-sidebar-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 26px;
  line-height: 0.97;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.sa-sidebar-body {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin: 0 0 20px;
}
.sa-sidebar-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.sa-sidebar-list li {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sa-sidebar-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #E05C38;
  flex-shrink: 0;
}
.sa-sidebar-btn {
  display: block;
  background: #E05C38;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s;
}
.sa-sidebar-btn:hover { background: #C04A28; }
.sa-sidebar-note {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin: 12px 0 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .sa-post-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .sa-journal-layout { grid-template-columns: 1fr; }
  .sa-article-layout { grid-template-columns: 1fr; }
  .sa-journal-sidebar { position: static; }
  .sa-sidebar-audit { margin-top: 48px; }
  .sa-featured-panel { padding: 36px 32px 40px; }
}
@media (max-width: 768px) {
  .sa-featured-hero { flex-direction: column; min-height: auto; }
  .sa-featured-panel { flex: none; padding: 32px 24px 36px; }
  .sa-featured-photo { flex: none; height: 240px; border-left: none; border-top: 3px solid #E05C38; }
}
@media (max-width: 640px) {
  .sa-journal-outer { padding: 0 16px 64px; }
  .sa-post-grid-3 { grid-template-columns: 1fr; }
}


/* -- Category filter bar -- */
.sa-cat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 28px 0 0;
  border-bottom: 1px solid #111;
  margin-bottom: 0;
}
.sa-cat-pill {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(17,17,17,0.55);
  padding: 8px 16px;
  border: 1px solid rgba(17,17,17,0.2);
  transition: all 0.15s;
  margin-bottom: 12px;
}
.sa-cat-pill:hover { border-color: #111; color: #111; }
.sa-cat-pill--active {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* -- Pagination -- */
.sa-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 0;
  border-top: 1px solid #111;
  margin-top: 0;
}
.sa-pag-prev, .sa-pag-next {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #111;
  transition: color 0.15s;
}
.sa-pag-prev:hover, .sa-pag-next:hover { color: #E05C38; }
.sa-pag-disabled { color: rgba(17,17,17,0.25); cursor: default; }
.sa-pag-info {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.4);
}
.sa-journal-empty {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(17,17,17,0.5);
  padding: 48px 0;
}
