@charset "UTF-8";

/* 作者：搭客佬
   官网：https://www.hddjgw.cn/ */

:root {
  --blue: #1266e8;
  --blue-deep: #083b9a;
  --yellow: #ffd633;
  --ink: #101623;
  --muted: #667085;
  --line: #d7deea;
  --paper: #f6f8fc;
  --white: #ffffff;
  --header-height: 76px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: var(--header-height);
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

ul,
ol,
p,
h1,
h2,
h3,
figure {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

.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: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--container));
  height: 100%;
  margin: 0 auto;
}

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

.brand img,
.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: contain;
}

.brand-copy,
.footer-brand > span {
  display: grid;
  min-width: 0;
}

.brand-copy strong,
.footer-brand strong {
  font-size: 20px;
  line-height: 1.25;
}

.brand-copy > span,
.footer-brand > span > span {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

.primary-nav a {
  position: relative;
  display: block;
  padding: 27px 0 22px;
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--yellow);
  content: "";
  opacity: 0;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  opacity: 1;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.mobile-download {
  padding: 11px 15px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: var(--white);
  border: 1px solid var(--ink);
  cursor: pointer;
}

.menu-toggle i {
  display: block;
  width: 100%;
  height: 2px;
  margin: auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  color: var(--white);
  background: var(--blue);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
  gap: 80px;
  width: min(calc(100% - 40px), var(--container));
  min-height: 650px;
  margin: 0 auto;
  padding: 76px 0;
}

.eyebrow,
.section-heading p,
.download-copy > p {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
}

.hero .eyebrow > span {
  width: 30px;
  height: 3px;
  background: var(--yellow);
}

.hero h1 {
  margin-top: 20px;
  font-size: clamp(64px, 7vw, 102px);
  line-height: .95;
  letter-spacing: -5px;
  white-space: nowrap;
}

.hero h2 {
  margin-top: 30px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
}

.hero-description {
  max-width: 630px;
  margin-top: 20px;
  color: rgba(255,255,255,.78);
  font-size: 16px;
}

.hero-actions {
  display: grid;
  justify-items: start;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 208px;
  padding: 17px 22px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 800;
}

.hero-actions > a span {
  font-size: 22px;
}

.age-label {
  display: block;
  color: rgba(255,255,255,.75);
  font-size: 12px;
}

.schedule-board {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 10px solid rgba(255,255,255,.18);
  box-shadow: 20px 20px 0 rgba(4,36,104,.22);
}

.schedule-board > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.schedule-board > header div {
  display: grid;
  gap: 3px;
}

.schedule-board > header span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.schedule-board > header strong {
  font-size: 24px;
}

.schedule-board > header i {
  width: 14px;
  height: 14px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255,214,51,.25);
}

.schedule-content {
  display: grid;
  grid-template-columns: 1fr 145px;
  min-height: 332px;
}

.schedule-content ol {
  padding: 20px 0;
}

.schedule-content li {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
}

.schedule-content li:last-child {
  border-bottom: 0;
}

.schedule-content time,
.schedule-content li span {
  color: var(--muted);
  font-size: 12px;
}

.schedule-content li strong {
  font-size: 16px;
}

.schedule-content .is-on-air {
  color: var(--white);
  background: var(--blue);
}

.schedule-content .is-on-air time,
.schedule-content .is-on-air span {
  color: var(--yellow);
}

.channel-number {
  display: grid;
  align-content: center;
  justify-items: center;
  color: var(--ink);
  background: var(--yellow);
}

.channel-number span {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
}

.channel-number strong {
  font-size: 72px;
  line-height: 1;
}

.signal-rings {
  position: absolute;
  z-index: 1;
  right: -180px;
  bottom: -280px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.signal-rings i {
  position: absolute;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.signal-rings i:nth-child(1) { inset: 80px; }
.signal-rings i:nth-child(2) { inset: 160px; }
.signal-rings i:nth-child(3) { inset: 240px; background: var(--yellow); }

.section {
  padding: 100px 0;
}

.section-inner,
.download-inner,
.footer-inner {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 46px;
}

.section-heading h2 {
  margin-top: 8px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -3px;
}

.section-heading > span {
  justify-self: end;
  max-width: 540px;
  color: var(--muted);
  font-size: 14px;
}

.channels-section {
  background: var(--white);
}

.channel-guide {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.channel-row {
  display: grid;
  grid-template-columns: 220px repeat(3, 1fr);
  min-height: 132px;
  border-bottom: 1px solid var(--line);
}

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

.channel-row > header,
.program-cell {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.channel-row > *:last-child {
  border-right: 0;
}

.channel-row > header {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #edf4ff;
}

.channel-row > header span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.channel-row > header h3 {
  font-size: 22px;
}

.program-cell {
  display: grid;
  align-content: center;
  gap: 4px;
}

.program-cell time,
.program-cell em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.program-cell strong {
  font-size: 16px;
}

.channel-yellow > header {
  background: #fff9dc;
}

.channel-yellow > header span {
  color: var(--ink);
  background: var(--yellow);
}

.channel-dark > header {
  color: var(--white);
  background: var(--ink);
}

.channel-dark > header span {
  color: var(--ink);
  background: var(--yellow);
}

.watchlist-section {
  background: #eef3fb;
}

.watchlist-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 140px;
  border: 2px solid var(--ink);
}

.watch-column {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  padding: 28px;
  background: var(--white);
  border-right: 1px solid var(--ink);
}

.watch-column > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}

.watch-column h3 {
  font-size: 26px;
}

.watch-column > header span,
.watch-column li span {
  color: var(--muted);
  font-size: 12px;
}

.watch-column ul {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.watch-column li {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 14px;
  background: var(--paper);
  border-left: 4px solid var(--blue);
}

.watch-column li strong {
  font-size: 14px;
}

.watch-column li i {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 5px;
  margin-top: 8px;
  background: #dfe6f0;
}

.watch-column li i::after {
  display: block;
  width: var(--progress);
  height: 100%;
  background: var(--blue);
  content: "";
}

.watch-column button {
  margin-top: auto;
  padding: 13px;
  color: var(--blue);
  background: transparent;
  border: 1px solid var(--blue);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.watch-yellow li {
  border-left-color: var(--yellow);
}

.watch-yellow li i::after {
  background: var(--yellow);
}

.watch-yellow button {
  color: var(--ink);
  border-color: var(--ink);
}

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

.watch-dark > header {
  border-bottom-color: rgba(255,255,255,.35);
}

.watch-dark li {
  color: var(--white);
  background: rgba(255,255,255,.08);
  border-left-color: var(--yellow);
}

.watch-dark li span,
.watch-dark > header span {
  color: rgba(255,255,255,.65);
}

.watch-dark button {
  color: var(--yellow);
  border-color: var(--yellow);
}

.completion-meter {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  color: var(--white);
  background: var(--blue);
}

.completion-meter p,
.completion-meter span {
  font-size: 12px;
}

.completion-meter strong {
  font-size: 18px;
}

.completion-meter > div {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 8px solid rgba(255,255,255,.24);
  border-top-color: var(--yellow);
  border-radius: 50%;
}

.completion-meter > div i {
  width: 20px;
  height: 20px;
  background: var(--yellow);
  border-radius: 50%;
}

.gallery-section {
  background: var(--white);
}

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

.screen-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--ink);
}

.screen-window {
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #edf1f7;
}

.screen-window img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.screen-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 15px 18px;
  border-top: 1px solid var(--ink);
}

.screen-card figcaption span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.screen-card figcaption strong {
  font-size: 16px;
}

.faq-section {
  background: #fffbee;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid #c9c3ae;
}

.faq-item > button {
  display: grid;
  grid-template-columns: 54px 1fr 28px;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 24px 18px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.faq-item > button > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.faq-item > button > strong {
  font-size: 16px;
}

.faq-item > button > i {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  justify-self: end;
}

.faq-item > button > i::before,
.faq-item > button > i::after {
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.faq-item > button > i::after {
  transform: rotate(90deg);
}

.faq-item > button[aria-expanded="true"] > i::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 72px 24px;
  color: var(--muted);
  font-size: 14px;
}

.official-site {
  margin-top: 34px;
  background: var(--white);
  border: 1px solid var(--ink);
}

.official-site summary {
  display: grid;
  grid-template-columns: 32px 1fr 24px;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 0 20px;
  cursor: pointer;
  list-style: none;
}

.official-site summary::-webkit-details-marker {
  display: none;
}

.official-site summary span {
  color: var(--blue);
  font-size: 20px;
}

.official-site summary strong {
  font-size: 16px;
}

.official-site summary i::before {
  display: block;
  content: "+";
  font-size: 24px;
  line-height: 1;
}

.official-site[open] summary i::before {
  content: "−";
}

.official-site > div {
  padding: 0 64px 22px;
}

.official-site > div a {
  color: var(--blue);
  font-size: 14px;
}

.review-section {
  background: #edf4ff;
}

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

.review-card {
  min-height: 260px;
  padding: 26px;
  background: var(--white);
  border-top: 5px solid var(--blue);
  box-shadow: 0 10px 26px rgba(25,50,95,.08);
}

.review-card.review-yellow {
  border-top-color: var(--yellow);
}

.review-card header {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.review-card header > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.review-card header strong {
  font-size: 14px;
}

.review-card time {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.review-card p {
  margin-top: 20px;
  color: #31394a;
  font-size: 14px;
  line-height: 1.95;
}

.download-section {
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
  border-bottom: 6px solid var(--yellow);
}

.download-inner {
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  min-height: 300px;
}

.download-channel {
  display: grid;
  align-content: center;
  justify-items: center;
  color: var(--ink);
  background: var(--yellow);
}

.download-channel span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
}

.download-channel strong {
  font-size: 100px;
  line-height: .9;
}

.download-copy {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 50px 62px;
}

.download-copy > p {
  color: var(--yellow);
}

.download-copy h2 {
  max-width: 600px;
  font-size: 38px;
  line-height: 1.25;
}

.download-copy > span {
  color: rgba(255,255,255,.7);
  font-size: 14px;
}

.download-action {
  position: relative;
  display: grid;
  place-items: center;
}

.download-action > i {
  position: absolute;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
}

.download-action > i:nth-child(2) {
  width: 170px;
  height: 170px;
}

.download-action > a {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
}

.download-action > a span {
  display: block;
  margin-top: -34px;
  font-size: 24px;
}

.site-footer {
  color: var(--white);
  background: #090d16;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 46px 0 30px;
}

.footer-brand > span > span {
  color: rgba(255,255,255,.55);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

.footer-nav a {
  color: rgba(255,255,255,.8);
  font-size: 12px;
}

.footer-bottom {
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255,255,255,.5);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  background: var(--yellow);
  border: 1px solid var(--ink);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top i {
  width: 22px;
  height: 22px;
  background: url("../icons/top.svg") center / contain no-repeat;
}

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

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-top: var(--header-height);
  }

  .header-inner {
    width: calc(100% - 24px);
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy > span {
    display: block;
    max-width: 130px;
    overflow: visible;
    white-space: nowrap;
  }

  .mobile-actions {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    background: var(--white);
    border-bottom: 1px solid var(--ink);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    display: block;
    width: calc(100% - 24px);
    margin: 0 auto;
  }

  .primary-nav li {
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a {
    padding: 16px 4px;
    font-size: 14px;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 58px 0 72px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero .eyebrow {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(54px, 15vw, 82px);
    letter-spacing: -3px;
    white-space: normal;
  }

  .hero h2 {
    font-size: 30px;
  }

  .hero-description {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-items: center;
  }

  .schedule-board {
    width: min(100%, 620px);
    margin: 0 auto;
    border-width: 6px;
    box-shadow: 12px 12px 0 rgba(4,36,104,.22);
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-heading > span {
    justify-self: start;
  }

  .channel-row {
    grid-template-columns: 180px repeat(3, 1fr);
  }

  .channel-row > header,
  .program-cell {
    padding: 20px;
  }

  .watchlist-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .watch-column {
    border-bottom: 1px solid var(--ink);
  }

  .watch-column:nth-child(2) {
    border-right: 0;
  }

  .watch-column:nth-child(3) {
    border-bottom: 0;
  }

  .completion-meter {
    min-height: 300px;
  }

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

  .download-inner {
    grid-template-columns: 160px 1fr 220px;
  }

  .download-copy {
    padding: 40px;
  }

  .download-copy h2 {
    font-size: 30px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 14px;
  }

  .brand-copy > span {
    max-width: 108px;
    font-size: 12px;
  }

  .mobile-download {
    padding: 10px 12px;
  }

  .hero::before {
    width: 100%;
  }

  .hero-inner,
  .section-inner,
  .download-inner,
  .footer-inner {
    width: calc(100% - 24px);
  }

  .hero h2 {
    font-size: 27px;
  }

  .hero-description {
    font-size: 14px;
  }

  .schedule-board > header {
    padding: 18px;
  }

  .schedule-board > header strong {
    font-size: 20px;
  }

  .schedule-content {
    grid-template-columns: 1fr 86px;
    min-height: 286px;
  }

  .schedule-content li {
    grid-template-columns: 50px 1fr;
    min-height: 62px;
    padding: 0 14px;
  }

  .schedule-content li > span {
    display: none;
  }

  .channel-number strong {
    font-size: 50px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2 {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .channel-guide {
    display: grid;
    gap: 12px;
    border: 0;
  }

  .channel-row {
    grid-template-columns: 1fr;
    border: 1px solid var(--ink);
  }

  .channel-row > header,
  .program-cell {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .channel-row > *:last-child {
    border-bottom: 0;
  }

  .program-cell {
    grid-template-columns: 54px 1fr auto;
    align-items: center;
  }

  .watchlist-board {
    grid-template-columns: 1fr;
  }

  .watch-column,
  .watch-column:nth-child(2),
  .watch-column:nth-child(3) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .watch-column button {
    margin-top: 8px;
  }

  .completion-meter {
    min-height: 220px;
  }

  .screen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .screen-card figcaption {
    min-height: 62px;
    padding: 12px;
  }

  .screen-card figcaption strong {
    font-size: 14px;
  }

  .faq-item > button {
    grid-template-columns: 34px 1fr 20px;
    padding: 20px 8px;
  }

  .faq-item > button > strong {
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 42px 20px;
    font-size: 13px;
  }

  .official-site summary {
    padding: 0 14px;
  }

  .official-site > div {
    padding: 0 58px 20px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 0;
  }

  .review-card header {
    grid-template-columns: 42px 1fr auto;
  }

  .review-card time {
    justify-self: end;
    text-align: right;
  }

  .download-section {
    padding: 12px 0;
  }

  .download-inner {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .download-channel {
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 10px;
    min-height: 90px;
  }

  .download-channel strong {
    font-size: 56px;
  }

  .download-copy {
    justify-items: center;
    padding: 34px 22px 20px;
    text-align: center;
  }

  .download-copy h2 {
    font-size: 28px;
  }

  .download-action {
    min-height: 200px;
  }

  .download-action > i {
    width: 190px;
    height: 190px;
  }

  .download-action > i:nth-child(2) {
    width: 145px;
    height: 145px;
  }

  .download-action > a {
    width: 116px;
    height: 116px;
  }

  .footer-main {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }

  a,
  button,
  summary {
    -webkit-tap-highlight-color: transparent;
    transition: none !important;
  }

  a:active,
  button:active,
  summary:active {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@media (max-width: 390px) {
  .brand-copy > span {
    max-width: 84px;
  }

  .mobile-download {
    padding: 9px 10px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .review-card {
    padding: 20px;
  }

  .review-card header {
    grid-template-columns: 38px 1fr;
  }

  .review-card header > span {
    width: 38px;
    height: 38px;
  }

  .review-card time {
    grid-column: 2;
  }
}
