/* ============================================================
   STUPID GOOD AI — Ghost Theme Stylesheet
   Fonts: Oswald (→ swap for Foun), Plus Jakarta Sans (→ Open Sauce)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── CSS VARIABLES (dark default) ── */
:root {
  --green:      #00d191;
  --pink:       #f254fd;
  --yellow:     #ffd911;
  --black:      #0f0f0f;
  --surface:    #1a1a1a;
  --surface2:   #222222;
  --border:     #2e2e2e;
  --text:       #f0f0f0;
  --muted:      #888888;
  --sidebar-bg: #111111;
  --topbar-bg:  #0f0f0f;
  --sidebar:    260px;
  --radius:     6px;
}


/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }

/* ── LAYOUT SHELL ── */
.shell { display: flex; min-height: 100vh; }

/* ── SIDEBAR ── */
.sidebar {
  width: var(--sidebar);
  flex-shrink: 0;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.sidebar-logo {
  padding: 20px 20px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-logo img { height: 32px; width: auto; display: block; }
.sidebar-nav { padding: 18px 12px 0; }
.sidebar-nav-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 8px;
  margin-bottom: 6px;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 500;
  color: #aaa;
  transition: background 0.15s, color 0.15s;
  margin-bottom: 2px;
}
.sidebar-nav a:hover,
.sidebar-nav a.active { background: var(--surface2); color: var(--text); }
.sidebar-nav a.active { color: var(--green); }
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-green  { background: var(--green); }
.dot-pink   { background: var(--pink); }
.dot-yellow { background: var(--yellow); }
.dot-white  { background: #fff; }
.sidebar-divider { height: 1px; background: var(--border); margin: 16px 12px; }
.sidebar-cta {
  margin: 0 12px 12px;
  background: var(--surface2);
  border-radius: var(--radius);
  padding: 16px 14px;
}
.sidebar-cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  line-height: 1.3;
}
.sidebar-cta-sub { font-size: 11.5px; color: var(--muted); margin-bottom: 12px; line-height: 1.5; }
.sidebar-cta-btn {
  display: block;
  background: var(--green);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 12px;
  border-radius: 4px;
  transition: opacity 0.15s;
}
.sidebar-cta-btn:hover { opacity: 0.85; }
.sidebar-footer {
  margin-top: auto;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: #555;
}

/* ── MAIN ── */
.main { flex: 1; min-width: 0; display: flex; flex-direction: column; }

/* ── TOPBAR ── */
.topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  height: 56px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--topbar-bg);
  z-index: 50;
}
.topbar-search {
  flex: 1;
  max-width: 460px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0 14px;
  height: 36px;
}
.topbar-search svg { flex-shrink: 0; opacity: 0.4; }
.topbar-search input {
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 13px;
  color: var(--text);
  width: 100%;
}
.topbar-search input::placeholder { color: #666; }
.topbar-spacer { flex: 1; }
.topbar-cta {
  background: var(--green);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 4px;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.topbar-cta:hover { opacity: 0.85; }


/* ── CONTENT ── */
.content { padding: 32px 32px 80px; max-width: 1140px; }
.page-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.page-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 28px;
}

/* ── HERO ── */
.hero {
  display: flex;
  background: var(--surface);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 48px;
  transition: border-color 0.15s;
  min-height: 300px;
}
.hero:hover { border-color: #444; }
.hero-img-wrap { flex: 0 0 48%; position: relative; overflow: hidden; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.hero:hover .hero-img-wrap img { transform: scale(1.03); }
.hero-img-placeholder { flex: 0 0 48%; background: var(--surface2); }
.hero-body {
  flex: 1;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.hero-headline { font-family: 'Oswald', sans-serif; font-size: clamp(22px, 3vw, 34px); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 14px; color: #fff; }
.hero-dek { font-size: 14px; color: #aaa; line-height: 1.65; margin-bottom: 20px; }
.hero-meta { font-size: 11.5px; color: #666; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hero-meta .sep { color: #444; }
.hero-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: var(--green);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 4px;
  width: fit-content;
  transition: opacity 0.15s;
}
.hero-read-btn:hover { opacity: 0.85; }

/* ── SECTION HEADER ── */
.section-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 20px; }
.section-title { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: 0.02em; white-space: nowrap; }
.section-title--green  { color: var(--green); }
.section-title--pink   { color: var(--pink); }
.section-title--yellow { color: var(--yellow); }
.section-sub { font-size: 13px; color: var(--muted); }
.section-line { flex: 1; height: 1px; background: var(--border); }

/* ── ARTICLE GRID ── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  padding: 4px;
}
.article-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.article-card {
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, transform 0.15s;
}
.article-card:hover { border-color: #3a3a3a; transform: translateY(-2px); }
.card-img-wrap { aspect-ratio: 16/9; overflow: hidden; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.article-card:hover .card-img-wrap img { transform: scale(1.05); }
.card-img-placeholder { aspect-ratio: 16/9; background: var(--surface2); }
.card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }

/* ── PILL TAGS ── */
.pill-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
  width: fit-content;
}
.pill-green  { background: rgba(0,209,145,0.15);  color: var(--green); }
.pill-pink   { background: rgba(242,84,253,0.15);  color: var(--pink); }
.pill-yellow { background: rgba(255,217,17,0.15);  color: var(--yellow); }

/* Tag slug → pill color mapping (Ghost dynamic tags) */
.tag-hot-takes    { background: rgba(0,209,145,0.15);  color: var(--green); }
.tag-product      { background: rgba(242,84,253,0.15);  color: var(--pink); }
.tag-city-guides  { background: rgba(255,217,17,0.15);  color: var(--yellow); }
.tag-lists        { background: rgba(255,217,17,0.15);  color: var(--yellow); }
.tag-community    { background: rgba(242,84,253,0.15);  color: var(--pink); }


.card-headline { font-family: 'Oswald', sans-serif; font-size: 17px; font-weight: 600; line-height: 1.2; letter-spacing: 0.01em; color: #eee; flex: 1; }
.card-dek { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.card-meta { font-size: 11px; color: #555; margin-top: 4px; }

/* ── FEATURED ROW ── */
.featured-row { display: grid; grid-template-columns: 55% 1fr; gap: 20px; margin-bottom: 20px; }
.featured-card {
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s;
}
.featured-card:hover { border-color: #3a3a3a; }
.featured-card .card-img-wrap { aspect-ratio: 16/10; }
.featured-card .card-body { padding: 24px 26px 28px; }
.featured-card .card-headline { font-size: 22px; line-height: 1.2; }

.stack-col { display: flex; flex-direction: column; gap: 12px; }
.stack-card {
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  overflow: hidden;
  align-items: stretch;
  transition: border-color 0.15s;
  min-height: 100px;
}
.stack-card:hover { border-color: #3a3a3a; }
.stack-img { flex: 0 0 120px; overflow: hidden; }
.stack-img img { width: 100%; height: 100%; object-fit: cover; }
.stack-img-placeholder { flex: 0 0 120px; background: var(--surface2); }
.stack-card .card-body { padding: 14px 16px; gap: 6px; }
.stack-card .card-headline { font-size: 14px; line-height: 1.3; }

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.newsletter-text h2 { font-family: 'Oswald', sans-serif; font-size: clamp(22px, 3vw, 30px); font-weight: 700; line-height: 1.1; margin-bottom: 8px; }
.newsletter-text h2 em { color: var(--green); font-style: normal; }
.newsletter-text p { font-size: 13.5px; color: var(--muted); }
.newsletter-form { display: flex; gap: 8px; flex-shrink: 0; }
.newsletter-input {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 13px;
  color: var(--text);
  outline: none;
  width: 240px;
  transition: border-color 0.15s;
}
.newsletter-input:focus { border-color: var(--green); }
.newsletter-input::placeholder { color: #555; }
.newsletter-btn {
  background: var(--green);
  color: var(--black);
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.newsletter-btn:hover { opacity: 0.85; }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--border); padding: 28px 32px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.footer-logo { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 0.04em; color: #fff; }
.footer-tagline { font-size: 12.5px; color: #555; font-style: italic; }
.footer-links { margin-left: auto; display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: #666; transition: color 0.15s; letter-spacing: 0.03em; }
.footer-links a:hover { color: var(--text); }

/* ── BOTTOM BAR ── */
.bottombar {
  position: fixed;
  bottom: 0;
  left: var(--sidebar);
  right: 0;
  height: 56px;
  background: rgba(15,15,15,0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 20px;
  z-index: 40;
}
.bottombar-text { font-size: 13px; color: var(--muted); }
.bottombar-text strong { color: var(--text); }
.bottombar-cta {
  background: var(--green);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.15s;
}
.bottombar-cta:hover { opacity: 0.85; }

/* ── KOENIG EDITOR CARD WIDTHS (required by Ghost) ── */
.kg-width-wide {
  margin-left: calc(50% - 50vw + var(--sidebar) / 2);
  margin-right: calc(50% - 50vw + var(--sidebar) / 2);
  width: auto;
  max-width: 1100px;
}
.kg-width-full {
  margin-left: calc(50% - 50vw + var(--sidebar) / 2);
  margin-right: calc(50% - 50vw + var(--sidebar) / 2);
  width: auto;
  max-width: 100vw;
}
.kg-width-wide img,
.kg-width-full img { width: 100%; border-radius: 0; }

/* ── SINGLE POST (post.hbs) ── */
.post-hero { width: 100%; aspect-ratio: 21/9; overflow: hidden; }
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-content { max-width: 720px; margin: 0 auto; padding: 48px 32px 100px; }
.post-header { margin-bottom: 40px; }
.post-tag-row { margin-bottom: 16px; }
.post-title { font-family: 'Oswald', sans-serif; font-size: clamp(28px, 4vw, 48px); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 16px; }
.post-excerpt { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.post-meta { font-size: 12px; color: #555; display: flex; align-items: center; gap: 8px; }
.post-meta .sep { color: #333; }
.post-body { font-size: 16px; line-height: 1.8; color: var(--text); }
.post-body h2 { font-family: 'Oswald', sans-serif; font-size: 26px; font-weight: 700; margin: 40px 0 16px; letter-spacing: 0.01em; }
.post-body h3 { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 600; margin: 32px 0 12px; }
.post-body p { margin-bottom: 20px; }
.post-body ul, .post-body ol { margin: 0 0 20px 24px; }
.post-body li { margin-bottom: 8px; }
.post-body blockquote { border-left: 3px solid var(--green); padding-left: 20px; margin: 32px 0; color: var(--muted); font-style: italic; font-size: 17px; line-height: 1.7; }
.post-body img { border-radius: 6px; margin: 32px 0; width: 100%; }
.post-body a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.post-body hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.post-body pre { background: var(--surface2); border-radius: 6px; padding: 20px; overflow-x: auto; margin-bottom: 20px; font-size: 14px; }

/* ── TAG PAGE ── */
.tag-header { padding: 40px 32px 0; max-width: 1140px; }
.tag-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.tag-title { font-family: 'Oswald', sans-serif; font-size: clamp(32px, 5vw, 52px); font-weight: 700; line-height: 1.05; margin-bottom: 8px; }
.tag-desc { font-size: 14px; color: var(--muted); margin-bottom: 32px; }

/* Tag page title colors match category */
.tag-hot-takes.tag-eyebrow,  .tag-hot-takes.tag-title  { color: var(--green); }
.tag-product.tag-eyebrow,    .tag-product.tag-title    { color: var(--pink); }
.tag-city-guides.tag-eyebrow,.tag-city-guides.tag-title { color: var(--yellow); }
.tag-lists.tag-eyebrow,      .tag-lists.tag-title      { color: var(--yellow); }
.tag-community.tag-eyebrow,  .tag-community.tag-title  { color: var(--pink); }

/* ── HAMBURGER BUTTON ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SIDEBAR OVERLAY (mobile) ── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 89;
}
.sidebar-overlay.is-open { display: block; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --sidebar: 220px; }

  .article-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .content { padding: 28px 24px 80px; }
  .topbar { padding: 0 20px; gap: 12px; }
  .newsletter { padding: 32px; gap: 24px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {

  /* Sidebar: slide-in drawer */
  .hamburger { display: flex; }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 90;
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0,0,0,0.4);
  }
  .sidebar.is-open { transform: translateX(0); }

  /* Shell: no left gap, full width */
  .shell { display: block; }
  .main { width: 100%; }

  /* Topbar */
  .topbar {
    padding: 0 16px;
    gap: 10px;
    height: 52px;
  }
  .topbar-search { max-width: none; flex: 1; min-width: 0; }
  .topbar-spacer { display: none; }
  /* Hide text label on theme toggle — icon only */
  #themeLabel { display: none; }
  .theme-toggle { padding: 6px 10px; }
  /* Hide "Join Waitlist" CTA in topbar on mobile */
  .topbar-cta { display: none; }

  /* Content area */
  .content { padding: 20px 16px 100px; }
  .page-title { font-size: clamp(30px, 8vw, 42px); margin-bottom: 20px; }

  /* Hero: stack vertically */
  .hero { flex-direction: column; min-height: unset; }
  .hero-img-wrap { flex: none; width: 100%; aspect-ratio: 16/9; }
  .hero-img-placeholder { flex: none; width: 100%; aspect-ratio: 16/9; }
  .hero-body { padding: 20px; }

  /* Grids: 1 column on mobile */
  .article-grid { grid-template-columns: 1fr; gap: 16px; padding: 2px; }
  .article-grid.cols-4 { grid-template-columns: 1fr; }

  /* Grids: 2 columns on mobile for cards (nice readable size) */
  .article-grid { grid-template-columns: repeat(2, 1fr); }

  /* Featured row: stack */
  .featured-row { grid-template-columns: 1fr; }

  /* Stack cards: horizontal thumbnail stays, but smaller */
  .stack-img { flex: 0 0 90px; }

  /* Newsletter: stack */
  .newsletter { flex-direction: column; padding: 24px 20px; gap: 20px; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-input { width: 100%; }
  .newsletter-btn { width: 100%; padding: 12px; }

  /* Footer */
  .footer { padding: 20px 16px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { margin-left: 0; }

  /* Bottom bar: full width (no sidebar offset) */
  .bottombar { left: 0; padding: 0 16px; gap: 12px; }
  .bottombar-text { font-size: 12px; }
  /* Hide description text, keep CTA */
  .bottombar-text { display: none; }

  /* Post content */
  .post-content { padding: 32px 16px 100px; }
  .post-hero { aspect-ratio: 16/9; }

  /* Tag page */
  .tag-header { padding: 24px 16px 0; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 400px)
   ============================================================ */
@media (max-width: 400px) {
  .article-grid { grid-template-columns: 1fr; }
  .article-grid.cols-4 { grid-template-columns: 1fr; }
}

/* ── ABOUT PAGE ── */
.about { padding: 0 0 80px; }
.about-hero {
  padding: 48px 32px 56px;
  max-width: 800px;
}
.about-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.about-lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 680px;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}
.about-block {
  background: var(--black);
  padding: 40px 40px 44px;
}
.about-block-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.about-block-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.about-block p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.about-block p:last-child { margin-bottom: 0; }
.about-cta-block {
  margin: 0 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 56px 48px;
  max-width: 720px;
}
.about-cta-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.about-cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}
.about-cta-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
}

@media (max-width: 767px) {
  .about-hero { padding: 32px 16px 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-block { padding: 28px 20px; }
  .about-cta-block { margin: 0 16px; padding: 32px 24px; }
}
