.page-products {
  --prod-gap: 16px;
  --prod-panel: var(--white);
  color: var(--ink);
  background: var(--paper);
}

/* ---------- 面包屑 ---------- */
.page-products .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 16px 0 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gray);
}
.page-products .breadcrumbs a {
  color: var(--gray);
  text-decoration: none;
}
.page-products .breadcrumbs a:hover {
  color: var(--green);
}
.page-products .breadcrumbs [aria-current="page"] {
  color: var(--ink);
}

/* ---------- 通用文本 ---------- */
.page-products .link-inline {
  color: var(--green);
  text-decoration: none;
  box-shadow: inset 0 -2px 0 rgba(63, 191, 127, 0.45);
  transition: box-shadow 0.2s var(--ease), color 0.2s var(--ease);
}
.page-products .link-inline:hover {
  color: var(--orange);
  box-shadow: inset 0 -2px 0 var(--orange);
}
.page-products .link-inline--on-dark {
  color: var(--neon);
  box-shadow: inset 0 -2px 0 rgba(233, 255, 79, 0.35);
}
.page-products .link-inline--on-dark:hover {
  color: var(--orange);
  box-shadow: inset 0 -2px 0 var(--orange);
}
.page-products .link-mono {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--green);
  word-break: break-all;
  text-decoration: none;
  border-bottom: 1px dashed rgba(23, 135, 91, 0.5);
}
.page-products .link-mono:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.page-products .link-mono--on-dark {
  color: var(--neon);
  border-bottom-color: rgba(233, 255, 79, 0.5);
}

/* ---------- 首屏 ---------- */
.page-products .dl-hero {
  position: relative;
  padding: 12px 0 44px;
  background:
    radial-gradient(120% 90% at 88% 0%, rgba(23, 135, 91, 0.16), transparent 62%),
    radial-gradient(90% 70% at 0% 100%, rgba(255, 106, 43, 0.1), transparent 60%);
  overflow: hidden;
}
.page-products .dl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.6;
  pointer-events: none;
}
.page-products .dl-hero__grid {
  position: relative;
  display: grid;
  gap: 26px;
  align-items: start;
}
.page-products .dl-hero__title {
  margin: 10px 0 14px;
  font-family: var(--font-cn);
  font-size: clamp(30px, 8vw, 62px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.page-products .dl-hero__text {
  max-width: 60ch;
  color: var(--gray);
}
.page-products .dl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.page-products .dl-hero__fallback {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

.page-products .dl-hero__board {
  position: relative;
  padding: 24px 22px 30px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--on-dark);
  overflow: hidden;
}
.page-products .dl-hero__board::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--neon), var(--orange));
}
.page-products .dl-hero__board-label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon);
}
.page-products .dl-hero__build {
  margin: 8px 0 0;
  font-family: var(--font-mono);
  font-size: clamp(52px, 15vw, 96px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--white);
}
.page-products .dl-hero__build-sub {
  margin: 6px 0 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--grass);
}
.page-products .dl-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(245, 241, 230, 0.18);
}
.page-products .dl-stat dt {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--on-dark-soft);
}
.page-products .dl-stat dd {
  margin: 4px 0 0;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

/* ---------- 章节节奏 ---------- */
.page-products .section {
  padding: 48px 0;
}
.page-products .section--tail {
  padding-bottom: 64px;
}
.page-products .sec-tinted {
  background: linear-gradient(180deg, rgba(220, 233, 224, 0.55), rgba(245, 241, 230, 0));
}
.page-products .sec-night {
  background: var(--ink);
  color: var(--on-dark);
}
.page-products .sec-night .t-body,
.page-products .sec-night .t-small {
  color: var(--on-dark);
}
.page-products .sec-night .muted {
  color: var(--on-dark-soft);
}

.page-products .chapter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 26px;
  padding-top: 16px;
  border-top: 2px solid var(--ink);
}
.page-products .chapter--dark {
  border-top-color: rgba(233, 255, 79, 0.5);
}
.page-products .chapter--dark .t-xl,
.page-products .chapter--dark .t-body {
  color: var(--paper);
}
.page-products .chapter-num {
  font-family: var(--font-mono);
  font-size: clamp(46px, 13vw, 96px);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.page-products .chapter-num--neon {
  color: var(--neon);
}
.page-products .chapter__body .t-xl {
  margin: 0 0 10px;
  font-size: clamp(24px, 6vw, 42px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.02em;
}
.page-products .chapter__body .t-body {
  margin: 0;
  max-width: 66ch;
}
.page-products .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.page-products .eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange);
}
.page-products .eyebrow--on-dark {
  color: var(--neon);
}
.page-products .eyebrow--on-dark::before {
  background: var(--neon);
}

/* ---------- 图片容器 ---------- */
.page-products .shot {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--night);
}
.page-products .shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-products .shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 26, 42, 0) 45%, rgba(10, 26, 42, 0.55));
  pointer-events: none;
}
.page-products .shot__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--neon);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-products .shot--wide {
  margin-bottom: 22px;
}
.page-products .shot--timeline {
  margin: 4px 0 26px;
}
.page-products .shot--portrait {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

/* ---------- 01 桌面端 ---------- */
.page-products .console-feats {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.page-products .feat {
  position: relative;
  padding: 18px 18px 18px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--prod-panel);
}
.page-products .feat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 5px;
  border-radius: var(--radius-pill);
  background: var(--green);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.page-products .feat:hover::before {
  transform: translateX(5px);
  background: var(--orange);
}
.page-products .feat__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.page-products .feat .t-small {
  margin: 0;
  color: var(--gray);
  line-height: 1.7;
}

/* ---------- 02 移动端 ---------- */
.page-products .mobile-grid {
  display: grid;
  gap: 26px;
  align-items: start;
}
.page-products .tick-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-products .tick-list li {
  position: relative;
  padding: 14px 16px 14px 40px;
  border-radius: 18px;
  background: var(--prod-panel);
  border: 1px solid var(--line);
}
.page-products .tick-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 21px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grass);
  box-shadow: 0 0 0 4px rgba(63, 191, 127, 0.18);
}
.page-products .tick-list strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}
.page-products .tick-list span {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}
.page-products .tick-list--tight {
  gap: 10px;
}
.page-products .tick-list--tight li {
  padding: 12px 14px 12px 34px;
  background: transparent;
  border: none;
}
.page-products .tick-list--tight li::before {
  left: 8px;
  top: 18px;
  width: 8px;
  height: 8px;
}

.page-products .ride-band {
  display: grid;
  gap: 20px;
  margin-top: 28px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
}
.page-products .ride-band__copy h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
}
.page-products .ride-band__copy .t-body {
  margin: 0;
  color: var(--gray);
}

/* ---------- 03 版本 ---------- */
.page-products .ver-rail {
  display: flex;
  gap: 10px;
  padding: 4px 2px 14px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.page-products .ver-chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--prod-panel);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.page-products .ver-chip__num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
}
.page-products .ver-chip--now {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.page-products .ver-chip--now .ver-chip__num {
  color: var(--neon);
}

.page-products .ver-notes {
  display: grid;
  gap: 10px;
}
.page-products .ver-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--prod-panel);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.page-products .ver-item:hover {
  border-color: var(--grass);
}
.page-products .ver-item__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}
.page-products .ver-item__head::-webkit-details-marker {
  display: none;
}
.page-products .ver-item__head::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
}
.page-products .ver-item[open] .ver-item__head::after {
  content: "–";
  color: var(--orange);
}
.page-products .ver-item__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
}
.page-products .ver-item__title {
  font-size: 16px;
  font-weight: 800;
}
.page-products .ver-item__hint {
  display: none;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--mist);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--green);
}
.page-products .ver-item__body {
  padding: 0 18px 18px 46px;
}
.page-products .ver-item__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
}
.page-products .ver-more {
  margin: 18px 0 0;
}

/* ---------- 04 路径 ---------- */
.page-products .path-wrap {
  position: relative;
  padding-top: 0;
}
.page-products .path-line {
  display: none;
}
.page-products .path-grid {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-products .path-card {
  border: 1px solid rgba(245, 241, 230, 0.22);
  border-radius: 20px;
  background: rgba(245, 241, 230, 0.06);
  overflow: hidden;
}
.page-products .path-card[open] {
  background: var(--night);
  border-color: var(--grass);
}
.page-products .path-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  cursor: pointer;
  list-style: none;
}
.page-products .path-card__head::-webkit-details-marker {
  display: none;
}
.page-products .path-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
}
.page-products .path-card[open] .path-card__num {
  background: var(--neon);
  color: var(--ink);
}
.page-products .path-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--paper);
}
.page-products .path-card__body {
  padding: 0 16px 18px 66px;
}
.page-products .path-card__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--on-dark);
}

.page-products .filter-band {
  display: grid;
  gap: 20px;
  margin-top: 28px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(23, 135, 91, 0.14);
  border: 1px solid rgba(63, 191, 127, 0.32);
}
.page-products .filter-band__copy h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--paper);
}
.page-products .filter-band__copy .t-body {
  margin: 0;
  color: var(--on-dark);
}

/* ---------- 05 设备与网络 ---------- */
.page-products .req-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--prod-panel);
}
.page-products .req-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 15px;
}
.page-products .req-caption {
  caption-side: top;
  padding: 14px 16px 0;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}
.page-products .req-table th,
.page-products .req-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-soft);
}
.page-products .req-table thead th {
  background: var(--ink);
  color: var(--paper);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}
.page-products .req-table thead th .mono {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--neon);
}
.page-products .req-table tbody th {
  font-weight: 700;
  white-space: nowrap;
  background: rgba(220, 233, 224, 0.4);
}
.page-products .req-table tbody td {
  color: var(--gray);
}
.page-products .req-table tbody tr {
  transition: background 0.18s var(--ease);
}
.page-products .req-table tbody tr:hover th,
.page-products .req-table tbody tr:hover td {
  background: var(--mist);
  color: var(--ink);
}

.page-products .screen-note {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.page-products .ruler {
  position: relative;
  height: 58px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--mist), var(--prod-panel));
  border: 1px solid var(--line);
  overflow: hidden;
}
.page-products .ruler__track {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 11px;
  height: 10px;
  background-image: repeating-linear-gradient(90deg, var(--ink) 0 1px, transparent 1px 22px);
  opacity: 0.28;
}
.page-products .ruler__band {
  position: absolute;
  left: 16%;
  right: 20%;
  top: 9px;
  bottom: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--green), var(--grass));
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.page-products .screen-note__copy h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
}
.page-products .screen-note__copy .t-small {
  margin: 0;
  color: var(--gray);
}

.page-products .net-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.page-products .net-card {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--prod-panel);
}
.page-products .net-card .t-small {
  margin: 0;
  color: var(--gray);
}
.page-products .net-card--ink {
  background: var(--night);
  border-color: var(--night);
  color: var(--on-dark);
}
.page-products .net-card--ink .feat__title {
  color: var(--paper);
}
.page-products .net-card--ink .t-small {
  color: var(--on-dark);
}

/* ---------- 06 下载与支持 ---------- */
.page-products .entry-grid {
  display: grid;
  gap: 14px;
}
.page-products .entry-card {
  position: relative;
  display: block;
  padding: 22px 20px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--prod-panel);
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.page-products .entry-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 5px;
  border-radius: var(--radius-pill);
  background: var(--green);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.page-products .entry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--grass);
}
.page-products .entry-card:hover::before {
  transform: translateX(6px);
  background: var(--orange);
}
.page-products .entry-card--signal {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.page-products .entry-card--signal::before {
  background: var(--neon);
}
.page-products .entry-card--signal .entry-card__desc {
  color: var(--on-dark);
}
.page-products .entry-card__tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--orange);
}
.page-products .entry-card--signal .entry-card__tag {
  color: var(--neon);
}
.page-products .entry-card__name {
  display: block;
  margin: 8px 0 8px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.page-products .entry-card__desc {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}
.page-products .entry-card__cta {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}
.page-products .entry-card--signal .entry-card__cta {
  background: var(--orange);
  color: var(--white);
}

.page-products .support-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.page-products .support-box {
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--prod-panel);
}
.page-products .support-box .feat__title {
  margin-bottom: 12px;
}
.page-products .support-box--ink {
  background: var(--night);
  border-color: var(--night);
  color: var(--on-dark);
}
.page-products .support-box--ink .feat__title {
  color: var(--paper);
}
.page-products .contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-products .contact-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}
.page-products .contact-list__term {
  min-width: 62px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--neon);
}
.page-products .contact-list__value {
  font-size: 15px;
  color: var(--paper);
}
.page-products .support-box__note {
  margin: 16px 0 0;
  color: var(--on-dark);
}
.page-products .support-box--ink .tick-list--tight strong {
  color: var(--paper);
}

/* ---------- 响应式 ---------- */
@media (min-width: 640px) {
  .page-products {
    --prod-gap: 20px;
  }
  .page-products .section {
    padding: 64px 0;
  }
  .page-products .console-feats,
  .page-products .net-grid,
  .page-products .entry-grid,
  .page-products .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-products .ver-item__hint {
    display: inline-block;
  }
  .page-products .screen-note {
    grid-template-columns: minmax(240px, 320px) 1fr;
    align-items: center;
    gap: 26px;
  }
}

@media (min-width: 900px) {
  .page-products .dl-hero {
    padding: 22px 0 64px;
  }
  .page-products .dl-hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: stretch;
  }
  .page-products .dl-hero__board {
    padding: 30px 28px 34px;
  }
  .page-products .dl-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .page-products .chapter {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
  }
  .page-products .chapter-num {
    font-size: 96px;
  }
  .page-products .console-feats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .page-products .mobile-grid {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 34px;
  }
  .page-products .ride-band {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    padding: 24px;
  }
  .page-products .path-wrap {
    padding-top: 92px;
  }
  .page-products .path-line {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
  }
  .page-products .path-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
  .page-products .path-card {
    min-height: 100%;
  }
  .page-products .filter-band {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 30px;
    padding: 24px;
  }
  .page-products .entry-card__name {
    font-size: 24px;
  }
}

@media (min-width: 1100px) {
  .page-products .dl-hero__title {
    font-size: 64px;
  }
  .page-products .section {
    padding: 76px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .entry-card,
  .page-products .feat::before,
  .page-products .entry-card::before {
    transition: none;
  }
}
</final>
</final>
