:root {
  --ink: #17212f;
  --muted: #5a6574;
  --line: #dfe6ee;
  --panel: #ffffff;
  --soft: #f6f8fb;
  --soft-blue: #edf6ff;
  --soft-green: #eef9f3;
  --teal: #087b72;
  --teal-dark: #075e59;
  --blue: #2857b8;
  --green: #24835a;
  --yellow: #f3bd30;
  --coral: #df624c;
  --shadow: 0 16px 34px rgba(23, 33, 47, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Nunito, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

body.drawer-open,
body.dialog-open {
  overflow: hidden;
}

body.high-contrast {
  --ink: #050505;
  --muted: #1e1e1e;
  --line: #111111;
  --panel: #ffffff;
  --soft: #ffffff;
  --teal: #004d45;
  --teal-dark: #003a34;
  --blue: #003f9e;
  --coral: #a93018;
}

body.dark-mode {
  --ink: #f5f7fb;
  --muted: #d7dee8;
  --line: #374456;
  --panel: #182233;
  --soft: #101827;
  --soft-blue: #17243a;
  --soft-green: #152d24;
  --teal: #37b8aa;
  --teal-dark: #72d8ce;
  background: var(--soft);
}

body.large-font {
  font-size: 112%;
}

body.calm-mode img {
  filter: saturate(0.72) contrast(0.96);
}

body.calm-mode .hero-overlay {
  background: linear-gradient(90deg, rgba(12, 28, 35, 0.92), rgba(12, 28, 35, 0.72), rgba(12, 28, 35, 0.5));
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 80;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--panel);
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 12px 28px;
  background: color-mix(in srgb, var(--panel) 94%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 7px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(23, 33, 47, 0.12);
}

.brand-mark span {
  border-radius: 6px;
}

.brand-mark span:nth-child(1) {
  background: var(--teal);
}

.brand-mark span:nth-child(2) {
  background: var(--blue);
}

.brand-mark span:nth-child(3) {
  background: var(--yellow);
}

.brand-mark span:nth-child(4) {
  background: var(--coral);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 10px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 850;
  font-size: 0.92rem;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--soft-green);
  color: var(--teal-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 272px;
}

.primary-button,
.secondary-button,
.ghost-button,
.access-button,
.cart-button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 900;
}

.primary-button {
  padding: 0 17px;
  border: 1px solid var(--teal);
  background: var(--teal);
  color: #ffffff;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.secondary-button {
  padding: 0 15px;
  border: 1px solid #aacfc9;
  background: var(--panel);
  color: var(--teal-dark);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  border-color: var(--teal);
}

.secondary-button.on-dark {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.ghost-button,
.access-button {
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.access-button {
  background: var(--soft-blue);
  color: var(--blue);
}

.ghost-button:hover,
.ghost-button:focus-visible,
.access-button:hover,
.access-button:focus-visible {
  background: #e8eef6;
}

.cart-button,
.icon-button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
}

.cart-button {
  position: relative;
  background: var(--ink);
  color: var(--panel);
}

.cart-button span:last-child {
  position: absolute;
  right: -7px;
  top: -7px;
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--coral);
  color: #ffffff;
  font-size: 0.78rem;
}

.icon-button {
  background: #eef2f7;
  color: #152033;
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 70px 32px 46px;
  background-image: url("https://images.unsplash.com/photo-1588072432836-e10032774350?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 24, 34, 0.9), rgba(11, 24, 34, 0.68), rgba(11, 24, 34, 0.26));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.premium-band .eyebrow {
  color: #ffd978;
}

.hero h1,
.section-heading h2,
.catalog-header h2,
.filters h2,
.split-layout h2,
.premium-band h2,
.newsletter h2 {
  margin: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2.35rem, 5vw, 4.15rem);
}

.hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.search-panel {
  width: min(780px, 100%);
  margin-top: 24px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.search-panel label {
  display: block;
  margin: 0 0 8px;
  font-size: 0.9rem;
  font-weight: 900;
}

.search-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 7px 7px 7px 14px;
  border-radius: var(--radius);
  background: #ffffff;
  color: #17212f;
}

.search-row input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #17212f;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.quick-access {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-access a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 18px 28px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 900;
}

.quick-access a:hover,
.quick-access a:focus-visible {
  color: var(--teal-dark);
}

.content-band,
.free-band,
.premium-band,
.newsletter {
  padding: 74px 32px;
}

.content-band.alt {
  background: var(--panel);
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 28px;
}

.compact-heading {
  margin-bottom: 22px;
}

.section-heading h2 {
  max-width: 820px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.section-heading p:not(.eyebrow) {
  max-width: 800px;
  color: var(--muted);
  font-size: 1.03rem;
}

.benefit-grid,
.category-grid,
.free-grid,
.article-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.benefit-card,
.category-card,
.free-card,
.article-card,
.testimonial-grid blockquote,
.product-card,
.trail-card,
.plan-card,
.resource-list,
.price-stack article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 10px 22px rgba(23, 33, 47, 0.07);
}

.benefit-card,
.category-card,
.free-card,
.testimonial-grid blockquote {
  padding: 18px;
}

.benefit-card > span,
.category-card > span,
.free-card > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: var(--soft-blue);
  color: var(--blue);
}

.benefit-card:nth-child(2) > span,
.category-card:nth-child(4n + 2) > span,
.free-card:nth-child(2) > span {
  background: #fff6d9;
  color: #8a6100;
}

.benefit-card:nth-child(3) > span,
.category-card:nth-child(4n + 3) > span,
.free-card:nth-child(3) > span {
  background: var(--soft-green);
  color: var(--green);
}

.benefit-card:nth-child(4) > span,
.category-card:nth-child(4n + 4) > span {
  background: #fff0ed;
  color: #9d3c2c;
}

.benefit-card h3,
.category-card h3,
.free-card h3,
.article-card h3,
.product-card h3,
.resource-list h3,
.price-stack h3 {
  margin: 0 0 8px;
  line-height: 1.2;
  font-size: 1.08rem;
}

.benefit-card p,
.category-card p,
.free-card p,
.article-card p,
.product-card p,
.testimonial-grid p,
.price-stack span,
.split-layout p {
  margin: 0;
  color: var(--muted);
}

.category-card button,
.free-card button {
  margin-top: 16px;
}

.free-band {
  background: var(--soft-green);
}

.free-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.free-card .secondary-button {
  margin-top: auto;
}

.store-layout {
  display: grid;
  grid-template-columns: 312px minmax(0, 1fr);
  gap: 28px;
  padding: 74px 32px;
  width: min(1260px, 100%);
  margin: 0 auto;
}

.filters {
  position: sticky;
  top: 98px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 20px;
  box-shadow: var(--shadow);
}

.filters h2 {
  font-size: 1.55rem;
}

.filters p {
  margin: 8px 0 0;
  color: var(--muted);
}

.filter-block + .filter-block {
  margin-top: 16px;
}

.filter-block label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.84rem;
  font-weight: 950;
}

.filter-block select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  padding: 0 12px;
}

.notice {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  margin-top: 20px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--soft-green);
  color: var(--green);
}

.notice p {
  margin: 0;
  color: color-mix(in srgb, var(--green) 82%, #000 18%);
  font-size: 0.9rem;
}

.catalog-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.catalog-header h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

#resultCount {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.product-image {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #dce7f7;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge,
.access-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 950;
}

.badge {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: #17212f;
}

.access-badge {
  background: var(--soft-blue);
  color: var(--blue);
}

.access-badge.free {
  background: var(--soft-green);
  color: var(--green);
}

.access-badge.premium {
  background: #fff6d9;
  color: #8a6100;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.tags,
.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tags span,
.mini-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  border-radius: var(--radius);
  background: #eef2f7;
  color: #505b6a;
  font-size: 0.76rem;
  font-weight: 850;
}

.product-summary {
  display: grid;
  gap: 6px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-summary div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 8px;
}

.product-summary dt {
  font-weight: 950;
  color: var(--ink);
}

.product-summary dd {
  margin: 0;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.price {
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 950;
}

.product-actions {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.split-layout.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.split-layout h2,
.premium-band h2,
.newsletter h2 {
  max-width: 720px;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.split-layout p {
  max-width: 680px;
  margin: 14px 0 20px;
}

.resource-list {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.resource-list span {
  display: block;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.family-panel {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.family-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-card {
  overflow: hidden;
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-card div {
  padding: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--teal-dark);
  border: 0;
  background: transparent;
  padding: 0;
  font-weight: 950;
}

.testimonials {
  background: var(--soft-blue);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid blockquote {
  margin: 0;
}

.testimonial-grid p {
  font-size: 1rem;
}

.testimonial-grid cite {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-style: normal;
  font-weight: 950;
}

.premium-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr);
  gap: 34px;
  align-items: center;
  background: #17324a;
  color: #ffffff;
}

.premium-content {
  width: min(720px, 100%);
  justify-self: end;
}

.premium-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
}

.premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.price-stack {
  display: grid;
  gap: 12px;
  width: min(430px, 100%);
}

.price-stack article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.price-stack h3 {
  color: #ffffff;
}

.price-stack p {
  margin: 0;
  color: #ffd978;
  font-size: 1.55rem;
  font-weight: 950;
}

.price-stack span {
  color: rgba(255, 255, 255, 0.82);
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 24px;
  align-items: center;
  background: var(--panel);
}

.newsletter > div,
.newsletter-form {
  width: min(620px, 100%);
}

.newsletter > div {
  justify-self: end;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter-form input {
  min-height: 48px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  padding: 0 14px;
}

.cart-drawer {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(430px, 100%);
  height: 100vh;
  background: var(--panel);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateX(104%);
  transition: transform 160ms ease;
}

body.calm-mode .cart-drawer {
  transition: none;
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-header,
.drawer-footer {
  padding: 20px;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2 {
  margin: 0;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 10px 20px;
}

.cart-empty {
  display: grid;
  place-items: center;
  min-height: 260px;
  color: var(--muted);
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr 36px;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  object-fit: cover;
}

.cart-item h3 {
  margin: 0 0 4px;
  font-size: 0.94rem;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.remove-item {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: var(--radius);
  background: #fff0ed;
  color: #a83a26;
}

.drawer-footer {
  border-top: 1px solid var(--line);
}

.subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 1.08rem;
}

.scrim {
  position: fixed;
  z-index: 30;
  inset: 0;
  background: rgba(10, 22, 32, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

body.calm-mode .scrim {
  transition: none;
}

.scrim.open {
  opacity: 1;
  pointer-events: auto;
}

dialog {
  width: min(650px, calc(100% - 32px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--panel);
  color: var(--ink);
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(10, 22, 32, 0.42);
}

.dialog-close {
  position: absolute;
  right: 14px;
  top: 14px;
}

.dialog-content h2 {
  margin: 0 48px 10px 0;
  line-height: 1.15;
}

.dialog-content p {
  color: var(--muted);
}

.dialog-list,
.objective-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.dialog-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.dialog-form label,
.toggle-row {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

.dialog-form input,
.dialog-form select,
.dialog-form textarea {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  padding: 10px 12px;
}

.dialog-form textarea {
  min-height: 92px;
  resize: vertical;
}

.access-grid {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.toggle-row {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.toggle-row input {
  width: 22px;
  height: 22px;
}

.article-page {
  background: var(--panel);
}

.article-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.article-shell {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 54px 24px 80px;
}

.article-shell h1 {
  max-width: 860px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
}

.article-lead {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 34px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.article-body {
  display: grid;
  gap: 18px;
  color: var(--ink);
}

.article-body h2 {
  margin: 18px 0 0;
  font-size: 1.45rem;
  line-height: 1.18;
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 1.03rem;
}

.article-body p {
  margin: 0;
}

.article-body ul {
  margin: 0;
  padding-left: 22px;
}

.source-note {
  margin-top: 16px;
  padding: 16px;
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  background: var(--soft-green);
  color: color-mix(in srgb, var(--green) 75%, #000 25%);
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 1160px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .header-actions {
    min-width: auto;
  }

  .benefit-grid,
  .category-grid,
  .free-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-layout,
  .split-layout,
  .split-layout.reverse,
  .premium-band,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .premium-content,
  .newsletter > div {
    justify-self: start;
  }

  .filters {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .filter-block + .filter-block,
  .notice {
    margin-top: 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .content-band,
  .free-band,
  .premium-band,
  .newsletter,
  .store-layout {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header {
    min-height: auto;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-actions .button-text {
    display: none;
  }

  .ghost-button,
  .access-button {
    width: 44px;
    padding: 0;
  }

  .hero {
    min-height: 620px;
    padding-top: 48px;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    width: 100%;
  }

  .search-row,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .search-row > span {
    display: none;
  }

  .search-row .primary-button {
    width: 100%;
  }

  .quick-access,
  .benefit-grid,
  .category-grid,
  .free-grid,
  .article-grid,
  .testimonial-grid,
  .product-grid,
  .filters {
    grid-template-columns: 1fr;
  }

  .catalog-header {
    align-items: flex-start;
    flex-direction: column;
  }

  #resultCount {
    white-space: normal;
  }
}
