:root {
  --zd-brand-yellow: #f8de08;
  --zd-ink: #171717;
  --zd-gray: #e6e6e6;
  --zd-acid: #c9ff2e;
  --zd-cyan: #34e5d2;
  --zd-purple: #a888ff;
  --zd-paper: #f7f6f1;
  --zd-white: #fff;
  --zd-muted: #74746f;
  --zd-line: 1.5px;
  --zd-radius: 42px;
  --zd-radius-small: 24px;
  --zd-gutter: clamp(20px, 5vw, 100px);
  --zd-shell: 1760px;
  --zd-header-height: 104px;
  --zd-grid-unit: max(42px, calc((100vw - (var(--zd-gutter) * 2)) / 12));
  --zd-font-body: "OPPO Sans 4.0", "OPPO Sans", OPPOSans, "PingFang SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  --zd-font-cn: var(--zd-font-body);
  --zd-font-num: "Loyo Sans", "Arial Black", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  color-scheme: light;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--zd-ink);
  background: var(--zd-paper);
  font-family: var(--zd-font-cn);
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 300;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
strong,
b {
  font-weight: 600;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

:focus-visible {
  outline: 3px solid var(--zd-purple);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.zd-shell {
  width: min(var(--zd-shell), calc(100% - (var(--zd-gutter) * 2)));
  margin-inline: auto;
}

.zd-grid-bg {
  background-image:
    linear-gradient(to right, rgb(23 23 23 / 0.065) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(23 23 23 / 0.065) 1px, transparent 1px);
  background-position: center top;
  background-size: var(--zd-grid-unit) var(--zd-grid-unit);
}

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

.zd-skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 18px;
  color: var(--zd-white);
  background: var(--zd-ink);
  border-radius: 999px;
  transform: translateY(-160%);
}

.zd-skip-link:focus {
  transform: none;
}

/* Header */
.zd-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  min-height: var(--zd-header-height);
  background:
    radial-gradient(circle at 30% 10%, rgb(201 255 46 / 0.12), transparent 26%),
    radial-gradient(circle at 78% 10%, rgb(168 136 255 / 0.09), transparent 27%),
    rgb(247 246 241 / 0.95);
  border-bottom: var(--zd-line) solid rgb(23 23 23 / 0.16);
  backdrop-filter: blur(16px);
}

.zd-header__spectrum {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--zd-brand-yellow), var(--zd-acid) 28%, var(--zd-cyan) 57%, var(--zd-purple) 85%, transparent 85%);
}

.zd-header__inner {
  display: grid;
  grid-template-columns: minmax(146px, 240px) 1fr auto;
  align-items: center;
  width: min(1860px, calc(100% - clamp(28px, 5vw, 96px)));
  min-height: var(--zd-header-height);
  margin-inline: auto;
  gap: clamp(24px, 3vw, 70px);
}

.zd-header__brand {
  display: inline-flex;
  width: clamp(150px, 10.5vw, 205px);
  min-width: 0;
}

.zd-header__brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.zd-nav {
  justify-self: center;
}

.zd-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 42px);
}

.zd-nav li {
  position: relative;
}

.zd-nav__submenu {
  position: absolute;
  top: calc(100% - 14px);
  left: 50%;
  display: none !important;
  width: max-content;
  min-width: 180px;
  padding: 10px;
  gap: 0 !important;
  background: rgb(255 255 255 / 0.98);
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgb(23 23 23 / 0.14);
  transform: translateX(-50%);
}

.zd-nav li:hover > .zd-nav__submenu,
.zd-nav li:focus-within > .zd-nav__submenu {
  display: block !important;
}

.zd-nav__submenu a {
  padding: 10px 14px;
}

.zd-nav__submenu a::after {
  display: none;
}

.zd-nav a {
  position: relative;
  display: block;
  padding: 34px 2px 30px;
  color: #555550;
  font-size: clamp(14px, 0.9vw, 17px);
  font-weight: 400;
  white-space: nowrap;
}

.zd-nav a::after {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 0;
  height: 5px;
  content: "";
  background: var(--zd-brand-yellow);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.zd-nav a:hover,
.zd-nav a.is-active {
  color: var(--zd-ink);
}

.zd-nav a:hover::after,
.zd-nav a.is-active::after {
  width: 30px;
}

.zd-header__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 44px;
  padding-inline: 15px;
  color: var(--zd-white);
  background: var(--zd-ink);
  border-radius: 999px;
  font-family: var(--zd-font-num);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.zd-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 16px;
  color: var(--zd-ink);
  background: transparent;
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: 999px;
  cursor: pointer;
}

/* Shared UI */
.zd-eyebrow,
.zd-kicker,
.zd-section-label {
  font-size: clamp(13px, 0.86vw, 16px);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.zd-section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #5f5f5a;
}

.zd-section-label > span {
  display: inline-block;
  width: 32px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--zd-brand-yellow);
  border-radius: 999px;
}

.zd-pill-row,
.zd-actions,
.zd-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.zd-pill,
.zd-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 18px;
  background: rgb(255 255 255 / 0.55);
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.zd-filter {
  cursor: pointer;
}

.zd-filter:hover,
.zd-filter.is-active {
  color: var(--zd-white);
  background: var(--zd-ink);
}

.zd-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 56px;
  padding: 12px 28px;
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.zd-button:hover {
  transform: translateY(-2px);
}

.zd-button--primary {
  color: var(--zd-white);
  background: var(--zd-ink);
}

.zd-button--outline {
  color: var(--zd-ink);
  background: rgb(255 255 255 / 0.5);
}

.zd-text-link {
  display: inline-flex;
  margin-top: 28px;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
}

.zd-section {
  padding: clamp(76px, 8vw, 150px) 0;
}

.zd-section--compact {
  padding: clamp(34px, 4vw, 72px) 0;
}

.zd-section--listing {
  padding-top: 24px;
}

.zd-section-heading {
  max-width: 1060px;
  margin-bottom: clamp(36px, 4.5vw, 82px);
}

.zd-section-heading .zd-section-label {
  margin-bottom: 26px;
}

.zd-section-heading h2 {
  max-width: 16ch;
  font-size: clamp(40px, 5.3vw, 94px);
}

.zd-section-heading > p:not(.zd-section-label) {
  max-width: 720px;
  margin-top: 24px;
  color: var(--zd-muted);
}

.zd-section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: 1.35fr 0.8fr;
  align-items: end;
  gap: clamp(36px, 8vw, 150px);
}

.zd-section-heading--split > p {
  padding-bottom: 12px;
}

/* Home hero */
.zd-hero {
  position: relative;
  overflow: hidden;
}

.zd-hero--home {
  min-height: calc(100svh - var(--zd-header-height));
  background-color: var(--zd-brand-yellow);
}

.zd-hero--home::after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 73% 35%, rgb(52 229 210 / 0.75), transparent 34%),
    radial-gradient(circle at 42% 80%, rgb(168 136 255 / 0.5), transparent 32%),
    linear-gradient(135deg, rgb(255 255 255 / 0.78), rgb(255 255 255 / 0.15));
  opacity: 0.8;
}

.zd-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100svh - var(--zd-header-height));
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.24fr);
  align-items: center;
  gap: clamp(42px, 5vw, 96px);
  padding-block: clamp(70px, 8vw, 138px);
}

.zd-hero__copy {
  position: relative;
  z-index: 2;
}

.zd-hero__copy .zd-pill-row {
  margin-bottom: clamp(34px, 4vw, 68px);
}

.zd-hero__copy .zd-eyebrow {
  margin-bottom: 20px;
}

.zd-hero__copy h1 {
  max-width: 8ch;
  font-size: clamp(64px, 7vw, 132px);
  font-weight: 600;
  line-height: 0.96;
}

.zd-hero__intro {
  max-width: 650px;
  margin-top: 34px;
  color: rgb(23 23 23 / 0.72);
  font-size: clamp(18px, 1.5vw, 26px);
  line-height: 1.75;
}

.zd-hero__copy .zd-actions {
  margin-top: 40px;
}

.zd-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 44px;
  margin-top: clamp(44px, 5vw, 88px);
  padding-top: 30px;
  border-top: 1px solid rgb(23 23 23 / 0.24);
}

.zd-hero__stats > div {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.zd-hero__stats dt {
  font-family: var(--zd-font-num);
  font-size: clamp(28px, 2.6vw, 48px);
  font-weight: 800;
  line-height: 1;
}

.zd-hero__stats dd {
  color: rgb(23 23 23 / 0.68);
  font-size: 14px;
}

.zd-hero__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.08 / 1;
  background: rgb(255 255 255 / 0.4);
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: clamp(36px, 4vw, 72px);
  box-shadow: 18px 20px 0 rgb(23 23 23 / 0.12);
}

.zd-hero__media > picture,
.zd-channel-hero__media > picture,
.zd-detail-hero__media > picture,
.zd-content-card__media > picture {
  display: block;
  width: 100%;
  height: 100%;
}

.zd-hero__media > img,
.zd-hero__media > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zd-hero__badge {
  position: absolute;
  top: 30px;
  right: 30px;
  display: grid;
  width: 118px;
  aspect-ratio: 1;
  place-items: center;
  padding: 16px;
  text-align: center;
  background: var(--zd-brand-yellow);
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: 50%;
  font-weight: 600;
}

.zd-hero__media-note {
  position: absolute;
  bottom: 28px;
  left: 28px;
  max-width: 55%;
  padding: 17px 22px;
  background: rgb(255 255 255 / 0.9);
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: 18px;
  box-shadow: 8px 9px 0 var(--zd-ink);
  font-weight: 500;
}

/* Channel */
.zd-channel-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 11vw, 200px) 0 clamp(68px, 8vw, 140px);
  background-color: var(--zd-paper);
  background-image:
    radial-gradient(circle at 90% 34%, rgb(201 255 46 / 0.42), transparent 26%),
    radial-gradient(circle at 4% 80%, rgb(52 229 210 / 0.2), transparent 28%),
    linear-gradient(to right, rgb(23 23 23 / 0.065) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(23 23 23 / 0.065) 1px, transparent 1px);
}

.zd-channel-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  align-items: center;
  gap: clamp(50px, 8vw, 170px);
}

.zd-channel-hero__copy .zd-section-label {
  margin-bottom: 34px;
}

.zd-channel-hero__copy h1 {
  max-width: 11ch;
  font-size: clamp(62px, 7vw, 126px);
}

.zd-channel-hero__copy > p:not(.zd-section-label) {
  max-width: 700px;
  margin-top: 34px;
  color: var(--zd-muted);
  font-size: clamp(18px, 1.4vw, 25px);
}

.zd-channel-hero__media {
  overflow: hidden;
  aspect-ratio: 1.1 / 1;
  background: var(--zd-white);
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: var(--zd-radius);
}

.zd-channel-hero__media img,
.zd-channel-hero__media picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zd-metrics,
.zd-fact-strip {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  background: var(--zd-white);
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: var(--zd-radius);
}

.zd-metrics > div,
.zd-fact-strip > div {
  min-width: 0;
  padding: clamp(28px, 3.5vw, 64px);
  border-right: 1px solid rgb(23 23 23 / 0.22);
}

.zd-metrics > div:last-child,
.zd-fact-strip > div:last-child {
  border-right: 0;
}

.zd-metrics dt {
  margin-bottom: clamp(36px, 5vw, 78px);
  font-family: var(--zd-font-num);
  font-size: clamp(48px, 6vw, 104px);
  font-weight: 800;
  line-height: 0.9;
}

.zd-metrics dd,
.zd-fact-strip dd {
  display: grid;
  gap: 8px;
}

.zd-metrics dd strong,
.zd-fact-strip dd {
  font-size: 18px;
}

.zd-metrics dd span,
.zd-fact-strip dt {
  color: var(--zd-muted);
  font-size: 14px;
}

.zd-browser {
  padding: clamp(70px, 7vw, 130px) 0 28px;
  background: var(--zd-white);
}

.zd-browser__heading {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 0.7fr);
  align-items: end;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgb(23 23 23 / 0.2);
}

.zd-browser__heading .zd-section-label {
  margin-bottom: 20px;
}

.zd-browser__heading h2 {
  font-size: clamp(48px, 5vw, 92px);
}

.zd-search {
  display: flex;
  align-items: center;
  min-height: 66px;
  gap: 14px;
  padding-inline: 24px;
  background: var(--zd-white);
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: 999px;
}

.zd-search > span[aria-hidden] {
  font-family: Arial, sans-serif;
  font-size: 32px;
  line-height: 1;
}

.zd-search input {
  width: 100%;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
}

.zd-filter-row {
  padding: 28px 0;
  border-bottom: 1px solid rgb(23 23 23 / 0.2);
}

.zd-browser__count {
  margin-top: 24px;
  color: var(--zd-muted);
}

.zd-browser__count strong {
  color: var(--zd-ink);
  font-family: var(--zd-font-num);
  font-size: 26px;
}

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

.zd-card-grid--products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.zd-content-card {
  min-width: 0;
}

.zd-content-card__link {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 100%;
  flex-direction: column;
  background: var(--zd-white);
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: var(--zd-radius-small);
  transition: transform 180ms ease, background 180ms ease;
}

.zd-content-card__link:hover {
  background: #fffef2;
  transform: translateY(-5px);
}

.zd-content-card__number,
.zd-feature-card__number {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  font-family: var(--zd-font-num);
  font-size: 14px;
  font-weight: 800;
}

.zd-content-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.22 / 1;
  background-color: var(--zd-gray);
  background-image:
    linear-gradient(to right, rgb(23 23 23 / 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(23 23 23 / 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  border-bottom: var(--zd-line) solid var(--zd-ink);
}

.zd-content-card__media img,
.zd-content-card__media picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zd-content-card__media > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 4px 10px;
  color: var(--zd-white);
  background: var(--zd-ink);
  border-radius: 999px;
  font-family: var(--zd-font-num);
  font-size: 12px;
}

.zd-content-card__body {
  display: flex;
  min-height: 220px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.zd-content-card__body small,
.zd-content-card__body em {
  color: var(--zd-muted);
  font-size: 13px;
  font-style: normal;
}

.zd-content-card__body strong {
  margin-top: 10px;
  font-size: clamp(22px, 1.65vw, 31px);
  line-height: 1.25;
}

.zd-content-card__body > span {
  margin-top: 15px;
  color: var(--zd-muted);
  font-size: 15px;
  line-height: 1.65;
}

.zd-content-card__body em {
  margin-top: 15px;
}

.zd-content-card__body b {
  margin-top: auto;
  padding-top: 26px;
  font-size: 14px;
}

.zd-browser__empty {
  padding: 80px 20px;
  text-align: center;
  background: var(--zd-white);
  border: var(--zd-line) dashed var(--zd-ink);
  border-radius: var(--zd-radius-small);
}

/* Block renderer */
.zd-block {
  padding: clamp(80px, 9vw, 170px) 0;
}

.zd-tone--paper,
.zd-tone--white {
  color: var(--zd-ink);
  background-color: var(--zd-paper);
}

.zd-tone--yellow {
  color: var(--zd-ink);
  background-color: var(--zd-brand-yellow);
}

.zd-tone--acid {
  color: var(--zd-ink);
  background-color: var(--zd-acid);
}

.zd-tone--cyan {
  color: var(--zd-ink);
  background-color: var(--zd-cyan);
}

.zd-tone--purple {
  color: var(--zd-ink);
  background-color: var(--zd-purple);
}

.zd-tone--gray {
  color: var(--zd-ink);
  background-color: var(--zd-gray);
}

.zd-tone--dark {
  color: var(--zd-white);
  background: var(--zd-ink);
}

.zd-tone--gradient {
  color: var(--zd-white);
  background:
    radial-gradient(circle at 4% 12%, rgb(52 229 210 / 0.9), transparent 34%),
    radial-gradient(circle at 94% 28%, rgb(168 136 255 / 0.95), transparent 37%),
    radial-gradient(circle at 78% 92%, rgb(201 255 46 / 0.42), transparent 26%),
    var(--zd-ink);
}

.zd-tone--dark .zd-section-label,
.zd-tone--gradient .zd-section-label,
.zd-tone--dark .zd-section-heading > p,
.zd-tone--gradient .zd-section-heading > p {
  color: rgb(255 255 255 / 0.7);
}

.zd-statement {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: clamp(48px, 10vw, 190px);
}

.zd-statement .zd-section-label {
  margin-bottom: 30px;
}

.zd-statement h2 {
  max-width: 15ch;
  font-size: clamp(48px, 6.2vw, 112px);
}

.zd-statement__body {
  padding-bottom: 10px;
}

.zd-statement__body p {
  color: currentColor;
  opacity: 0.64;
}

.zd-indexed-panel {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.25fr);
  background: var(--zd-white);
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: var(--zd-radius);
}

.zd-indexed-panel__nav {
  display: grid;
  border-right: var(--zd-line) solid var(--zd-ink);
}

.zd-indexed-panel__nav > div {
  display: grid;
  min-height: 132px;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px 30px;
  border-bottom: 1px solid rgb(23 23 23 / 0.18);
}

.zd-indexed-panel__nav > div:last-child {
  border-bottom: 0;
}

.zd-indexed-panel__nav > div.is-active {
  background: var(--zd-brand-yellow);
}

.zd-indexed-panel__nav b {
  font-family: var(--zd-font-num);
  font-size: 16px;
}

.zd-indexed-panel__nav span {
  display: grid;
  grid-template-columns: minmax(86px, 0.45fr) 1fr;
  align-items: center;
  gap: 12px;
}

.zd-indexed-panel__nav small {
  color: var(--zd-muted);
}

.zd-indexed-panel__content {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 550px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(45px, 6vw, 110px);
  background:
    radial-gradient(circle at 90% 8%, rgb(52 229 210 / 0.45), transparent 31%),
    radial-gradient(circle at 10% 96%, rgb(168 136 255 / 0.28), transparent 30%),
    #fdfcf7;
}

.zd-indexed-panel__content h3 {
  max-width: 13ch;
  margin-top: 28px;
  font-size: clamp(40px, 4.6vw, 84px);
}

.zd-indexed-panel__content > p:not(.zd-kicker) {
  max-width: 760px;
  margin-top: 26px;
  color: var(--zd-muted);
}

.zd-indexed-panel__content > img {
  max-width: 58%;
  max-height: 420px;
  margin: 30px 0 0 auto;
  object-fit: contain;
}

.zd-indexed-panel__content .zd-pill-row {
  margin-top: 34px;
}

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

.zd-feature-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 430px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(34px, 4vw, 68px);
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: var(--zd-radius);
}

.zd-feature-card > img,
.zd-feature-card > picture {
  width: calc(100% + (clamp(34px, 4vw, 68px) * 2));
  max-width: none;
  height: 250px;
  margin: calc(clamp(34px, 4vw, 68px) * -1) calc(clamp(34px, 4vw, 68px) * -1) 36px;
  object-fit: cover;
  border-bottom: var(--zd-line) solid var(--zd-ink);
}

.zd-feature-card > picture {
  display: block;
  flex: 0 0 auto;
}

.zd-feature-card > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zd-feature-card > img + small,
.zd-feature-card > img + h3,
.zd-feature-card > picture + small,
.zd-feature-card > picture + h3 {
  margin-top: 0;
}

.zd-feature-card small {
  margin-top: auto;
  color: var(--zd-muted);
}

.zd-feature-card h3 {
  margin-top: 18px;
  font-size: clamp(28px, 2.4vw, 44px);
}

.zd-feature-card p {
  margin-top: 20px;
  color: currentColor;
  opacity: 0.66;
}

.zd-feature-card a {
  margin-top: 28px;
  font-weight: 500;
}

.zd-steps {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: var(--zd-radius);
}

.zd-steps li {
  min-height: 320px;
  padding: clamp(30px, 3vw, 58px);
  background: rgb(255 255 255 / 0.72);
  border-right: 1px solid rgb(23 23 23 / 0.24);
}

.zd-steps li:nth-child(2n) {
  background: var(--zd-brand-yellow);
}

.zd-steps li:last-child {
  border-right: 0;
}

.zd-steps li > b {
  font-family: var(--zd-font-num);
  font-size: clamp(42px, 4.5vw, 82px);
  line-height: 1;
}

.zd-steps li > div {
  margin-top: 90px;
}

.zd-steps small {
  color: var(--zd-muted);
}

.zd-steps h3 {
  margin-top: 10px;
  font-size: clamp(24px, 2vw, 36px);
}

.zd-steps p {
  margin-top: 15px;
  color: currentColor;
  opacity: 0.64;
  font-size: 15px;
}

.zd-accordion-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 150px);
}

.zd-accordion-layout .zd-section-heading {
  position: sticky;
  top: calc(var(--zd-header-height) + 34px);
  align-self: start;
}

.zd-accordion details {
  border-top: var(--zd-line) solid var(--zd-ink);
}

.zd-accordion details:last-child {
  border-bottom: var(--zd-line) solid var(--zd-ink);
}

.zd-accordion summary {
  display: grid;
  grid-template-columns: 50px 1fr 34px;
  align-items: center;
  gap: 20px;
  padding: 28px 6px;
  cursor: pointer;
  list-style: none;
}

.zd-accordion summary::-webkit-details-marker {
  display: none;
}

.zd-accordion summary > span {
  font-family: var(--zd-font-num);
  font-size: 14px;
}

.zd-accordion summary > strong {
  font-size: clamp(20px, 1.7vw, 30px);
}

.zd-accordion summary > b {
  font-size: 26px;
  transition: transform 160ms ease;
}

.zd-accordion details[open] summary > b {
  transform: rotate(45deg);
}

.zd-accordion details > div {
  padding: 0 60px 34px 70px;
  color: var(--zd-muted);
}

.zd-accordion details > div a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--zd-ink);
  font-weight: 500;
}

.zd-quote {
  padding: clamp(50px, 8vw, 140px);
  background: rgb(255 255 255 / 0.14);
  border: var(--zd-line) solid currentColor;
  border-radius: var(--zd-radius);
}

.zd-quote > strong {
  display: block;
  max-width: 18ch;
  margin-top: 32px;
  font-size: clamp(42px, 5.5vw, 98px);
  line-height: 1.08;
}

.zd-quote > p:not(.zd-section-label) {
  max-width: 820px;
  margin-top: 32px;
  opacity: 0.7;
}

.zd-quote cite {
  display: block;
  margin-top: 24px;
  font-size: 14px;
  font-style: normal;
}

.zd-video,
.zd-wide-media {
  overflow: hidden;
  width: 100%;
  background: var(--zd-ink);
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: var(--zd-radius);
}

.zd-video {
  aspect-ratio: 16 / 9;
}

.zd-wide-media img {
  width: 100%;
  max-height: 940px;
  object-fit: cover;
}

.zd-wide-media figcaption,
.zd-gallery-grid figcaption {
  padding: 14px 20px;
  color: var(--zd-muted);
  background: var(--zd-white);
  font-size: 13px;
}

.zd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.zd-gallery-grid figure {
  overflow: hidden;
  background: var(--zd-white);
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: var(--zd-radius-small);
}

.zd-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.zd-table-wrap {
  overflow: hidden;
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: var(--zd-radius);
}

.zd-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  background: var(--zd-white);
}

.zd-table-wrap th,
.zd-table-wrap td {
  padding: clamp(20px, 2.5vw, 42px);
  text-align: left;
  border-bottom: 1px solid rgb(23 23 23 / 0.18);
}

.zd-table-wrap tr:last-child th,
.zd-table-wrap tr:last-child td {
  border-bottom: 0;
}

.zd-table-wrap th {
  width: 28%;
  color: var(--zd-muted);
  font-weight: 400;
}

.zd-prose {
  max-width: 1080px;
  font-size: clamp(17px, 1.2vw, 21px);
}

.zd-prose h2 {
  margin: 2.2em 0 0.65em;
  font-size: clamp(38px, 4vw, 68px);
}

.zd-prose h2:first-child {
  margin-top: 0;
}

.zd-prose h3 {
  margin: 1.9em 0 0.55em;
  font-size: clamp(26px, 2.4vw, 40px);
}

.zd-prose p,
.zd-prose ul,
.zd-prose ol,
.zd-prose blockquote,
.zd-prose table {
  margin-block: 1.1em;
}

.zd-prose ul,
.zd-prose ol {
  padding-left: 1.3em;
}

.zd-prose li {
  list-style: inherit;
  margin-block: 0.45em;
}

.zd-prose a {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.zd-prose blockquote {
  padding: 28px 34px;
  background: #fff8bd;
  border-left: 7px solid var(--zd-brand-yellow);
  border-radius: 0 var(--zd-radius-small) var(--zd-radius-small) 0;
}

.zd-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(42px, 6vw, 96px);
  background: var(--zd-brand-yellow);
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: var(--zd-radius);
}

.zd-cta h2 {
  max-width: 16ch;
  font-size: clamp(40px, 4.8vw, 82px);
}

.zd-cta p {
  max-width: 700px;
  margin-top: 20px;
  color: rgb(23 23 23 / 0.66);
}

/* Detail */
.zd-detail-hero {
  padding: 30px 0 clamp(70px, 8vw, 150px);
  background-color: var(--zd-paper);
}

.zd-breadcrumbs {
  padding: 22px 0 clamp(40px, 5vw, 88px);
  color: var(--zd-muted);
  font-size: 14px;
}

.zd-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.zd-breadcrumbs li:not(:last-child)::after {
  margin-left: 9px;
  content: "/";
}

.zd-breadcrumbs a:hover {
  color: var(--zd-ink);
}

.zd-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(48px, 7vw, 135px);
}

.zd-detail-hero__grid--text {
  grid-template-columns: minmax(0, 1fr);
}

.zd-detail-hero__grid--text .zd-detail-hero__copy {
  max-width: 1250px;
}

.zd-detail-hero__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.15 / 1;
  background: var(--zd-white);
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: var(--zd-radius);
}

.zd-detail-hero__media img,
.zd-detail-hero__media picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zd-detail-hero__media figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 8px 14px;
  color: var(--zd-white);
  background: var(--zd-ink);
  border-radius: 999px;
  font-size: 13px;
}

.zd-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.zd-gallery-thumbs button {
  overflow: hidden;
  padding: 0;
  background: var(--zd-white);
  border: var(--zd-line) solid transparent;
  border-radius: 16px;
  cursor: pointer;
}

.zd-gallery-thumbs button:hover,
.zd-gallery-thumbs button:focus-visible,
.zd-gallery-thumbs button.is-active {
  border-color: var(--zd-brand-yellow);
}

.zd-gallery-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.zd-detail-hero__copy .zd-eyebrow {
  margin-bottom: 20px;
}

.zd-detail-hero__copy h1 {
  max-width: 12ch;
  font-size: clamp(50px, 5.5vw, 104px);
}

.zd-detail-hero__subtitle {
  margin-top: 24px;
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 500;
}

.zd-detail-hero__intro {
  max-width: 750px;
  margin-top: 24px;
  color: var(--zd-muted);
}

.zd-detail-meta {
  margin-top: 38px;
  border-top: 1px solid rgb(23 23 23 / 0.25);
}

.zd-detail-meta > div {
  display: grid;
  grid-template-columns: minmax(100px, 0.35fr) 1fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgb(23 23 23 / 0.18);
}

.zd-detail-meta dt {
  color: var(--zd-muted);
}

.zd-detail-meta dd {
  font-weight: 400;
}

.zd-detail-hero__copy .zd-actions {
  margin-top: 34px;
}

.zd-direct-answer {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) 1fr auto;
  align-items: center;
  gap: 32px;
  padding: clamp(28px, 3vw, 54px);
  background: #fff8bd;
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: var(--zd-radius-small);
}

.zd-direct-answer > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.zd-direct-answer > div > span {
  display: grid;
  width: 52px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  background: var(--zd-brand-yellow);
  border-radius: 50%;
  font-weight: 800;
}

.zd-direct-answer > p {
  font-size: clamp(18px, 1.45vw, 25px);
  font-weight: 400;
  line-height: 1.6;
}

.zd-direct-answer > a {
  font-weight: 500;
  white-space: nowrap;
}

.zd-fact-strip dt {
  margin-bottom: 16px;
}

.zd-related {
  background: var(--zd-gray);
}

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

.zd-related__grid > a {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 34px;
  background: var(--zd-white);
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: var(--zd-radius-small);
}

.zd-related__grid small {
  color: var(--zd-muted);
}

.zd-related__grid strong {
  margin-top: 22px;
  font-size: clamp(23px, 2vw, 36px);
  line-height: 1.25;
}

.zd-related__grid span {
  margin-top: 15px;
  color: var(--zd-muted);
  font-size: 15px;
}

.zd-related__grid b {
  position: absolute;
  right: 28px;
  bottom: 24px;
  font-size: 28px;
}

/* Footer */
.zd-footer__prelude {
  padding: clamp(70px, 8vw, 145px) 0;
  background-color: var(--zd-paper);
}

.zd-channel-strip {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgb(255 255 255 / 0.7);
  border: var(--zd-line) solid var(--zd-ink);
  border-radius: var(--zd-radius);
}

.zd-channel-strip__item {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 28px;
  border-right: 1px solid rgb(23 23 23 / 0.2);
}

.zd-channel-strip__item:last-child {
  border-right: 0;
}

.zd-channel-strip__item span {
  color: var(--zd-muted);
  font-size: 13px;
}

.zd-channel-strip__item strong {
  font-size: clamp(18px, 1.35vw, 25px);
}

.zd-channel-strip__item:hover {
  background: var(--zd-brand-yellow);
}

.zd-footer__main {
  position: relative;
  overflow: hidden;
  min-height: clamp(600px, 48vw, 900px);
  background-color: var(--zd-brand-yellow);
}

.zd-footer__inner {
  position: relative;
  display: flex;
  min-height: inherit;
  align-items: flex-start;
  padding-block: clamp(70px, 8vw, 140px);
}

.zd-footer__copy {
  position: relative;
  z-index: 2;
  width: 54%;
}

.zd-footer__mark {
  width: clamp(90px, 9vw, 175px);
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.zd-footer__kicker {
  margin-top: 24px;
  color: rgb(23 23 23 / 0.55);
  font-size: 14px;
}

.zd-footer__headline {
  margin-top: clamp(38px, 5vw, 85px);
  font-size: clamp(60px, 7vw, 128px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.zd-footer__tagline {
  margin-top: clamp(36px, 4vw, 70px);
  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 500;
}

.zd-footer__back {
  position: absolute;
  z-index: 4;
  top: clamp(50px, 6vw, 110px);
  right: 0;
  min-height: 50px;
  background: rgb(255 255 255 / 0.4);
}

.zd-footer__picture {
  position: absolute;
  z-index: 1;
  right: -2%;
  bottom: -2%;
  width: min(56vw, 980px);
  height: 92%;
}

.zd-footer__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.zd-footer__legal {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 20px;
  border-top: 1px solid rgb(23 23 23 / 0.28);
  font-size: 13px;
}

.zd-footer__legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Responsive */
@media (max-width: 1220px) {
  :root {
    --zd-header-height: 88px;
    --zd-radius: 34px;
  }

  .zd-header__inner {
    grid-template-columns: minmax(130px, 185px) 1fr auto;
    gap: 20px;
  }

  .zd-nav ul {
    gap: 17px;
  }

  .zd-nav a {
    padding-inline: 0;
    font-size: 13px;
  }

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

  .zd-feature-grid,
  .zd-card-grid,
  .zd-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  :root {
    --zd-header-height: 78px;
    --zd-gutter: 24px;
    --zd-grid-unit: 48px;
  }

  .zd-header__inner {
    grid-template-columns: 1fr auto auto;
    width: calc(100% - 32px);
  }

  .zd-header__brand {
    width: 145px;
  }

  .zd-header__toggle {
    display: inline-flex;
  }

  .zd-nav {
    position: fixed;
    inset: var(--zd-header-height) 0 0;
    display: none;
    overflow-y: auto;
    padding: 26px 22px 50px;
    background: var(--zd-paper);
  }

  .nav-open .zd-nav {
    display: block;
  }

  .zd-nav ul {
    display: grid;
    gap: 0;
  }

  .zd-nav li {
    border-bottom: 1px solid rgb(23 23 23 / 0.18);
  }

  .zd-nav .zd-nav__submenu {
    position: static;
    display: grid !important;
    width: auto;
    min-width: 0;
    padding: 0 0 12px 22px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .zd-nav .zd-nav__submenu li {
    border-bottom: 0;
  }

  .zd-nav .zd-nav__submenu a {
    padding: 9px 6px;
    color: var(--zd-muted);
    font-size: 16px;
  }

  .zd-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 6px;
    font-size: 22px;
  }

  .zd-nav a::after {
    position: static;
    width: 0;
    transform: none;
  }

  .zd-nav a.is-active::after {
    width: 30px;
  }

  .zd-header__age {
    min-width: 52px;
    height: 40px;
    padding-inline: 12px;
    font-size: 14px;
  }

  .zd-hero__grid,
  .zd-channel-hero__grid,
  .zd-detail-hero__grid,
  .zd-statement,
  .zd-section-heading--split,
  .zd-accordion-layout {
    grid-template-columns: 1fr;
  }

  .zd-hero--home,
  .zd-hero__grid {
    min-height: auto;
  }

  .zd-hero--home::after {
    width: 100%;
    height: 48%;
    top: auto;
    bottom: 0;
  }

  .zd-hero__copy h1 {
    font-size: clamp(58px, 12vw, 96px);
  }

  .zd-hero__media {
    aspect-ratio: 4 / 3;
  }

  .zd-channel-hero__media {
    aspect-ratio: 16 / 10;
  }

  .zd-browser__heading {
    grid-template-columns: 1fr;
  }

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

  .zd-indexed-panel {
    grid-template-columns: 1fr;
  }

  .zd-indexed-panel__nav {
    border-right: 0;
    border-bottom: var(--zd-line) solid var(--zd-ink);
  }

  .zd-indexed-panel__content {
    min-height: 440px;
  }

  .zd-accordion-layout .zd-section-heading {
    position: static;
  }

  .zd-direct-answer {
    grid-template-columns: 1fr;
  }

  .zd-direct-answer > a {
    white-space: normal;
  }

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

  .zd-channel-strip__item:nth-child(2) {
    border-right: 0;
  }

  .zd-channel-strip__item:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(23 23 23 / 0.2);
  }

  .zd-footer__copy {
    width: 72%;
  }

  .zd-footer__picture {
    width: 66vw;
    opacity: 0.8;
  }
}

@media (max-width: 640px) {
  :root {
    --zd-gutter: 18px;
    --zd-radius: 26px;
    --zd-radius-small: 20px;
    --zd-grid-unit: 42px;
  }

  body {
    font-size: 16px;
  }

  .zd-header__brand {
    width: 126px;
  }

  .zd-header__toggle {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .zd-header__age {
    min-width: 46px;
    height: 36px;
    font-size: 12px;
  }

  .zd-section,
  .zd-block {
    padding-block: 74px;
  }

  .zd-hero__grid {
    padding-block: 64px 76px;
  }

  .zd-hero__copy h1 {
    font-size: clamp(52px, 17vw, 74px);
  }

  .zd-hero__intro {
    font-size: 17px;
  }

  .zd-hero__stats {
    gap: 18px 28px;
  }

  .zd-hero__media {
    border-radius: 30px;
    box-shadow: 8px 10px 0 rgb(23 23 23 / 0.12);
  }

  .zd-hero__badge {
    top: 16px;
    right: 16px;
    width: 82px;
    font-size: 12px;
  }

  .zd-hero__media-note {
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
    padding: 12px 15px;
    box-shadow: 5px 5px 0 var(--zd-ink);
    font-size: 14px;
  }

  .zd-channel-hero {
    padding-block: 74px;
  }

  .zd-channel-hero__copy h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .zd-button {
    width: 100%;
    min-height: 52px;
  }

  .zd-metrics,
  .zd-fact-strip {
    grid-template-columns: 1fr;
  }

  .zd-metrics > div,
  .zd-fact-strip > div {
    border-right: 0;
    border-bottom: 1px solid rgb(23 23 23 / 0.2);
  }

  .zd-metrics > div:last-child,
  .zd-fact-strip > div:last-child {
    border-bottom: 0;
  }

  .zd-metrics dt {
    margin-bottom: 24px;
  }

  .zd-search {
    min-height: 56px;
  }

  .zd-filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
  }

  .zd-filter {
    flex: 0 0 auto;
  }

  .zd-card-grid,
  .zd-card-grid--products,
  .zd-feature-grid,
  .zd-related__grid,
  .zd-gallery-grid {
    grid-template-columns: 1fr;
  }

  .zd-content-card__body {
    min-height: 190px;
  }

  .zd-statement h2,
  .zd-section-heading h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .zd-indexed-panel__nav > div {
    grid-template-columns: 40px 1fr;
    padding-inline: 20px;
  }

  .zd-indexed-panel__nav span {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .zd-indexed-panel__content {
    min-height: 420px;
    padding: 34px 24px;
  }

  .zd-indexed-panel__content > img {
    max-width: 86%;
  }

  .zd-feature-card {
    min-height: 340px;
  }

  .zd-steps {
    grid-template-columns: 1fr;
  }

  .zd-steps li {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid rgb(23 23 23 / 0.2);
  }

  .zd-steps li:last-child {
    border-bottom: 0;
  }

  .zd-steps li > div {
    margin-top: 58px;
  }

  .zd-accordion summary {
    grid-template-columns: 34px 1fr 24px;
    gap: 12px;
  }

  .zd-accordion details > div {
    padding: 0 6px 28px 46px;
  }

  .zd-quote {
    padding: 40px 26px;
  }

  .zd-table-wrap {
    overflow-x: auto;
  }

  .zd-table-wrap table {
    min-width: 560px;
  }

  .zd-cta {
    display: grid;
    padding: 38px 24px;
  }

  .zd-detail-hero {
    padding-top: 10px;
  }

  .zd-breadcrumbs {
    padding-bottom: 36px;
  }

  .zd-detail-hero__grid {
    gap: 42px;
  }

  .zd-detail-hero__media {
    aspect-ratio: 1 / 1;
  }

  .zd-detail-hero__copy h1 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .zd-detail-meta > div {
    grid-template-columns: 92px 1fr;
    gap: 10px;
  }

  .zd-channel-strip {
    grid-template-columns: 1fr;
  }

  .zd-channel-strip__item,
  .zd-channel-strip__item:nth-child(2) {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid rgb(23 23 23 / 0.2);
  }

  .zd-channel-strip__item:last-child {
    border-bottom: 0;
  }

  .zd-footer__main {
    min-height: 700px;
  }

  .zd-footer__inner {
    padding-top: 55px;
  }

  .zd-footer__copy {
    width: 100%;
  }

  .zd-footer__mark {
    width: 120px;
  }

  .zd-footer__headline {
    max-width: 7ch;
    font-size: clamp(56px, 16vw, 78px);
  }

  .zd-footer__back {
    top: 54px;
    right: 0;
    width: auto;
    min-height: 42px;
    padding-inline: 15px;
    font-size: 12px;
  }

  .zd-footer__picture {
    right: -18%;
    width: 104vw;
    max-width: none;
    max-height: 56%;
    opacity: 0.68;
  }

  .zd-footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .zd-header,
  .zd-footer,
  .zd-actions,
  .zd-filter-row,
  .zd-search {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .zd-block,
  .zd-section {
    break-inside: avoid;
  }
}
