.page-products {
  --pp-dark: #0B1A15;
  --pp-pine: #14261F;
  --pp-paper: #F2EBDD;
  --pp-line: #D8CEBC;
  --pp-ember: #FF4A1C;
  --pp-amber: #FFC22E;
  --pp-cyan: #35F2D6;
  --pp-mist: #8FA39C;
  --pp-ash: #7A2A12;
  --pp-edge: rgba(255, 255, 255, 0.14);
  --pp-grid: rgba(255, 255, 255, 0.045);
  background-color: var(--ink);
  color: var(--paper);
}

/* 面包屑 */
.page-products .breadcrumb {
  padding: 14px 0 0;
}

.page-products .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-products .breadcrumb__link {
  color: var(--mist);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--step), border-color var(--step);
}

.page-products .breadcrumb__link:hover,
.page-products .breadcrumb__link:focus-visible {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.page-products .breadcrumb__link[aria-current="page"] {
  color: var(--amber);
}

.page-products .breadcrumb__sep {
  color: rgba(255, 255, 255, 0.24);
}

/* 页头 */
.page-products .page-head {
  padding: clamp(28px, 5vw, 64px) 0 clamp(24px, 4vw, 52px);
  background-image:
    linear-gradient(var(--pp-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--pp-grid) 1px, transparent 1px);
  background-size: 24px 24px;
  border-bottom: 1px solid var(--pp-edge);
}

.page-products .page-head__meta {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}

.page-products .page-head__title {
  max-width: 18em;
  margin: 0 0 22px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(34px, 6vw, 76px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.page-products .page-head__lede {
  max-width: 42em;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.8;
  color: var(--mist);
}

/* 区块容器 */
.page-products .section {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--pp-edge);
}

.page-products .section:last-of-type {
  border-bottom: 0;
}

.page-products .section--paper {
  background-color: var(--paper);
  color: var(--ink);
  border-bottom-color: var(--pp-line);
}

.page-products .section--paper .section-head__title {
  color: var(--ink);
}

.page-products .section--paper .section-head__note {
  color: #4A5A54;
}

.page-products .section--paper .section-head__index {
  color: var(--ash);
}

/* 1. 入口选择器 */
.page-products .entry-switch {
  position: relative;
  margin-top: 32px;
}

.page-products .entry-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-products .entry-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--pp-edge);
  background-color: var(--pp-pine);
}

.page-products .entry-selector {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--pp-edge);
}

.page-products .entry-option {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 4px;
  padding: 18px 20px;
  border-top: 1px solid var(--pp-edge);
  cursor: pointer;
  transition: background-color var(--step), color var(--step);
}

.page-products .entry-option:first-child {
  border-top: 0;
}

.page-products .entry-option__num {
  grid-row: 1 / span 2;
  align-self: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--mist);
}

.page-products .entry-option__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--paper);
}

.page-products .entry-option__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--mist);
}

.page-products .entry-option:hover {
  background-color: rgba(242, 235, 221, 0.06);
}

.page-products #entry-web:checked ~ .entry-layout .entry-option--web,
.page-products #entry-mobile:checked ~ .entry-layout .entry-option--mobile,
.page-products #entry-tablet:checked ~ .entry-layout .entry-option--tablet {
  background-color: var(--paper);
}

.page-products #entry-web:checked ~ .entry-layout .entry-option--web .entry-option__name,
.page-products #entry-mobile:checked ~ .entry-layout .entry-option--mobile .entry-option__name,
.page-products #entry-tablet:checked ~ .entry-layout .entry-option--tablet .entry-option__name {
  color: var(--ink);
}

.page-products #entry-web:checked ~ .entry-layout .entry-option--web .entry-option__num,
.page-products #entry-mobile:checked ~ .entry-layout .entry-option--mobile .entry-option__num,
.page-products #entry-tablet:checked ~ .entry-layout .entry-option--tablet .entry-option__num {
  color: var(--ember);
}

.page-products #entry-web:checked ~ .entry-layout .entry-option--web .entry-option__desc,
.page-products #entry-mobile:checked ~ .entry-layout .entry-option--mobile .entry-option__desc,
.page-products #entry-tablet:checked ~ .entry-layout .entry-option--tablet .entry-option__desc {
  color: #4A5A54;
}

.page-products #entry-web:focus-visible ~ .entry-layout .entry-option--web,
.page-products #entry-mobile:focus-visible ~ .entry-layout .entry-option--mobile,
.page-products #entry-tablet:focus-visible ~ .entry-layout .entry-option--tablet {
  outline: 2px solid var(--cyan);
  outline-offset: -2px;
}

.page-products .entry-content {
  padding: clamp(22px, 3vw, 36px);
}

.page-products .entry-panel {
  display: none;
}

.page-products #entry-web:checked ~ .entry-layout .entry-panel--web,
.page-products #entry-mobile:checked ~ .entry-layout .entry-panel--mobile,
.page-products #entry-tablet:checked ~ .entry-layout .entry-panel--tablet {
  display: block;
  animation: pp-panel-in 240ms ease both;
}

@keyframes pp-panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.page-products .entry-panel__title {
  margin: 16px 0 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.3;
  color: var(--paper);
}

.page-products .entry-panel__inner p {
  margin: 0 0 16px;
  max-width: 40em;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(242, 235, 221, 0.78);
}

.page-products .entry-panel__list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--pp-edge);
}

.page-products .entry-panel__list li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--pp-edge);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 235, 221, 0.82);
}

.page-products .entry-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 1px;
  background-color: var(--cyan);
}

.page-products .entry-panel__frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--pp-edge);
  margin-top: 20px;
}

.page-products .entry-panel__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 2. 经纬度网格视图 */
.page-products .gridview-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 36px;
}

.page-products .gridview-frame {
  position: relative;
  aspect-ratio: 9 / 14;
  max-width: 340px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--pp-edge);
  background-color: var(--pp-pine);
}

.page-products .gridview-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-products .gridview-media .media__caption {
  max-width: 340px;
}

.page-products .gridview-lede {
  margin: 0 0 28px;
  max-width: 40em;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(242, 235, 221, 0.82);
}

.page-products .gridview-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--pp-edge);
}

.page-products .gridview-fact {
  display: grid;
  grid-template-columns: 8.5em 1fr;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--pp-edge);
}

.page-products .gridview-fact dt {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-mist);
}

.page-products .gridview-fact dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--paper);
}

/* 3. 补时面板 */
.page-products .clock-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 36px;
}

.page-products .clock-frame {
  position: relative;
  aspect-ratio: 14 / 9;
  overflow: hidden;
  border: 1px solid var(--pp-edge);
  background-color: var(--pp-pine);
}

.page-products .clock-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-products .clock-body {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--pp-edge);
}

.page-products .clock-source {
  padding: 20px 0;
  border-bottom: 1px solid var(--pp-edge);
}

.page-products .clock-source__tag {
  display: inline-block;
  padding: 3px 9px;
  border: 1px solid var(--amber);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}

.page-products .clock-source__tag--cyan {
  border-color: var(--cyan);
  color: var(--cyan);
}

.page-products .clock-source__title {
  margin: 12px 0 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.01em;
  color: var(--paper);
}

.page-products .clock-source p {
  margin: 0;
  max-width: 38em;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(242, 235, 221, 0.78);
}

.page-products .clock-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.page-products .clock-metric {
  padding: 20px 0 20px 16px;
  border-bottom: 1px solid var(--pp-edge);
  border-left: 2px solid var(--pp-ash);
}

.page-products .clock-metric__value {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--cyan);
}

.page-products .clock-metric__label {
  margin: 8px 0 0;
  max-width: 32em;
  font-size: 14px;
  line-height: 1.7;
  color: var(--pp-mist);
}

/* 4. 名额变化 */
.page-products .window-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 36px;
}

.page-products .window-lede {
  margin: 0 0 24px;
  max-width: 40em;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(242, 235, 221, 0.82);
}

.page-products .window-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--pp-edge);
}

.page-products .window-list li {
  position: relative;
  padding: 16px 0 16px 22px;
  border-bottom: 1px solid var(--pp-edge);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(242, 235, 221, 0.8);
}

.page-products .window-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 10px;
  height: 2px;
  background-color: var(--pp-ash);
}

.page-products .window-list strong {
  color: var(--cyan);
  font-weight: 700;
}

.page-products .window-link {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--pp-mist);
}

.page-products .window-link a,
.page-products .install-note a,
.page-products .help-note a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid var(--amber);
  transition: color var(--step), border-color var(--step);
}

.page-products .window-link a:hover,
.page-products .window-link a:focus-visible,
.page-products .install-note a:hover,
.page-products .install-note a:focus-visible,
.page-products .help-note a:hover,
.page-products .help-note a:focus-visible {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.page-products .window-frame {
  position: relative;
  aspect-ratio: 10 / 12;
  max-width: 460px;
  overflow: hidden;
  border: 1px solid var(--pp-edge);
  background-color: var(--pp-pine);
}

.page-products .window-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 5. 五档口径 */
.page-products .bands-media {
  margin: 32px 0 36px;
}

.page-products .bands-frame {
  aspect-ratio: 12 / 9;
  overflow: hidden;
  border: 1px solid var(--pp-line);
  background-color: #E8DFCD;
}

.page-products .bands-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-products .bands-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--pp-line);
}

.page-products .bands-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background-color: var(--paper);
  font-size: 14px;
}

.page-products .bands-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.page-products .bands-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background-color: #E4DAC8;
  border-bottom: 1px solid var(--pp-line);
}

.page-products .bands-table tbody th,
.page-products .bands-table tbody td {
  padding: 16px;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
  color: #22332C;
  border-bottom: 1px solid var(--pp-line);
  transition: background-color var(--step);
}

.page-products .bands-table tbody tr:last-child th,
.page-products .bands-table tbody tr:last-child td {
  border-bottom: 0;
}

.page-products .bands-table tbody tr:hover th,
.page-products .bands-table tbody tr:hover td,
.page-products .bands-table tbody tr:focus-within th,
.page-products .bands-table tbody tr:focus-within td {
  background-color: #E8DFCD;
}

.page-products .bands-table tbody tr:focus-visible {
  outline: 2px solid var(--pp-ash);
  outline-offset: -2px;
}

.page-products .bands-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--pp-ash);
  letter-spacing: 0.04em;
}

.page-products .bands-table tbody tr:nth-child(2) .bands-num { color: #8C4A22; }
.page-products .bands-table tbody tr:nth-child(3) .bands-num { color: #A85B1C; }
.page-products .bands-table tbody tr:nth-child(4) .bands-num { color: #CC6A12; }
.page-products .bands-table tbody tr:nth-child(5) .bands-num { color: #FF4A1C; }

.page-products .bands-hint {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: #4A5A54;
}

/* 6. 提醒维度 */
.page-products .alerts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--pp-edge);
}

.page-products .alert-card {
  padding: 24px 0;
  border-bottom: 1px solid var(--pp-edge);
}

.page-products .alert-card__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--amber);
  margin-bottom: 10px;
}

.page-products .alert-card__title {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--paper);
}

.page-products .alert-card__body {
  margin: 0 0 12px;
  max-width: 34em;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(242, 235, 221, 0.8);
}

.page-products .alert-card__use {
  margin: 0;
  padding-top: 12px;
  border-top: 1px dashed var(--pp-edge);
  font-size: 13px;
  line-height: 1.7;
  color: var(--pp-mist);
}

.page-products .alerts-note {
  margin: 28px 0 0;
  max-width: 48em;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(242, 235, 221, 0.78);
}

/* 7. 安装与版本 */
.page-products .install-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--pp-line);
}

.page-products .install-step {
  padding: 24px 0;
  border-bottom: 1px solid var(--pp-line);
}

.page-products .install-step__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--pp-ash);
  margin-bottom: 10px;
}

.page-products .install-step__title {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
}

.page-products .install-step__body {
  margin: 0;
  max-width: 38em;
  font-size: 15px;
  line-height: 1.8;
  color: #3E4A45;
}

.page-products .install-step__body a {
  color: var(--pp-ash);
  text-decoration: none;
  border-bottom: 1px solid var(--pp-ash);
}

.page-products .install-step__body a:hover,
.page-products .install-step__body a:focus-visible {
  color: var(--ember);
  border-bottom-color: var(--ember);
}

.page-products .version-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 40px 0 0;
  background-color: var(--pp-line);
  border: 1px solid var(--pp-line);
}

.page-products .version-item {
  background-color: var(--paper);
}

.page-products .version-item[open] {
  background-color: #E8DFCD;
}

.page-products .version-item__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  transition: background-color var(--step);
}

.page-products .version-item__head::-webkit-details-marker {
  display: none;
}

.page-products .version-item__head:hover {
  background-color: #E8DFCD;
}

.page-products .version-item__tag {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--pp-ash);
  min-width: 3.6em;
}

.page-products .version-item[open] .version-item__tag {
  color: var(--ember);
}

.page-products .version-item__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
}

.page-products .version-item__body {
  margin: 0;
  padding: 0 18px 18px;
  font-size: 14px;
  line-height: 1.8;
  color: #3E4A45;
}

.page-products .install-note {
  margin: 28px 0 0;
  max-width: 48em;
  font-size: 14px;
  line-height: 1.85;
  color: #3E4A45;
}

.page-products .section--paper .install-note a {
  color: var(--pp-ash);
  border-bottom-color: var(--pp-ash);
}

.page-products .section--paper .install-note a:hover,
.page-products .section--paper .install-note a:focus-visible {
  color: var(--ember);
  border-bottom-color: var(--ember);
}

/* 8. 疑难排查 */
.page-products .help-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--pp-edge);
}

.page-products .help-card {
  padding: 22px 0;
  border-bottom: 1px solid var(--pp-edge);
}

.page-products .help-card__title {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  color: var(--paper);
}

.page-products .help-card__body {
  margin: 0;
  max-width: 34em;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(242, 235, 221, 0.78);
}

.page-products .help-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

.page-products .help-copy {
  cursor: pointer;
}

.page-products .help-note {
  margin: 22px 0 0;
  max-width: 46em;
  font-size: 13px;
  line-height: 1.8;
  color: var(--pp-mist);
}

.page-products .help-actions .btn--primary {
  background-color: var(--ember);
  color: var(--paper);
  border-color: var(--ember);
}

.page-products .help-actions .btn--primary:hover,
.page-products .help-actions .btn--primary:focus-visible {
  background-color: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
}

.page-products .help-actions .btn--ghost {
  background-color: transparent;
  color: var(--paper);
  border-color: var(--pp-edge);
}

.page-products .help-actions .btn--ghost:hover,
.page-products .help-actions .btn--ghost:focus-visible {
  background-color: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* 响应式 */
@media (min-width: 720px) {
  .page-products .entry-selector {
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--pp-edge);
  }

  .page-products .entry-option {
    border-top: 0;
    border-left: 1px solid var(--pp-edge);
  }

  .page-products .entry-option:first-child {
    border-left: 0;
  }

  .page-products .entry-panel__inner {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-products .gridview-facts {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
  }

  .page-products .clock-metrics {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 28px;
  }

  .page-products .alerts-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 36px;
  }

  .page-products .install-steps {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 36px;
  }

  .page-products .help-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 36px;
  }
}

@media (min-width: 1024px) {
  .page-products .entry-layout {
    grid-template-columns: 300px 1fr;
  }

  .page-products .entry-selector {
    grid-template-columns: 1fr;
    border-bottom: 0;
    border-right: 1px solid var(--pp-edge);
  }

  .page-products .entry-option {
    border-left: 0;
    border-top: 1px solid var(--pp-edge);
  }

  .page-products .entry-option:first-child {
    border-top: 0;
  }

  .page-products .entry-panel--tablet {
    display: none;
  }

  .page-products #entry-tablet:checked ~ .entry-layout .entry-panel--tablet {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 32px;
    align-items: start;
  }

  .page-products .entry-panel__frame {
    margin-top: 0;
  }

  .page-products .gridview-layout {
    grid-template-columns: minmax(260px, 340px) 1fr;
    align-items: start;
  }

  .page-products .gridview-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products .clock-layout {
    grid-template-columns: 1.25fr 1fr;
    align-items: start;
  }

  .page-products .window-layout {
    grid-template-columns: 1fr minmax(280px, 460px);
    align-items: start;
  }

  .page-products .alerts-grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 28px;
  }

  .page-products .install-steps {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 28px;
  }

  .page-products .version-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-products .help-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
<<<END>>>
