/* ==========================================================================
   Simple Liberty — Ghost theme (Nivel B test build)
   Tipografía y colores tomados 1:1 del archivo de Figma
   (simple-liberty-landing, fileKey FN0Set9ZspNTd08yBNCSCf, node 6:4)
   ========================================================================== */

:root {
  /* Paleta */
  --heritage-navy: #102A43;
  --ink-navy: #16283C;
  --federal-blue: #284D78;
  --link-blue: #1F5C8C;
  --liberty-red: #E63A46;
  --liberty-red-alt: #E73846;
  --parchment: #F9F6EF;
  --iron-coal: #151515;
  --body-blue: #2F4863;
  --slate-input: #5C7085;
  --border-light: #D1DCE5;
  --input-bg: #F6F8FA;
  --footer-input-bg: #2F4863;
  --footer-muted: #D1DCE5;
  --mission-label: #D4D4D4;
  --nav-text: #102A43;
  --coal-gray: #2F353C;
  --slate-gray: #707883;
  --status-blue: #3373BF;
  --pale-blue-bg: #ECF0F3;
  --border-gray: #D3DCE3;
  --pale-blue-text: #C7D6E2;

  /* Tipografía — respeta la fuente elegida en Settings > Design si el usuario la cambia */
  --font-display: var(--gh-font-heading, 'Libre Baskerville', Georgia, 'Times New Roman', serif);
  --font-body: var(--gh-font-body, 'Public Sans', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--iron-coal);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}
.eyebrow-navy { color: var(--federal-blue); }
.eyebrow-light { color: var(--mission-label); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--liberty-red); color: var(--parchment); }
.btn-dark { background: var(--federal-blue); color: #ffffff; }

.accent-divider {
  height: 11px;
  background: var(--liberty-red);
}

/* ---------- Navegación ---------- */
.navigation-container { background: #ffffff; }

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  font-size: 22px;
  color: var(--liberty-red);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--heritage-navy);
}
.nav-logo-img {
  height: 35px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  color: var(--nav-text);
  white-space: nowrap;
}
.nav-links .nav-current {
  color: var(--liberty-red-alt);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-signin {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: #2F353C;
}

.nav-bottom-accent {
  height: 3px;
  background: var(--link-blue);
}

/* ---------- Hero ---------- */
.hero-section {
  display: flex;
  align-items: center;
  padding: 96px 80px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,14,20,0.75) 0%, rgba(10,14,20,0.35) 55%, rgba(10,14,20,0.05) 100%);
}
.hero-text-block {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 762px;
}
.hero-kicker-group { display: flex; flex-direction: column; gap: 8px; }
.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
}
.hero-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: #ffffff;
}
.hero-paragraphs p { margin: 0; }

/* ---------- Subscribe strip ---------- */
.subscribe-strip {
  background: var(--ink-navy);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 48px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.subscribe-content { display: flex; flex-direction: column; gap: 8px; color: #ffffff; }
.subscribe-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  margin: 0;
}
.subscribe-subtitle {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.5;
  margin: 0;
}
.subscribe-form, .closing-subscribe-form {
  display: flex;
  gap: 12px;
  align-items: center;
}
.input-field {
  width: 320px;
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  background: var(--input-bg);
  color: var(--slate-input);
  font-family: var(--font-body);
  font-size: 16px;
}
.subscribe-note {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.3px;
  color: #ffffff;
  margin: 0;
}

/* ---------- Commoners Corner index (custom page) ---------- */
.cc-hero { background-color: var(--ink-navy); }
.cc-hero-text { max-width: 509px; }
.cc-accent-bar { height: 11px; background: var(--liberty-red-alt); width: 100%; }
.cc-accent-bar-blue { height: 3px; background: var(--link-blue); }

.cc-feed-section {
  background: var(--input-bg);
  padding: 76px 80px 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.cc-container { width: 100%; max-width: 760px; }

.cc-tab-bar {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid var(--border-light);
  padding-top: 18px;
}
.cc-tab {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: #93A7B8;
  padding-bottom: 8px;
  display: inline-block;
  cursor: pointer;
}
.cc-tab-active {
  color: var(--ink-navy);
  border-bottom: 2px solid var(--link-blue);
}

.cc-post-list { display: flex; flex-direction: column; }
.cc-post-row {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--border-light);
  text-decoration: none;
  color: inherit;
}
.cc-post-list a.cc-post-row:last-child { border-bottom: 1px solid var(--border-light); }
.cc-post-thumb {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 4px;
  background-color: #D9DEE5;
  background-size: cover;
  background-position: center;
}
.cc-post-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.cc-post-meta {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--link-blue);
  text-transform: uppercase;
  margin: 0;
}
.cc-post-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: var(--ink-navy);
  margin: 0;
}
.cc-post-excerpt {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--slate-input);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cc-post-cta {
  margin-top: 4px;
  font-size: 14px;
}
.cc-empty {
  padding: 40px 0;
  color: var(--slate-input);
  font-family: var(--font-body);
  width: 100%;
}

.cc-pagination { display: flex; gap: 16px; }
.cc-page-btn {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  border: 1.5px solid #ccc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: #40404D;
  text-decoration: none;
}
.cc-page-btn[aria-disabled="true"] { opacity: 0.4; pointer-events: none; }

/* ---------- Posts sections (Commoners Corner / The Commons) ---------- */
.posts-section {
  background: #ffffff;
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.posts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: var(--ink-navy);
  margin: 0;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.5;
  color: var(--link-blue);
  margin: 4px 0 0;
}
.see-all-link, .article-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--link-blue);
  border-bottom: 1px solid var(--link-blue);
  padding-bottom: 4px;
  white-space: nowrap;
}
.posts-row {
  display: flex;
  gap: 100px;
  justify-content: center;
}
.post-card {
  width: 359px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.post-card-image {
  height: 232.7px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}
.post-tag {
  position: relative;
  align-self: flex-start;
  background: var(--liberty-red-alt);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 80px;
  border: 1px solid #ddd;
  margin-top: -8px;
}
.post-card-body { display: flex; flex-direction: column; gap: 24px; }
.post-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: var(--iron-coal);
  margin: 0;
}
.post-card-excerpt {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--body-blue);
  margin: 0;
}

/* ---------- Mission ---------- */
.mission-section {
  background: var(--ink-navy);
  padding: 96px 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.mission-header { display: flex; flex-direction: column; gap: 16px; width: 100%; }
.mission-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: var(--mission-label);
  margin: 0;
}
.mission-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
}
.mission-body {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: #ffffff;
}
.mission-body p { margin: 0; }
.mission-founder-footer {
  border-top: 1px solid var(--liberty-red-alt);
  padding-top: 24px;
  width: 400px;
  color: #ffffff;
}
.founder-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  margin: 0 0 8px;
}
.founder-title {
  font-family: var(--font-body);
  font-size: 14px;
  margin: 0;
}

/* ---------- Closing CTA ---------- */
.closing-cta {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
}
.cta-header { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.15;
  color: var(--ink-navy);
  margin: 0;
}
.cta-subtitle {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.5;
  color: var(--body-blue);
  max-width: 640px;
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-navy);
  padding: 80px 80px 40px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.footer-grid { display: flex; gap: 64px; }
.footer-col { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  margin: 0;
}
.footer-copy {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--footer-muted);
  margin: 0;
}
.footer-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--footer-muted);
  margin: 0;
}
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
}
.footer-subscribe-form { display: flex; flex-direction: column; gap: 10px; }
.footer-input {
  background: var(--footer-input-bg);
  border: none;
  border-radius: 4px;
  padding: 12px;
  color: var(--footer-muted);
  font-family: var(--font-body);
  font-size: 16px;
}
.footer-submit {
  background: var(--liberty-red);
  border: none;
  border-radius: 6px;
  height: 46px;
  color: var(--parchment);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
}
.footer-bottom-bar {
  border-top: 1px solid var(--footer-input-bg);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--footer-muted);
}
.footer-bottom-links { display: flex; gap: 24px; }

/* ---------- Post article page ---------- */
.post-article { max-width: 800px; margin: 0 auto; padding: 64px 20px 96px; }
.article-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-bottom: 48px;
}
.article-header .eyebrow { color: var(--link-blue); }
.article-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.15;
  color: var(--ink-navy);
  margin: 0;
  max-width: 680px;
}
.article-dek {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.5;
  color: var(--slate-input);
  margin: 0;
  max-width: 680px;
}
.article-meta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #93A7B8;
  display: flex;
  gap: 8px;
  align-items: center;
}
.article-header-divider {
  width: 60px;
  height: 2px;
  background: var(--link-blue);
}
.article-feature-image {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 420px;
  border-radius: 0;
  background-size: cover;
  background-position: center;
  margin-bottom: 40px;
}
.article-body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--iron-coal);
}
.article-body h1, .article-body h2, .article-body h3, .article-body h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--heritage-navy);
}
.article-body h2 { font-size: 32px; line-height: 1.2; margin: 48px 0 16px; }
.article-body h3 { font-size: 24px; line-height: 1.25; margin: 40px 0 12px; }
.article-body h4 { font-size: 20px; line-height: 1.3; color: var(--iron-coal); margin: 32px 0 12px; }
.article-body p { margin: 0 0 24px; }
.article-body a { color: var(--federal-blue); text-decoration: underline; }
.article-body blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink-navy);
  margin: 40px 0;
  padding-left: 24px;
  border-left: 4px solid var(--ink-navy);
}
.article-body ul,
.article-body ol {
  margin: 0 0 24px;
  padding-left: 24px;
}
.article-body li {
  margin-bottom: 12px;
}
.article-body ol { list-style: decimal; }

/* Ghost Callout card (Koenig) — se usa para las cajas destacadas
   (ej. "Think Back.", "Your challenge this week") */
.article-body .kg-callout-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--liberty-red-alt);
  border-radius: 8px;
  padding: 32px;
  margin: 40px 0;
}
.article-body .kg-callout-emoji {
  font-size: 20px;
  line-height: 1;
}
.article-body .kg-callout-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body-blue);
}
.article-body .kg-callout-text strong {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink-navy);
}
/* Anchos especiales de imagen del editor Koenig */
.article-body .kg-width-wide {
  width: 1080px;
  max-width: 1080px;
  margin-left: calc(50% - 540px);
  margin-right: calc(50% - 540px);
  position: relative;
}
.article-body .kg-width-full {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}
.article-body .kg-width-wide img,
.article-body .kg-width-full img {
  width: 100%;
  display: block;
}

.article-body table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.article-body th {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: left;
  padding: 12px;
  border-bottom: 2px solid var(--border-light);
}
.article-body td {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px;
  border-bottom: 1px solid var(--border-light);
}

/* ==========================================================================
   The Commons — índice y plantilla de claim
   ========================================================================== */
.commons-header {
  background: var(--heritage-navy);
  padding: 64px 80px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.commons-header h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.18;
  color: #ffffff;
  max-width: 580px;
  margin: 0;
}
.commons-lead {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: #E5E8F0;
  max-width: 820px;
  margin: 0;
}
.commons-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #CCD1DE;
  max-width: 760px;
  margin: 0;
}
.commons-instructions {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.55;
  color: #ffffff;
  max-width: 700px;
  margin: 0;
}
.commons-ps {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  line-height: 1.55;
  color: #BFC4D1;
  max-width: 700px;
  margin: 0;
}

.commons-issues-section {
  padding: 64px 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.commons-intro {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--coal-gray);
  max-width: 1280px;
  margin: 0;
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.issue-card {
  background: var(--parchment);
  border-top: 3px solid var(--liberty-red-alt);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.issue-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--heritage-navy);
  margin: 0;
}
.issue-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--coal-gray);
  margin: 0;
}
.issue-card .topic-link {
  color: var(--federal-blue);
  font-weight: 600;
}
.issue-card .topic-link:hover { text-decoration: underline; }

.commons-cta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--federal-blue);
  margin: 0;
}

.commons-scripture {
  padding: 48px 80px 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scripture-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.45;
  color: var(--heritage-navy);
  max-width: 760px;
  margin: 0;
}
.scripture-source {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--slate-gray);
  margin: 0;
}

/* Claim template */
.claim-header {
  padding: 40px 80px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.claim-breadcrumb {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--slate-gray);
  margin: 0;
}
.claim-breadcrumb a { color: var(--slate-gray); }
.claim-breadcrumb a:hover { color: var(--federal-blue); }
.claim-number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  color: var(--slate-gray);
  margin: 0;
}
.claim-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.28;
  color: var(--heritage-navy);
  max-width: 1100px;
  margin: 0;
}
.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.status-supported { background: var(--status-blue); }
.status-dot.status-neutral { background: #9AA4B2; }
.status-dot.status-disqualified { background: var(--liberty-red-alt); }
.status-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--status-blue);
  margin: 0;
}

.claim-body { display: flex; flex-direction: column; }
.q-section {
  padding: 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.q-section.q-white { background: #ffffff; }
.q-section.q-tint { background: var(--parchment); }
.q-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--federal-blue);
  margin: 0;
}
.q-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  color: var(--heritage-navy);
  margin: 0;
}
.q-section p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--coal-gray);
  max-width: 900px;
  margin: 0;
}
.link-arrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--federal-blue);
}

.discussion-cta {
  background: var(--heritage-navy);
  padding: 56px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.discussion-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: #ffffff;
  margin: 0;
}
.discussion-cta p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: #D9DEE5;
  max-width: 630px;
  margin: 0;
}

/* ==========================================================================
   About Us (custom page)
   ========================================================================== */
.au-section {
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
}
.au-section-tint { background: var(--pale-blue-bg); }
.au-section-dark { background: var(--ink-navy); }
.au-container {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.au-cta-container { align-items: center; text-align: center; }
.au-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: var(--ink-navy);
  margin: 0;
}
.au-section-dark .au-h2 { color: var(--input-bg); }
.au-lead {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.5;
  color: var(--body-blue);
  margin: 0;
}
.au-list { display: flex; flex-direction: column; gap: 20px; }
.au-list p, .au-body-text, .au-body-text p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body-blue);
  margin: 0;
}
.au-body-text { display: flex; flex-direction: column; gap: 16px; }
.au-section-dark .au-body-text p { color: var(--pale-blue-text); }
.au-centered { text-align: center; }
.au-pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--link-blue);
  text-align: center;
  margin: 0;
  padding: 16px 0;
}

.au-quote-list { display: flex; flex-direction: column; gap: 24px; }
.au-quote-block {
  border-left: 3px solid var(--link-blue);
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.au-quote-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-navy);
  margin: 0;
}
.au-quote-source {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--slate-input);
  margin: 0;
}

.au-agree-list { display: flex; flex-direction: column; width: 100%; }
.au-agree-item {
  border-top: 1px solid var(--border-light);
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.au-agree-number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--link-blue);
  margin: 0;
}
.au-agree-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: var(--ink-navy);
  margin: -8px 0 0;
}
.au-stat-box {
  background: var(--input-bg);
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.au-stat-box p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--slate-input);
  margin: 0;
}
.au-agree-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-navy);
  margin: 0;
}

.au-step-list { display: flex; flex-direction: column; gap: 24px; width: 100%; }
.au-step { display: flex; gap: 24px; }
.au-step-num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--link-blue);
  width: 32px;
  flex-shrink: 0;
  margin: 0;
}
.au-step p {
  flex: 1;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body-blue);
  margin: 0;
}

.au-godeeper {
  background: var(--input-bg);
  border: 1px dashed var(--slate-gray);
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.au-godeeper-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--slate-gray);
  margin: 0;
}
.au-godeeper-note {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  color: var(--slate-gray);
  margin: 0;
}
.au-godeeper-post {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-navy);
  margin: 0;
}
.au-cta-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: var(--ink-navy);
  text-align: center;
  margin: 0;
}
.au-inline-form { display: flex; gap: 12px; align-items: center; width: 100%; justify-content: center; }
.au-inline-form input {
  width: 320px;
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  background: #ffffff;
  color: var(--slate-input);
  font-family: var(--font-body);
  font-size: 16px;
}
.au-inline-form button {
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  background: var(--liberty-red-alt);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
}

/* ==========================================================================
   Join Us (custom page)
   ========================================================================== */
.ju-hero {
  background: var(--input-bg);
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ju-hero-inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}
.ju-kicker {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--link-blue);
  margin: 0;
}
.ju-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.15;
  color: var(--ink-navy);
  margin: 0;
}
.ju-lead {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.5;
  color: var(--body-blue);
  margin: 0;
  max-width: 640px;
}
.ju-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.ju-body p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-input);
  margin: 0 0 4px;
}
.ju-body p:last-child { margin-bottom: 0; }
.ju-closing {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--ink-navy);
  margin: 0;
}

.ju-pricing {
  background: #ffffff;
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  padding: 104px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.ju-pricing-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 982px;
  text-align: center;
}
.ju-pricing-intro p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--iron-coal);
  margin: 0;
}
.ju-tiers {
  display: flex;
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  align-items: stretch;
}
.ju-tier {
  flex: 1;
  min-width: 0;
  border: 1.5px solid var(--link-blue);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ju-tier-head { display: flex; flex-direction: column; gap: 16px; }
.ju-tier-badge {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
}
.ju-tier-badge.badge-red { background: var(--liberty-red-alt); }
.ju-tier-badge.badge-blue { background: var(--link-blue); }
.ju-tier-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--ink-navy);
  margin: 0;
}
.ju-tier-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink-navy);
  margin: 0;
}
.ju-tier-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--slate-input);
  margin: 0;
}
.ju-tier-features { display: flex; flex-direction: column; gap: 16px; }
.ju-tier-feature { display: flex; gap: 12px; align-items: flex-start; }
.ju-tier-feature .ju-check-icon { flex-shrink: 0; margin-top: 2px; }
.ju-tier-feature p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-navy);
  margin: 0;
}
.ju-tier-cta {
  margin-top: auto;
  height: 48px;
  border-radius: 6px;
  background: var(--liberty-red-alt);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.ju-donations {
  background: var(--ink-navy);
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ju-donations-inner {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.ju-donations-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}
.ju-h2-light {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}
.ju-donations-inner p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: #ffffff;
  margin: 0;
}
.ju-donations-note {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.3px;
  color: #ffffff;
  margin: 0;
}
.ju-donate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 40px;
  border-radius: 6px;
  background: var(--liberty-red-alt);
  border: 1px solid var(--ink-navy);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
}

.ju-faq {
  background: #ffffff;
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ju-faq-inner {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ju-faq-item { border-top: 2px solid var(--link-blue); padding: 24px 0; }
.ju-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--ink-navy);
}
.ju-faq-item summary::-webkit-details-marker { display: none; }
.ju-faq-item .chev { flex-shrink: 0; transition: transform 0.2s ease; }
.ju-faq-item[open] .chev { transform: rotate(180deg); }
.ju-faq-answer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.ju-faq-answer p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-input);
  margin: 0;
}
.ju-faq-answer a { color: var(--link-blue); text-decoration: underline; }

/* ==========================================================================
   Mobile (<640px) — escala definida en SL_Typography_System_260903.md
   ========================================================================== */
@media (max-width: 640px) {
  .nav-main, .hero-section, .subscribe-strip, .posts-section,
  .mission-section, .closing-cta, .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-main { flex-wrap: wrap; gap: 16px; padding-top: 16px; padding-bottom: 16px; }
  .nav-links { display: none; }

  .hero-section { padding-top: 56px; padding-bottom: 56px; }
  .hero-text-block { max-width: 100%; gap: 24px; }
  .hero-headline { font-size: 32px; }
  .hero-paragraphs { font-size: 16px; }

  .subscribe-strip { padding-top: 40px; padding-bottom: 40px; }
  .subscribe-headline { font-size: 26px; }
  .subscribe-form, .closing-subscribe-form { flex-direction: column; width: 100%; }
  .input-field { width: 100%; }

  .cc-feed-section { padding: 48px 20px 56px; }
  .cc-post-row { flex-direction: column; align-items: flex-start; gap: 12px; padding: 24px 0; }
  .cc-post-thumb { width: 100%; height: 180px; }
  .cc-post-title { font-size: 20px; }

  .posts-section { padding-top: 56px; padding-bottom: 56px; gap: 32px; }
  .posts-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-title { font-size: 26px; }
  .posts-row { flex-direction: column; gap: 40px; align-items: center; }
  .post-card { width: 100%; max-width: 335px; }
  .post-card-title { font-size: 20px; }

  .mission-section { padding-top: 56px; padding-bottom: 56px; }
  .mission-title { font-size: 26px; }
  .mission-quote { font-size: 19px; }
  .mission-body { font-size: 16px; }
  .mission-founder-footer { width: 100%; max-width: 335px; }

  .closing-cta { padding-top: 56px; padding-bottom: 56px; }
  .cta-title { font-size: 32px; }
  .cta-subtitle { font-size: 16px; max-width: 100%; }

  .footer-grid { flex-direction: column; gap: 40px; }

  .post-article { padding-top: 40px; }
  .article-title { font-size: 32px; }
  .article-feature-image { height: 220px; }

  .commons-header, .commons-issues-section, .commons-scripture,
  .claim-header, .q-section, .discussion-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
  .commons-header h1 { font-size: 28px; }
  .commons-lead { font-size: 16px; }
  .issues-grid { grid-template-columns: 1fr; }
  .claim-title { font-size: 24px; }
  .q-section h2 { font-size: 22px; }

  .au-section { padding: 48px 20px; }
  .au-h2 { font-size: 26px; }
  .au-agree-title { font-size: 20px; }
  .au-pullquote { font-size: 19px; }
  .au-inline-form { flex-direction: column; }
  .au-inline-form input { width: 100%; }

  .ju-hero, .ju-pricing, .ju-donations, .ju-faq { padding-left: 20px; padding-right: 20px; }
  .ju-hero { padding-top: 56px; padding-bottom: 56px; }
  .ju-h1 { font-size: 32px; }
  .ju-lead { font-size: 17px; }
  .ju-pricing { padding-top: 56px; padding-bottom: 56px; gap: 40px; }
  .ju-tiers { flex-direction: column; }
  .ju-donations { padding-top: 56px; padding-bottom: 56px; }
  .ju-h2-light { font-size: 26px; }
  .ju-faq { padding-top: 56px; padding-bottom: 56px; }
  .ju-faq-item summary { font-size: 18px; }
}
