/* Lumihome 0604: magazine, article, Lumi Club and referral pages. */
:root {
  --lh0604-green: #3fa568;
  --lh0604-green-dark: #286b43;
  --lh0604-ink: #222222;
  --lh0604-muted: #686868;
  --lh0604-line: #e5e5e2;
  --lh0604-soft: #f6f6f2;
  --lh0604-cream: #f4f1e8;
  --lh0604-radius: 12px;
}

.lh0604-legacy { display: none !important; }

#main.lh0604-page {
  color: var(--lh0604-ink);
  background: #fff;
  font-family: Poppins, Arial, sans-serif;
}

#main.lh0604-page *,
#main.lh0604-page *::before,
#main.lh0604-page *::after { box-sizing: border-box; }

#main.lh0604-page img { max-width: 100%; }
#main.lh0604-page a { color: inherit; }
#main.lh0604-page button,
#main.lh0604-page input { font: inherit; }

.lh0604-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.lh0604-breadcrumb {
  width: min(1400px, calc(100% - 48px));
  margin-inline: auto;
  padding: 16px 0;
  color: #6f6f6f;
  font-size: 12px;
}

.lh0604-breadcrumb a { text-decoration: none; }
.lh0604-breadcrumb span { margin: 0 8px; color: #b1b1b1; }

.lh0604-eyebrow {
  color: var(--lh0604-green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lh0604-section-title {
  margin: 0;
  font-size: clamp(27px, 3.2vw, 40px);
  line-height: 1.16;
  text-align: center;
}

.lh0604-section-intro {
  max-width: 680px;
  margin: 12px auto 0;
  color: var(--lh0604-muted);
  line-height: 1.65;
  text-align: center;
}

.lh0604-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border: 1px solid var(--lh0604-green-dark);
  border-radius: 4px;
  background: var(--lh0604-green-dark);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.lh0604-btn--light {
  border-color: #fff;
  background: #fff;
  color: var(--lh0604-ink) !important;
}

.lh0604-btn--outline {
  border-color: currentColor;
  background: transparent;
  color: inherit !important;
}

/* Magazine */
.lh0604-mag-heading {
  padding: 42px 24px 30px;
  text-align: center;
}

.lh0604-mag-heading h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.15;
}

.lh0604-mag-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
  min-height: 390px;
  margin-bottom: 58px;
  overflow: hidden;
  border-radius: var(--lh0604-radius);
  background: var(--lh0604-green);
  color: #fff !important;
  text-decoration: none;
}

.lh0604-mag-feature img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.lh0604-mag-feature__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(32px, 5vw, 62px);
}

.lh0604-mag-feature__copy h2 {
  margin: 12px 0 16px;
  color: #fff;
  font-size: clamp(25px, 3vw, 39px);
  line-height: 1.18;
}

.lh0604-mag-feature__copy p { margin: 0 0 24px; line-height: 1.7; }

.lh0604-category-strip {
  padding-bottom: 62px;
}

.lh0604-category-strip h2 {
  margin: 0 0 25px;
  font-size: clamp(24px, 2.8vw, 34px);
  text-align: center;
}

.lh0604-category-tiles {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.lh0604-category-tile {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: #222;
  color: #fff;
  cursor: pointer;
}

.lh0604-category-tile img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform .3s ease;
}

.lh0604-category-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.68));
  content: "";
}

.lh0604-category-tile span {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 14px;
  left: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.lh0604-category-tile:hover img { transform: scale(1.04); }

.lh0604-mag-listing {
  padding: 62px 0 74px;
  background: var(--lh0604-soft);
}

.lh0604-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: 28px 0 42px;
}

.lh0604-tab {
  padding: 9px 18px;
  border: 1px solid #c9cdc8;
  border-radius: 999px;
  background: #fff;
  color: var(--lh0604-ink);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.lh0604-tab[aria-selected="true"] {
  border-color: var(--lh0604-ink);
  background: var(--lh0604-ink);
  color: #fff;
}

.lh0604-mag-group + .lh0604-mag-group { margin-top: 58px; }
.lh0604-mag-group[hidden] { display: none; }

.lh0604-mag-group__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.lh0604-mag-group__heading h2 { margin: 0; font-size: clamp(23px, 2.6vw, 32px); }
.lh0604-mag-group__heading p { margin: 4px 0 0; color: var(--lh0604-muted); }

.lh0604-article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.lh0604-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  color: inherit !important;
  text-decoration: none;
  box-shadow: 0 2px 14px rgba(25,35,29,.06);
}

.lh0604-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.lh0604-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.lh0604-card__body small {
  color: var(--lh0604-green-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lh0604-card h3 {
  margin: 9px 0 17px;
  color: var(--lh0604-ink);
  font-size: 15px;
  line-height: 1.45;
}

.lh0604-card__more {
  margin-top: auto;
  color: var(--lh0604-green-dark);
  font-size: 12px;
  font-weight: 700;
}

.lh0604-solar-banner {
  display: flex;
  min-height: 390px;
  align-items: center;
  margin: 72px auto 0;
  padding: 54px;
  border-radius: var(--lh0604-radius);
  background: linear-gradient(90deg, rgba(10,35,22,.8), rgba(10,35,22,.1)), var(--lh0604-banner) center/cover;
  color: #fff;
}

.lh0604-solar-banner__copy { max-width: 520px; }
.lh0604-solar-banner h2 { margin: 8px 0 14px; color: #fff; font-size: clamp(29px, 4vw, 46px); line-height: 1.12; }
.lh0604-solar-banner p { margin: 0 0 22px; line-height: 1.7; }

.lh0604-newsletter {
  padding: 58px 24px;
  background: var(--lh0604-cream);
  text-align: center;
}

.lh0604-newsletter h2 { margin: 0 0 8px; font-size: 25px; }
.lh0604-newsletter p { margin: 0 0 20px; color: var(--lh0604-muted); }
.lh0604-newsletter form { display: flex; max-width: 520px; margin: auto; }
.lh0604-newsletter input { min-width: 0; flex: 1; padding: 13px 15px; border: 1px solid #bbb; background: #fff; }
.lh0604-newsletter button { border-radius: 0; }

/* Article */
.lh0604-article-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 510px;
  background: #f1f1ee;
}

.lh0604-article-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 90px);
}

.lh0604-article-hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(31px, 4.3vw, 52px);
  line-height: 1.1;
}

.lh0604-article-hero__meta { color: var(--lh0604-muted); font-size: 12px; }
.lh0604-article-hero img { width: 100%; height: 100%; min-height: 510px; object-fit: cover; }

.lh0604-article-layout {
  display: grid;
  grid-template-columns: 150px minmax(0, 650px);
  justify-content: center;
  gap: 54px;
  padding: 64px 24px 82px;
}

.lh0604-article-author {
  align-self: start;
  padding-top: 7px;
  color: var(--lh0604-muted);
  font-size: 12px;
  line-height: 1.7;
}

.lh0604-article-author strong { display: block; color: var(--lh0604-ink); font-size: 13px; }
.lh0604-article-author__avatar { display: grid; width: 48px; height: 48px; margin-bottom: 12px; place-items: center; border-radius: 50%; background: var(--lh0604-green-dark); color: #fff; font-weight: 700; }

.lh0604-article-content { font-family: Arial, sans-serif; font-size: 17px; line-height: 1.8; }
.lh0604-article-content > p:first-child { margin-top: 0; font-size: 19px; line-height: 1.7; }
.lh0604-article-content h2 { margin: 48px 0 14px; font-family: Poppins, Arial, sans-serif; font-size: clamp(24px, 3vw, 31px); line-height: 1.25; }
.lh0604-article-content h3 { margin: 34px 0 10px; font-family: Poppins, Arial, sans-serif; font-size: 21px; line-height: 1.35; }
.lh0604-article-content ul { padding-left: 21px; }
.lh0604-article-content li + li { margin-top: 7px; }
.lh0604-article-content blockquote { margin: 32px 0; padding: 22px 26px; border-left: 4px solid var(--lh0604-green); background: #eef7f0; color: #20412d; font-size: 17px; font-style: italic; }
.lh0604-article-content figure { margin: 40px 0; }
.lh0604-article-content figure img { width: 100%; border-radius: 4px; }
.lh0604-article-content figcaption { margin-top: 8px; color: var(--lh0604-muted); font-size: 11px; text-align: center; }

.lh0604-related { padding: 70px 0 80px; background: var(--lh0604-soft); }
.lh0604-related .lh0604-article-grid { max-width: 940px; grid-template-columns: repeat(3, 1fr); margin: 35px auto 0; }
.lh0604-related .lh0604-card h3 { text-align: center; }
.lh0604-related .lh0604-card__more { align-self: center; }

/* Loyalty and referral */
.lh0604-program-hero {
  min-height: 560px;
  padding: 75px 0;
  background: linear-gradient(90deg, rgba(9,27,19,.82), rgba(9,27,19,.1)), var(--lh0604-hero) center/cover;
  color: #fff;
}

.lh0604-program-hero .lh0604-shell { display: flex; min-height: 410px; align-items: center; }
.lh0604-program-hero__copy { max-width: 590px; }
.lh0604-program-hero h1 { margin: 12px 0 16px; color: #fff; font-size: clamp(35px, 5vw, 58px); line-height: 1.08; }
.lh0604-program-hero p { max-width: 530px; margin: 0 0 24px; font-size: 16px; line-height: 1.7; }
.lh0604-program-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.lh0604-steps { padding: 68px 0; }
.lh0604-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-top: 38px; }
.lh0604-step { position: relative; text-align: center; }
.lh0604-step:not(:last-child)::after { position: absolute; top: 28px; left: calc(50% + 38px); width: calc(100% - 76px); border-top: 1px dashed #aeb9b1; content: ""; }
.lh0604-step__icon { position: relative; z-index: 1; display: grid; width: 58px; height: 58px; margin: 0 auto 17px; place-items: center; border-radius: 50%; background: var(--lh0604-green-dark); color: #fff; font-size: 20px; font-weight: 700; }
.lh0604-step h3 { margin: 0 0 7px; font-size: 17px; }
.lh0604-step p { margin: 0; color: var(--lh0604-muted); font-size: 13px; line-height: 1.6; }

.lh0604-member-panel { margin-top: 38px; padding: 30px; border: 1px solid var(--lh0604-line); border-radius: 8px; background: var(--lh0604-soft); text-align: center; }
.lh0604-member-panel[hidden] { display: none; }
.lh0604-member-panel strong { display: block; margin: 7px 0; color: var(--lh0604-green-dark); font-size: clamp(35px, 5vw, 52px); }
.lh0604-member-panel__actions { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }

.lh0604-program-section { padding: 76px 0; }
.lh0604-program-section--soft { background: var(--lh0604-soft); }

.lh0604-mission-grid,
.lh0604-reward-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.lh0604-action-card {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  overflow: hidden;
  border: 1px solid var(--lh0604-line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

button.lh0604-action-card { width: 100%; color: inherit; cursor: pointer; }
.lh0604-action-card__icon { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; background: #e9f4ec; color: var(--lh0604-green-dark); font-size: 23px; }
.lh0604-action-card h3 { margin: 14px 0 5px; font-size: 15px; line-height: 1.35; }
.lh0604-action-card p { margin: 0; color: var(--lh0604-muted); font-size: 12px; line-height: 1.55; }
.lh0604-action-card strong { display: block; margin-top: 10px; color: var(--lh0604-green-dark); }

.lh0604-auth-gate {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(255,255,255,.97);
}

.lh0604-action-card.is-gated .lh0604-auth-gate { display: flex; }
.lh0604-auth-gate p { margin: 0 0 13px; color: var(--lh0604-ink); }
.lh0604-auth-gate__actions { display: flex; gap: 8px; }
.lh0604-auth-gate .lh0604-btn { min-height: 38px; padding: 7px 13px; font-size: 11px; }

.lh0604-tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.lh0604-tier { position: relative; padding: 34px 28px; border: 1px solid var(--lh0604-line); border-radius: 9px; background: #fff; }
.lh0604-tier--silver { border: 2px solid #88979f; }
.lh0604-tier--gold { border: 2px solid #c19a37; background: #242525; color: #fff; }
.lh0604-tier__badge { display: inline-block; padding: 5px 10px; border-radius: 999px; background: #ece7dd; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.lh0604-tier--silver .lh0604-tier__badge { background: #e7ecef; }
.lh0604-tier--gold .lh0604-tier__badge { background: #c19a37; color: #fff; }
.lh0604-tier h3 { margin: 16px 0 5px; color: inherit; font-size: 25px; }
.lh0604-tier p { color: inherit; opacity: .75; }
.lh0604-tier ul { padding-left: 19px; font-size: 13px; line-height: 1.8; }

.lh0604-faq-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr); gap: 54px; margin-top: 38px; }
.lh0604-faq details { border-bottom: 1px solid var(--lh0604-line); }
.lh0604-faq summary { position: relative; padding: 19px 36px 19px 0; font-size: 14px; font-weight: 600; list-style: none; cursor: pointer; }
.lh0604-faq summary::-webkit-details-marker { display: none; }
.lh0604-faq summary::after { position: absolute; top: 18px; right: 4px; content: "+"; font-size: 19px; font-weight: 400; }
.lh0604-faq details[open] summary::after { content: "−"; }
.lh0604-faq details p { margin: -5px 40px 20px 0; color: var(--lh0604-muted); font-size: 13px; line-height: 1.7; }
.lh0604-contact-card { align-self: start; padding: 30px; border-radius: 8px; background: var(--lh0604-green-dark); color: #fff; }
.lh0604-contact-card h3 { margin: 0 0 10px; color: #fff; font-size: 22px; }
.lh0604-contact-card p { font-size: 13px; line-height: 1.7; }

.lh0604-referral-teaser {
  min-height: 440px;
  padding: 62px 0;
  background: linear-gradient(90deg, rgba(8,28,18,.74), rgba(8,28,18,.05)), var(--lh0604-referral) center/cover;
}
.lh0604-referral-teaser__panel { width: min(460px, 100%); padding: 38px; background: #fff; }
.lh0604-referral-teaser h2 { margin: 0 0 12px; font-size: clamp(28px, 3.8vw, 42px); line-height: 1.13; }
.lh0604-referral-teaser p { color: var(--lh0604-muted); line-height: 1.65; }

/* Referral page */
.lh0604-referral-title { padding: 40px 24px 26px; text-align: center; }
.lh0604-referral-title h1 { margin: 0; font-size: clamp(30px, 4vw, 45px); }
.lh0604-referral-hero {
  min-height: 650px;
  padding: 58px 0;
  background: linear-gradient(90deg, rgba(11,28,20,.35), rgba(11,28,20,.05)), var(--lh0604-referral) center/cover;
}
.lh0604-referral-box { width: min(470px, 100%); padding: 34px; background: rgba(255,255,255,.97); box-shadow: 0 18px 50px rgba(0,0,0,.17); }
.lh0604-referral-box h2 { margin: 0 0 9px; font-size: clamp(25px, 3.4vw, 37px); line-height: 1.18; text-align: center; }
.lh0604-referral-box > p { margin: 0 0 22px; color: var(--lh0604-muted); font-size: 13px; line-height: 1.65; text-align: center; }
.lh0604-referral-tabs { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 20px; border-bottom: 1px solid var(--lh0604-line); }
.lh0604-referral-tab { padding: 10px; border: 0; border-bottom: 2px solid transparent; background: transparent; font-size: 12px; font-weight: 600; cursor: pointer; }
.lh0604-referral-tab[aria-selected="true"] { border-color: var(--lh0604-green-dark); color: var(--lh0604-green-dark); }
.lh0604-referral-panel[hidden] { display: none; }
.lh0604-socials { display: flex; justify-content: center; gap: 10px; margin-bottom: 18px; }
.lh0604-socials a { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: #eff2ef; font-size: 11px; font-weight: 700; text-decoration: none; }
.lh0604-copy-row { display: flex; }
.lh0604-copy-row input { min-width: 0; flex: 1; padding: 12px; border: 1px solid #ccd0cc; font-size: 11px; }
.lh0604-copy-row button { border-radius: 0; }
.lh0604-email-form { display: grid; gap: 10px; }
.lh0604-email-form input { padding: 12px; border: 1px solid #ccd0cc; }
.lh0604-referral-history { display: block; margin-top: 19px; color: var(--lh0604-green-dark) !important; font-size: 12px; font-weight: 700; text-align: center; }
.lh0604-referral-how { padding: 76px 0; }

.lh0604-dialog {
  width: min(520px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 25px 80px rgba(0,0,0,.25);
}
.lh0604-dialog::backdrop { background: rgba(20,25,22,.56); }
.lh0604-dialog__inner { padding: 32px; }
.lh0604-dialog h2 { margin: 0 0 9px; font-size: 24px; }
.lh0604-dialog p { color: var(--lh0604-muted); line-height: 1.65; }
.lh0604-dialog__close { position: absolute; top: 10px; right: 12px; border: 0; background: transparent; font-size: 25px; cursor: pointer; }

@media (max-width: 1050px) {
  .lh0604-category-tiles { grid-template-columns: repeat(3, 1fr); }
  .lh0604-article-grid,
  .lh0604-mission-grid,
  .lh0604-reward-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .lh0604-shell,
  .lh0604-breadcrumb { width: min(100% - 32px, 1180px); }
  .lh0604-breadcrumb { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .lh0604-mag-heading { padding: 30px 18px 22px; }
  .lh0604-mag-feature { grid-template-columns: 1fr; margin-bottom: 42px; }
  .lh0604-mag-feature img { min-height: 0; aspect-ratio: 1.45; }
  .lh0604-mag-feature__copy { padding: 28px 24px 32px; }
  .lh0604-category-tiles { display: flex; margin-right: -16px; padding-right: 16px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .lh0604-category-tile { min-width: 145px; min-height: 190px; scroll-snap-align: start; }
  .lh0604-category-tile img { min-height: 190px; }
  .lh0604-mag-listing { padding: 48px 0 56px; }
  .lh0604-tabs { flex-wrap: nowrap; justify-content: flex-start; margin-right: -16px; padding-right: 16px; overflow-x: auto; }
  .lh0604-tab { flex: 0 0 auto; }
  .lh0604-mag-group__heading { align-items: start; flex-direction: column; }
  .lh0604-article-grid { grid-template-columns: 1fr 1fr; gap: 13px; }
  .lh0604-card__body { padding: 13px; }
  .lh0604-card h3 { font-size: 13px; }
  .lh0604-solar-banner { min-height: 430px; margin-top: 48px; padding: 30px 24px; background-position: 60% center; }
  .lh0604-newsletter form { flex-direction: column; gap: 8px; }
  .lh0604-newsletter button { border-radius: 4px; }

  .lh0604-article-hero { display: flex; min-height: 0; flex-direction: column-reverse; }
  .lh0604-article-hero img { min-height: 0; aspect-ratio: 1.25; }
  .lh0604-article-hero__copy { padding: 34px 20px 40px; }
  .lh0604-article-layout { display: block; padding: 42px 20px 60px; }
  .lh0604-article-author { display: flex; align-items: center; gap: 12px; margin-bottom: 30px; }
  .lh0604-article-author__avatar { flex: 0 0 auto; margin: 0; }
  .lh0604-article-content { font-size: 16px; line-height: 1.75; }
  .lh0604-related { padding: 55px 0; }
  .lh0604-related .lh0604-article-grid { display: flex; margin-right: -16px; padding-right: 16px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .lh0604-related .lh0604-card { min-width: 78%; scroll-snap-align: start; }

  .lh0604-program-hero { min-height: 620px; padding: 55px 0; background-position: 58% center; }
  .lh0604-program-hero .lh0604-shell { min-height: 510px; align-items: end; }
  .lh0604-program-hero__copy { padding: 26px 22px; background: rgba(12,30,21,.74); }
  .lh0604-steps { padding: 52px 0; }
  .lh0604-steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .lh0604-step:not(:last-child)::after { top: 58px; left: 50%; width: 0; height: 28px; border-top: 0; border-left: 1px dashed #aeb9b1; }
  .lh0604-member-panel__actions { flex-direction: column; }
  .lh0604-program-section { padding: 58px 0; }
  .lh0604-mission-grid,
  .lh0604-reward-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .lh0604-action-card { min-height: 190px; padding: 18px 12px; }
  .lh0604-tier-grid { display: flex; margin-right: -16px; padding: 4px 16px 12px 0; overflow-x: auto; scroll-snap-type: x mandatory; }
  .lh0604-tier { min-width: 86%; scroll-snap-align: start; }
  .lh0604-faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .lh0604-referral-teaser { min-height: 540px; padding-top: 180px; background-position: 62% center; }
  .lh0604-referral-teaser__panel { padding: 28px 24px; }

  .lh0604-referral-title { padding-top: 28px; }
  .lh0604-referral-hero { min-height: 760px; padding: 260px 0 32px; background-position: 60% center; }
  .lh0604-referral-box { padding: 28px 20px; }
  .lh0604-referral-how { padding: 58px 0; }
}

@media (max-width: 430px) {
  .lh0604-article-grid { grid-template-columns: 1fr; }
  .lh0604-mission-grid,
  .lh0604-reward-grid { grid-template-columns: 1fr 1fr; }
  .lh0604-copy-row { flex-direction: column; gap: 8px; }
  .lh0604-copy-row button { border-radius: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .lh0604-category-tile img { transition: none; }
}
