/* ==========================================================================
   STRONGER MAGAZINE - MAIN STYLESHEET
   Combined from Kajabi theme CSS with Kajabi references removed
   ========================================================================== */

/* CUSTOM CSS FROM THEME SETTINGS */
/* This removes the shadow from the form button and creates a bit more spacing inside the button */
.btn {
  padding: 12px 40px;
  -webkit-box-shadow: 0 0px 0px #f9f9f9;
  box-shadow: 0px 0px 0px #f9f9f9;
}

/* This increases the font size of the medium sized button */
.btn--medium {
  font-size: 24px;
}

/* This increases the font size of the link lists */
.link-list__link {
  font-size: 18px;
}

/* This makes the form fields rounded and increased the padding so that the text doesn't get cut off by the rounded corners */
.form-control {
  border-radius: 30px;
  padding-left: 24px;
  padding-right: 24px;
}

/* This reduces the h1 font size of the blog post title on the blog feed page on desktop */
@media (min-width: 768px) {
  h1.blog-post-body__title {
    font-size: 58px !important;
  }
}

/* Bulleted lists with black arrows */
.bullet-arrow {
  list-style-type: none;
}

.bullet-arrow li {
  list-style-type: none;
  position: relative;
  padding-left: 6px;
}

.bullet-arrow li:before {
  content: '\2771 \2771';
  color: #000000;
  font-size: 16px;
  position: absolute;
  top: 6px;
  left: -20px;
}

/* Bulleted lists with pink arrows */
.bullet-arrow-pink {
  list-style-type: none;
}

.bullet-arrow-pink li {
  list-style-type: none;
  position: relative;
  padding-left: 6px;
}

.bullet-arrow-pink li:before {
  content: '\2771 \2771';
  color: #FF65BE;
  font-size: 16px;
  position: absolute;
  top: 6px;
  left: -20px;
}

/* Bulleted lists with yellow arrows */
.bullet-arrow-yellow {
  list-style-type: none;
}

.bullet-arrow-yellow li {
  list-style-type: none;
  position: relative;
  padding-left: 6px;
}

.bullet-arrow-yellow li:before {
  content: '\2771 \2771';
  color: #FEED00;
  font-size: 16px;
  position: absolute;
  top: 6px;
  left: -20px;
}

/* Bulleted lists with green arrows */
.bullet-arrow-green {
  list-style-type: none;
}

.bullet-arrow-green li {
  list-style-type: none;
  position: relative;
  padding-left: 6px;
}

.bullet-arrow-green li:before {
  content: '\2771 \2771';
  color: #05b7b9;
  font-size: 16px;
  position: absolute;
  top: 6px;
  left: -20px;
}

/* Bulleted lists with blue arrows */
.bullet-arrow-blue {
  list-style-type: none;
}

.bullet-arrow-blue li {
  list-style-type: none;
  position: relative;
  padding-left: 6px;
}

.bullet-arrow-blue li:before {
  content: '\2771 \2771';
  color: #5fd3fa;
  font-size: 16px;
  position: absolute;
  top: 6px;
  left: -20px;
}

/* HEADER STYLES */
.header {
  background-color: transparent;
  font-size: 18px;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.header a,
.header a.link-list__link,
.header a.link-list__link:hover,
.header .user__login a {
  color: #000000;
}

/* Header when sticky/scrolled */
.header.header--fixed {
  background-color: #000000;
}

.header.header--fixed a,
.header.header--fixed a.link-list__link,
.header.header--fixed a.link-list__link:hover,
.header.header--fixed .user__login a {
  color: #ceafaf;
}

.header.header--fixed .hamburger__slice {
  background-color: #ceafaf;
}

/* Mobile Header Styles */
@media (max-width: 767px) {
  .header {
    font-size: 16px;
  }
  
  .header a.link-list__link,
  .header__content--mobile {
    text-align: left;
  }
  
  .header--overlay .header__content--mobile {
    padding-bottom: 20px;
  }
}

/* Header Layout */
.header__wrap {
  width: 100%;
}

.header__content {
  width: 100%;
}

.header__container {
  display: flex;
  align-items: center;
  padding: 20px;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 767px) {
  .container {
    padding: 0 10px;
  }
}

.media {
  display: flex;
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-left {
  justify-content: flex-start;
}

.justify-content-right {
  justify-content: flex-end;
}

/* Logo */
.logo {
  text-decoration: none;
  line-height: 1;
}

.logo__image {
  display: block;
  width: 150px;
}

.logo__text {
  font-size: 24px;
  font-weight: bold;
}

/* Navigation */
.link-list {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-list__link {
  text-decoration: none;
  transition: opacity 0.3s;
}

.link-list__link:hover {
  opacity: 0.7;
}

.stretch {
  flex: 1;
}

.header__spacer {
  flex: 1;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
}

.hamburger__slices {
  width: 100%;
  height: 100%;
  position: relative;
}

.hamburger__slice {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #000000;
  transition: all 0.3s;
}

.hamburger--slice-1 { top: 0; }
.hamburger--slice-2 { top: 11px; }
.hamburger--slice-3 { bottom: 0; }

@media (max-width: 767px) {
  .hidden--mobile {
    display: none !important;
  }
  
  .hamburger {
    display: block;
  }
  
  .link-list {
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .hidden--desktop {
    display: none !important;
  }
}

/* SECTIONS */
.section {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.section__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.sizer {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .sizer {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.align-items-center {
  align-items: center;
}

/* Column Classes */
.col-6 { width: 100%; }
.col-7 { width: 100%; }
.col-8 { width: 100%; }
.col-10 { width: 100%; }
.col-12 { width: 100%; }

@media (min-width: 768px) {
  .col-6 { width: 50%; }
  .col-7 { width: 58.33%; }
  .col-8 { width: 66.67%; }
  .col-10 { width: 83.33%; }
  .col-12 { width: 100%; }
}

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Blocks */
.block {
  padding: 20px;
}

@media (min-width: 768px) {
  .block {
    padding: 30px;
  }
}

.box-shadow-none {
  box-shadow: none;
}

.box-shadow-medium {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Images */
.image {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.image__image {
  width: 100%;
  height: auto;
  display: block;
}

/* Background Classes */
.background-dark {
  color: #ffffff;
}

.background-light {
  background-color: #ffffff;
  color: #000000;
}

/* FOOTER */
.footer {
  background-color: #000000;
  color: #ffffff;
  font-size: 16px;
  padding: 40px 0;
}

@media (min-width: 768px) {
  .footer {
    font-size: 18px;
  }
}

.footer__content {
  width: 100%;
}

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

.footer a.link-list__link {
  color: #ffffff;
}

.footer .link-list__link:hover {
  opacity: 0.7;
}

.copyright {
  color: #ffffff;
}

/* BUTTONS */
.btn {
  display: inline-block;
  text-decoration: none;
  border: 2px solid;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  text-align: center;
}

.btn--solid {
  color: #ffffff;
  border-color: #000000;
  background-color: #000000;
}

.btn--solid:hover {
  background-color: #333333;
  border-color: #333333;
}

.btn--auto {
  width: auto;
}

/* FORMS */
.form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #ddd;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #000000;
}

.form-btn {
  width: 100%;
  padding: 15px 30px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s;
}

/* UTILITIES */
.hidden {
  display: none !important;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}

@media (min-width: 768px) {
  body {
    font-size: 24px;
  }
}

main {
  min-height: calc(100vh - 200px);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  line-height: 1.2;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  h2 {
    font-size: 2rem;
  }
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

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

ol, ul {
  margin-top: 0;
}

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

/* ==========================================================================
   REDESIGN 2026 — SITE-WIDE PALETTE + BACK ISSUES COMPONENTS
   Palette sampled from approved mockup.
   ========================================================================== */
:root {
  --cream:        #FBF7EF;   /* page background */
  --cream-panel:  #F2EADC;   /* filter bar / panels */
  --ink:          #2C2A26;   /* body text */
  --ink-soft:     #6B655C;   /* muted text */
  --brown:        #A4632E;   /* headings / titles */
  --brown-deep:   #7C4A22;
  --coral:        #E8915A;   /* primary CTA (Subscribe) */
  --coral-deep:   #D9793E;
  --blue:         #4F9BD9;   /* Read Online */
  --blue-deep:    #3E8AC8;
  --purple:       #9B7BD0;   /* Download PDF */
  --purple-deep:  #856AC2;
  --footer-bg:    #1A1A1A;
  --card-bg:      #FFFFFF;
  --line:         rgba(0,0,0,0.08);
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
}

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); color: var(--brown); }
.background-dark h1, .background-dark h2, .background-dark h3,
.background-dark h4, .background-dark h5, .background-dark h6 { color: #ffffff; }

/* Header: cream bar (matches page) with hairline; transparent logo blends in */
.header { background-color: #fff; border-bottom: 1px solid var(--line); }
.header.header--fixed { background-color: #fff; }
.header.header--fixed a,
.header.header--fixed a.link-list__link,
.header.header--fixed a.link-list__link:hover { color: var(--ink); }
.header.header--fixed .hamburger__slice { background-color: var(--ink); }
.logo__img { display: block; height: 46px; width: auto; }
@media (max-width: 767px) { .logo__img { height: 36px; } }

/* Roomier top nav — more vertical height + breathing room between items */
@media (min-width: 768px) {
  .header__container { padding-top: 18px; padding-bottom: 18px; }
  .link-list { gap: 52px; }
  .header__block--logo { margin-right: 40px; }
  .header__block--menu + .header__block { margin-left: 40px; }
}

/* Primary solid button -> coral */
.btn--solid { color: #fff; border-color: var(--coral); background-color: var(--coral); }
.btn--solid:hover { background-color: var(--coral-deep); border-color: var(--coral-deep); }

/* Subscribe pill in header */
.subscribe-btn {
  display: inline-block; text-decoration: none; white-space: nowrap;
  background: var(--coral); color: #fff !important; font-weight: 600;
  font-size: 16px; padding: 10px 22px; border-radius: 30px; transition: background .25s;
}
.subscribe-btn:hover { background: var(--coral-deep); }

/* Footer */
.footer { background-color: var(--footer-bg); }

/* ---- Back Issues page ---- */
.page-title { text-align: center; padding: 70px 20px 10px; }
.page-title h1 {
  font-family: var(--font-display); color: var(--brown);
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 600; margin: 0;
}
@media (max-width: 767px) { .page-title { padding-top: 40px; } }

.filter-bar {
  max-width: 760px; margin: 24px auto 8px; background: var(--cream-panel);
  border: 1px solid var(--line); border-radius: 40px;
  padding: 16px 28px; display: flex; gap: 28px 36px;
  align-items: center; justify-content: center; flex-wrap: wrap;
}
.filter-bar label { font-size: 16px; color: var(--ink); margin-right: 8px; }
.filter-bar select {
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 8px 14px; cursor: pointer;
}

.issue-grid {
  max-width: 1180px; margin: 30px auto 60px; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 24px;
}
@media (max-width: 1000px){ .issue-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .issue-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 14px; padding: 0 14px; } }
@media (max-width: 420px) { .issue-grid { grid-template-columns: 1fr; } }

.issue-card {
  background: var(--card-bg); border-radius: 16px; padding: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08); display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.issue-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0,0,0,0.13); }
.issue-card__cover {
  display: block; border-radius: 10px; overflow: hidden; aspect-ratio: 3 / 4;
  background: var(--cream-panel); border: 1px solid var(--line);
}
.issue-card__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.issue-card__title {
  text-align: center; font-family: var(--font-display); color: var(--ink);
  font-size: 1.25rem; font-weight: 600; margin: 14px 0 12px;
}
.issue-card__actions { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.issue-btn {
  display: block; text-align: center; text-decoration: none; color: #fff;
  font-weight: 600; font-size: 15px; padding: 9px 10px; border-radius: 22px;
  border: none; cursor: pointer; transition: background .22s;
}
.issue-btn--read { background: var(--blue); }
.issue-btn--read:hover { background: var(--blue-deep); }
.issue-btn--download { background: var(--purple); }
.issue-btn--download:hover { background: var(--purple-deep); }
.issue-empty { text-align:center; color: var(--ink-soft); padding: 40px; grid-column: 1/-1; }

/* ---- Grid / List view toggle ---- */
.view-toggle {
  max-width: 1180px; margin: 18px auto -6px; padding: 0 24px;
  display: flex; justify-content: flex-end; gap: 8px;
}
.view-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--ink-soft); background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: 8px 16px; cursor: pointer; transition: all .2s;
}
.view-btn svg { fill: currentColor; }
.view-btn:hover { color: var(--ink); border-color: var(--brown); }
.view-btn.is-active { color: #fff; background: var(--brown); border-color: var(--brown); }
@media (max-width: 720px) { .view-toggle { padding: 0 14px; } }

/* ---- List (rows) view ---- */
.issue-grid.view-rows {
  grid-template-columns: 1fr; gap: 14px; max-width: 820px;
}
.issue-grid.view-rows .issue-card {
  flex-direction: row; align-items: center; gap: 18px; padding: 12px 18px;
}
.issue-grid.view-rows .issue-card__cover {
  width: 72px; flex: 0 0 72px; aspect-ratio: 3 / 4;
}
.issue-grid.view-rows .issue-card__title {
  flex: 1; text-align: left; margin: 0; font-size: 1.3rem;
}
.issue-grid.view-rows .issue-card__actions {
  flex-direction: row; gap: 10px; margin: 0; flex: 0 0 auto;
}
.issue-grid.view-rows .issue-btn { padding: 9px 20px; }
.issue-grid.view-rows .issue-card:hover { transform: none; }
@media (max-width: 600px) {
  .issue-grid.view-rows .issue-card { flex-wrap: wrap; gap: 12px 14px; }
  .issue-grid.view-rows .issue-card__title { flex: 1 1 auto; font-size: 1.15rem; }
  .issue-grid.view-rows .issue-card__actions { flex: 1 0 100%; }
  .issue-grid.view-rows .issue-btn { flex: 1; }
}

/* ==========================================================================
   HOME 2026 — Redesigned homepage sections
   Reuses the REDESIGN 2026 palette + card language above.
   ========================================================================== */
.home-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.home-section { padding: 72px 0; }
.home-section__head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.home-section__head h2 {
  font-family: var(--font-display); color: var(--brown);
  font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 600; margin: 0 0 12px;
}
.home-section__head p { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }

/* ---- Hero ---- */
.home-hero {
  background:
    linear-gradient(180deg, rgba(251,247,239,0) 55%, rgba(251,247,239,0.6) 85%, var(--cream) 100%),
    url('../images/hero-background-sky.jpg');
  background-size: cover, cover;
  background-position: center top, center top;
  background-repeat: no-repeat, no-repeat;
  padding: 100px 0 0;
  overflow: hidden;
}
.home-hero__grid {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.home-hero__title {
  font-family: 'Montserrat', sans-serif; color: #1A1A1A;
  font-size: clamp(2.3rem, 5.2vw, 3.6rem); font-weight: 700; line-height: 1.12; margin: 0 0 18px;
}
.home-hero__lead { color: #1A1A1A; font-size: 1.18rem; line-height: 1.6; margin: 0 0 30px; max-width: 30em; }
.home-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.home-btn {
  display: inline-block; text-decoration: none; font-weight: 600; font-size: 1rem;
  padding: 13px 26px; border-radius: 30px; transition: background .22s, color .22s, border-color .22s;
  border: 2px solid transparent; cursor: pointer;
}
.home-btn--primary { background: #1A1A1A; color: #fff; border-color: #1A1A1A; }
.home-btn--primary:hover { background: #000; border-color: #000; }
.home-btn--ghost { background: transparent; color: #1A1A1A; border-color: #1A1A1A; }
.home-btn--ghost:hover { background: #1A1A1A; color: #fff; }
.home-hero__art { display: flex; justify-content: center; align-items: flex-end; perspective: 1700px; }
.home-hero__card {
  width: 100%; max-width: 540px;
  background: transparent;
  border: 2px solid #111;
  border-radius: 24px;
  padding: 26px 24px;
  box-shadow: 0 34px 60px rgba(0,0,0,0.20);
  transform: rotateX(7deg) rotate(4deg);
  transform-origin: center top;
  margin-bottom: -70px;
}
.home-hero__card img { display: block; width: 100%; height: auto; }

/* ---- What's Inside ---- */
.home-inside {
  position: relative;
  background-color: #fff;
  background-image: url('../images/inside-doodle-left.webp'), url('../images/inside-doodle-right.webp');
  background-repeat: no-repeat, no-repeat;
  background-position: left -8px center, right -10px center;
  background-size: 210px auto, 280px auto;
}
.home-inside .home-wrap { position: relative; }
.home-inside__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1060px; margin: 0 auto;
}
.home-card {
  background: var(--card-bg); border-radius: 16px; overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08); display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.home-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0,0,0,0.13); }
.home-card__media { display: block; width: 100%; aspect-ratio: 4 / 3; background: var(--cream-panel); overflow: hidden; }
.home-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.home-card--comics .home-card__media img { object-position: top; }
.home-card__body { padding: 18px 20px 22px; }
.home-card__tag {
  display: inline-block; font-family: var(--font-display); color: var(--brown);
  font-size: 1.25rem; font-weight: 600; margin: 0 0 6px;
}
.home-card__body p { color: var(--ink-soft); font-size: .98rem; line-height: 1.5; margin: 0; }

/* ---- Parents & Mentors ---- */
.home-parents { background: var(--cream-panel); }
.home-parents__grid {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center;
}
.home-parents__text h2 {
  font-family: 'Montserrat', sans-serif; color: #1A1A1A;
  font-size: clamp(1.8rem, 3.6vw, 2.5rem); font-weight: 700; margin: 0 0 16px;
}
.home-parents__text p { color: var(--ink); font-size: 1.06rem; line-height: 1.65; margin: 0 0 16px; }

/* Privacy Assurance (matches reference: dark sans-serif heading, centered) */
.home-privacy {
  max-width: 760px; margin: 40px auto 0; padding: 0 24px; text-align: center;
}
.home-privacy h2 {
  font-family: 'Montserrat', sans-serif; color: #1A1A1A;
  font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; margin: 0 0 12px;
}
.home-privacy p { color: var(--ink-soft); font-size: 1.04rem; line-height: 1.65; margin: 0; }
.home-badges { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 22px; }
.home-badge { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--brown-deep); font-size: .98rem; }
.home-badge svg { flex: none; width: 26px; height: 26px; }
.home-partner-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 30px; text-align: center; box-shadow: 0 8px 22px rgba(0,0,0,0.07);
}
.home-partner-card img { width: 100%; max-width: 260px; height: auto; display: block; margin: 0 auto 14px; }
.home-partner-card span { display: block; color: var(--ink-soft); font-size: .9rem; letter-spacing: .02em; }

/* ---- Support Our Mission ---- */
.home-donate { display: none; }   /* "Support Our Mission" hidden for now — remove this line to restore */
.home-donate { background: #fff; }
.home-donate__cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin: 0 auto 22px; max-width: 880px; }
.home-donate__card {
  flex: 1 1 240px; max-width: 300px; text-decoration: none;
  background: var(--card-bg); border: 1px solid var(--line); border-radius: 16px;
  padding: 26px 22px; text-align: center; box-shadow: 0 6px 18px rgba(0,0,0,0.07);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.home-donate__card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0,0,0,0.12); border-color: var(--coral); }
.home-donate__amt { font-family: var(--font-display); color: var(--brown); font-size: 2rem; font-weight: 700; display: block; margin-bottom: 6px; }
.home-donate__desc { color: var(--ink-soft); font-size: .98rem; }
.home-donate__foot { text-align: center; }
.home-donate__note { color: var(--ink-soft); font-size: .92rem; margin: 0 0 18px; }

/* ---- Responsive ---- */
@media (max-width: 880px) {
  .home-hero { padding-bottom: 24px; }
  .home-hero__grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .home-hero__lead { margin-left: auto; margin-right: auto; }
  .home-hero__cta { justify-content: center; }
  .home-hero__art { order: -1; perspective: none; }
  .home-hero__card { margin-bottom: 0; transform: rotate(2deg); max-width: 440px; padding: 18px 16px; }
  .home-inside__grid { grid-template-columns: 1fr; max-width: 460px; }
  .home-parents__grid { grid-template-columns: 1fr; gap: 30px; }
  .home-parents__art { order: -1; }
  .home-badges { justify-content: center; }
}
@media (max-width: 767px) {
  .home-section { padding: 52px 0; }
  .home-inside { background-image: none; }   /* doodles hidden behind stacked cards on mobile */
  .home-hero__art { display: none; }         /* hero: text + buttons only, no character card */
  .home-inside__grid .home-card:not(.home-card--comics) { display: none; }  /* only first card */
}

/* ==========================================================================
   HEADER MOBILE FIX 2026 — collapse nav into hamburger dropdown
   The base styles left .link-list visible on mobile (overlapping the logo)
   even though main.js already toggles .menu-open / .active on the hamburger.
   This makes the bar = logo + hamburger, and reveals nav + Subscribe as a
   dropdown panel when open. Applies site-wide (shared header).
   ========================================================================== */
@media (max-width: 767px) {
  .header__container { flex-wrap: wrap; padding: 14px 16px; }
  .header__block--logo { flex: 1 1 auto; }

  /* hamburger sits at the right of the bar */
  .header .hamburger { display: block; order: 1; margin-left: auto; }

  /* nav + subscribe collapse off-screen until the menu is opened */
  .header__block--menu,
  .header__block:not(.header__block--logo) {
    order: 2;
    flex-basis: 100%;
    display: none;
  }
  .header.menu-open .header__block--menu,
  .header.menu-open .header__block:not(.header__block--logo) { display: block; }

  /* dropdown panel look */
  .header.menu-open .header__block--menu { margin-top: 10px; border-top: 1px solid var(--line); padding-top: 8px; }
  .header .link-list { flex-direction: column; align-items: stretch; gap: 0; }
  .header .link-list__link { display: block; padding: 12px 4px; font-size: 17px; }
  .header.menu-open .header__block:not(.header__block--logo):last-child { padding: 12px 0 4px; }
  .header .subscribe-btn { display: inline-block; }

  /* animate hamburger into an X when open */
  .hamburger.active .hamburger--slice-1 { transform: translateY(11px) rotate(45deg); }
  .hamburger.active .hamburger--slice-2 { opacity: 0; }
  .hamburger.active .hamburger--slice-3 { transform: translateY(-11px) rotate(-45deg); }
}

/* ==========================================================================
   ABOUT 2026 — About Us page
   Reuses REDESIGN 2026 palette + home-* section/card language.
   ========================================================================== */
.about-hero {
  background: var(--cream-panel);
  text-align: center;
  padding: 80px 24px 64px;
}
.about-hero__inner { max-width: 760px; margin: 0 auto; }
.about-hero h1 {
  font-family: var(--font-display); color: var(--brown);
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 600; line-height: 1.15; margin: 0 0 18px;
}
.about-hero p { color: var(--ink); font-size: 1.15rem; line-height: 1.6; margin: 0; }
@media (max-width: 767px) { .about-hero { padding: 52px 18px 44px; } }

/* Intro prose ("What STRONGER is") */
.about-intro { background: #fff; }
.about-intro__inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.about-intro p { color: var(--ink); font-size: 1.08rem; line-height: 1.7; margin: 0 0 18px; }
.about-intro p:last-child { margin-bottom: 0; }

/* Values cards ("What we believe") */
.about-values { background: var(--cream); }
.about-values__grid {
  max-width: 1060px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.about-value {
  background: var(--card-bg); border: 1px solid var(--line); border-radius: 16px;
  padding: 28px 26px; box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.about-value__icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--cream-panel);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.about-value__icon svg { width: 26px; height: 26px; }
.about-value h3 {
  font-family: var(--font-display); color: var(--brown);
  font-size: 1.3rem; font-weight: 600; margin: 0 0 8px;
}
.about-value p { color: var(--ink-soft); font-size: 1rem; line-height: 1.6; margin: 0; }
@media (max-width: 640px) { .about-values__grid { grid-template-columns: 1fr; } }

/* Vetting section (reuses home-parents / home-partner-card / home-badges) */
.about-vetting { background: var(--cream-panel); }

/* Two ways to help */
.about-ways { background: #fff; }
.about-ways__grid {
  max-width: 920px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.about-way {
  display: flex; flex-direction: column; text-align: center;
  background: var(--card-bg); border: 1px solid var(--line); border-radius: 18px;
  padding: 34px 28px; box-shadow: 0 6px 18px rgba(0,0,0,0.07);
}
.about-way h3 {
  font-family: var(--font-display); color: var(--brown);
  font-size: 1.5rem; font-weight: 600; margin: 0 0 10px;
}
.about-way p { color: var(--ink-soft); font-size: 1rem; line-height: 1.6; margin: 0 0 22px; }
.about-way .home-btn { margin-top: auto; align-self: center; }
@media (max-width: 640px) { .about-ways__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   SIGNUP 2026 — Redesigned signup page
   Pixel-faithful lift of the approved mockup. White background, teal accent.
   Reuses REDESIGN 2026 palette/fonts; header + footer unchanged.
   ========================================================================== */
:root {
  --teal:       #74B1B9;   /* signup accent: heading, button, badge */
  --teal-deep:  #5C99A1;   /* hover / pressed */
  --teal-tint:  #E9F4F5;   /* privacy box background */
  --teal-line:  #BFE0E3;   /* privacy box border */
}

/* White page (mockup uses white, not site cream) */
body.signup-page { background-color: #fff; }

.signup-main { max-width: 980px; margin: 0 auto; padding: 0 24px 8px; }

/* ---- Hero: full-bleed watercolor band; boy + badge within content column ---- */
.su-hero { position: relative; margin-top: 6px; }
.su-hero::before {                 /* watercolor wash spans the full page width */
  content: ""; position: absolute; top: 0; bottom: 0;
  left: calc(50% - 50vw); width: 100vw; z-index: -1;
  background: url('../images/signup-wash.webp?v=3') center / 100% 100% no-repeat;
}
.su-hero__inner {                  /* same width + centering as the form/info grid */
  position: relative; max-width: 880px; margin: 0 auto;
  padding: 24px 0 70px; min-height: 200px;
}
.su-hero__boy { display: block; width: 54%; max-width: 500px; height: auto; }
.su-badge {
  position: absolute; right: 0; bottom: 6px;
  width: 14%; max-width: 124px; min-width: 92px; height: auto; display: block;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.12));
}

/* ---- Heading + subtitle ---- */
.su-head { text-align: center; max-width: 720px; margin: 8px auto 0; }
.su-head__title {
  font-family: var(--font-display); color: var(--teal);
  font-weight: 700; line-height: 1.08; margin: 0;
  font-size: clamp(2rem, 6vw, 3.4rem);
}
.su-head__sub {
  color: var(--ink-soft); font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.55; margin: 18px auto 0; max-width: 600px;
}

/* ---- Body: form + info ---- */
.su-body { padding: 36px 0 8px; }
.su-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px 56px;
  align-items: start; max-width: 880px; margin: 0 auto;
}

/* Form */
.su-field { margin-bottom: 22px; }
.su-label {
  display: block; font-family: var(--font-display); color: var(--ink);
  font-weight: 600; font-size: 1.05rem; margin-bottom: 8px;
}
.su-input {
  display: block; width: 100%; box-sizing: border-box;
  font-family: 'Montserrat', sans-serif; font-size: 1rem; color: var(--ink);
  background: #fff; border: 1px solid #D7D2C9; border-radius: 8px;
  padding: 13px 16px; transition: border-color .18s, box-shadow .18s;
}
.su-input::placeholder { color: #A8A29A; }
.su-input:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(116,177,185,0.22);
}
.su-submit {
  display: block; width: 100%; cursor: pointer; margin-top: 6px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: #fff;
  background: var(--teal); border: none; border-radius: 30px; padding: 15px 24px;
  transition: background .2s, transform .05s;
}
.su-submit:hover { background: var(--teal-deep); }
.su-submit:active { transform: translateY(1px); }
.su-submit:disabled { opacity: .7; cursor: default; }
.su-form__error { color: #C0392B; font-size: .92rem; margin: 12px 2px 0; }

/* Inline success confirmation (single opt-in) */
.su-success {
  background: var(--teal-tint); border: 1px solid var(--teal-line);
  border-radius: 14px; padding: 32px 28px; text-align: center;
}
.su-success__check {
  width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--teal); display: grid; place-items: center;
}
.su-success__check svg {
  width: 30px; height: 30px; fill: none; stroke: #fff; stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
}
.su-success__title {
  font-family: var(--font-display); color: var(--teal-deep);
  font-weight: 700; font-size: 1.7rem; margin: 0 0 10px;
}
.su-success__text { color: var(--ink); font-size: 1rem; line-height: 1.6; margin: 0; }

/* What's Included */
.su-incl__title {
  font-family: var(--font-display); color: var(--ink);
  font-weight: 700; font-size: clamp(1.4rem, 3vw, 1.7rem); margin: 0 0 16px;
}
.su-incl__list { list-style: none; margin: 0 0 26px; padding: 0; }
.su-incl__list li {
  position: relative; padding-left: 22px; margin-bottom: 12px;
  color: var(--ink); font-size: 1.02rem; line-height: 1.5;
}
.su-incl__list li::before {
  content: ""; position: absolute; left: 4px; top: 9px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--ink);
}

/* Privacy box */
.su-privacy {
  background: var(--teal-tint); border: 1px solid var(--teal-line);
  border-radius: 14px; padding: 22px 24px;
}
.su-privacy__title {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); color: var(--ink);
  font-weight: 700; font-size: 1.3rem; margin: 0 0 12px;
}
.su-privacy__icon { width: 22px; height: 22px; fill: var(--teal); flex: 0 0 auto; }
.su-privacy__text { color: var(--ink); font-size: .96rem; line-height: 1.6; margin: 0; }
.su-privacy__text strong { color: var(--ink); }

/* Sponsor line */
.su-sponsor {
  text-align: center; color: var(--ink-soft); font-size: 1rem;
  margin: 48px auto 56px; padding-top: 26px;
  border-top: 1px solid var(--line); max-width: 880px;
}
.su-sponsor a { color: var(--teal-deep); text-decoration: underline; }
.su-sponsor a:hover { color: var(--teal); }

/* ---- Responsive ---- */
@media (max-width: 760px) {
  .su-grid { grid-template-columns: 1fr; gap: 34px; max-width: 460px; }
  .su-col--info { order: 2; }
  .su-col--form { order: 1; }
  .su-head__title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
}
