/* 国产视频 · 原创游戏视频社区的外部样式系统 */
:root {
  --ink: #10142f;
  --ink-2: #1b2147;
  --muted: #6b7091;
  --paper: #fffaf7;
  --mist: #f5f7ff;
  --line: #e7e9f4;
  --peach: #ff8c76;
  --peach-2: #ffb17f;
  --cyan: #79e5ee;
  --lav: #a791ff;
  --gold: #ffd46b;
  --white: #fff;
  --shadow: 0 18px 55px rgba(23, 28, 71, 0.1);
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --shell: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Noto Sans SC",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 15px;
  line-height: 1.7;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
.shell-width {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 10px;
  top: -100px;
  background: var(--ink);
  color: #fff;
  padding: 10px 15px;
  z-index: 1000;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}
.utility-bar {
  background: #0d1129;
  color: #cdd1e5;
  font-size: 12px;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 33px;
  gap: 18px;
}
.utility-inner p {
  margin: 0;
}
.utility-links {
  display: flex;
  gap: 8px;
}
.utility-links a:hover {
  color: var(--cyan);
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(121, 229, 238, 0.16);
  border-radius: 50%;
  margin-right: 7px;
}
.site-header {
  position: relative;
  background: rgba(255, 250, 247, 0.97);
  z-index: 50;
}
.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.brand img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 5px 9px rgba(255, 135, 112, 0.18));
}
.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand strong {
  font-size: 19px;
  letter-spacing: -0.7px;
}
.brand small {
  margin-top: 6px;
  color: var(--muted);
  font:
    600 8px/1 "Space Grotesk",
    sans-serif;
  letter-spacing: 1.4px;
}
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  flex: 1;
  white-space: nowrap;
}
.primary-nav a {
  font-weight: 700;
  font-size: 13px;
  position: relative;
  padding: 28px 0;
}
.primary-nav a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--peach);
  left: 0;
  bottom: 17px;
  transition: width 0.22s var(--ease);
}
.primary-nav a:hover:after,
.primary-nav a:focus:after {
  width: 100%;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 6px 12px rgba(16, 20, 47, 0.16);
  transition: transform 0.2s var(--ease);
}
.nav-cta span {
  color: var(--cyan);
  font-size: 16px;
}
.nav-cta:hover {
  transform: translateY(-2px);
}
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  padding: 9px;
}
.mobile-menu-btn i {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  width: 23px;
}
.nav-search {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.search-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 58px;
}
.search-box {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 590px;
  height: 37px;
  border: 1px solid #dfe2f0;
  border-radius: 10px;
  overflow: hidden;
  background: #fbfcff;
  transition:
    border 0.2s,
    box-shadow 0.2s;
}
.search-box:focus-within {
  border-color: var(--lav);
  box-shadow: 0 0 0 4px rgba(167, 145, 255, 0.12);
}
.search-box > span {
  font: 700 24px/1 "Space Grotesk";
  margin-left: 12px;
  color: var(--muted);
  transform: rotate(-20deg);
}
.search-box input {
  border: 0;
  outline: 0;
  background: transparent;
  flex: 1;
  min-width: 0;
  padding: 8px 10px;
  color: var(--ink);
  font-size: 13px;
}
.search-box button {
  border: 0;
  background: var(--peach);
  color: #fff;
  height: 100%;
  padding: 0 17px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
}
.search-hints {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}
.search-hints button {
  color: #656c8d;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.search-hints button:hover {
  text-decoration: underline;
  color: var(--peach);
}
/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 585px;
  background: var(--ink);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 13, 38, 0.97) 0%,
    rgba(10, 13, 38, 0.82) 39%,
    rgba(16, 20, 47, 0.28) 74%,
    rgba(16, 20, 47, 0.58) 100%
  );
  z-index: -1;
}
.hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 675px) 1fr;
  min-height: 585px;
  align-items: center;
  padding: 72px 0 90px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(121, 229, 238, 0.35);
  background: rgba(121, 229, 238, 0.1);
  color: #bdf7fd;
  border-radius: 999px;
  padding: 6px 11px;
  font: 700 11px/1 "Space Grotesk";
  letter-spacing: 0.8px;
}
.eyebrow b {
  color: var(--peach-2);
}
.hero h1 {
  font-size: clamp(38px, 5vw, 69px);
  max-width: 720px;
  line-height: 1.14;
  letter-spacing: -3.5px;
  margin: 18px 0 19px;
  font-weight: 900;
}
.hero h1 em {
  font-style: normal;
  color: var(--peach-2);
  position: relative;
}
.hero h1 em:after {
  content: "";
  width: 100%;
  height: 7px;
  background: var(--cyan);
  opacity: 0.55;
  position: absolute;
  bottom: -4px;
  left: 0;
  transform: skewX(-19deg);
}
.hero-copy {
  max-width: 575px;
  margin: 0;
  color: #dee2f5;
  font-size: 16px;
  line-height: 1.9;
}
.hero-copy b {
  color: #fff;
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 11px;
  padding: 13px 17px;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid transparent;
  transition:
    transform 0.18s var(--ease),
    box-shadow 0.18s;
}
.button:hover {
  transform: translateY(-2px);
}
.button:active {
  transform: scale(0.97);
}
.button-primary {
  background: var(--peach);
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 140, 118, 0.2);
}
.button-dark {
  background: #fff;
  color: var(--ink);
}
.button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.play-dot {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  background: #fff;
  color: var(--peach);
  border-radius: 50%;
  font-size: 8px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 45px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-stats div {
  display: flex;
  flex-direction: column;
}
.hero-stats b {
  font: 700 22px/1 "Space Grotesk";
  color: var(--cyan);
}
.hero-stats span {
  font-size: 11px;
  color: #c6cbdf;
  margin-top: 7px;
}
.hero-orbit {
  position: absolute;
  right: max(20px, calc((100vw - var(--shell)) / 2));
  bottom: 38px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(121, 229, 238, 0.32);
  border-radius: 50%;
  z-index: -1;
}
.hero-orbit:before,
.hero-orbit:after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.hero-orbit:before {
  inset: 22px;
  border: 1px dashed rgba(255, 177, 127, 0.55);
}
.hero-orbit:after {
  width: 12px;
  height: 12px;
  top: 15px;
  left: 26px;
  background: var(--peach);
  box-shadow:
    134px 74px 0 3px var(--cyan),
    74px 146px 0 1px var(--lav);
}
.hero-scroll {
  position: absolute;
  bottom: 25px;
  left: 50%;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: rgba(255, 255, 255, 0.66);
  font: 600 10px/1 "Space Grotesk";
  letter-spacing: 1px;
}
.hero-scroll:after {
  content: "";
  height: 30px;
  width: 1px;
  background: var(--peach);
  display: block;
  margin: 10px auto 0;
}
/* Generic section */
.content-section {
  padding: 86px 0;
  position: relative;
}
.content-section.mist {
  background: var(--mist);
}
.content-section.ink {
  background: var(--ink);
  color: #fff;
}
.section-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  margin-bottom: 32px;
}
.section-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  color: var(--peach);
  font: 700 11px/1 "Space Grotesk";
  letter-spacing: 1.4px;
  margin: 0 0 10px;
}
.section-kicker i {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: currentColor;
}
.section-title {
  font-size: clamp(27px, 3.2vw, 42px);
  line-height: 1.22;
  letter-spacing: -1.8px;
  margin: 0;
  font-weight: 900;
}
.section-intro {
  max-width: 410px;
  color: var(--muted);
  margin: 0;
  font-size: 13px;
  line-height: 1.85;
}
.section-link {
  font-size: 13px;
  font-weight: 800;
  color: var(--peach);
  white-space: nowrap;
}
.section-link:hover {
  text-decoration: underline;
}
.section-link span {
  font-size: 17px;
  margin-left: 5px;
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff0e9;
  color: #ce635a;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}
.brand-chip:before {
  content: "";
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
}
/* Video cards */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.video-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(25, 31, 70, 0.035);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.video-player {
  position: relative;
  aspect-ratio: 16/10;
  background: #182047;
  overflow: hidden;
}
.video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #20264e;
}
.video-player:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(10, 13, 35, 0.65));
  opacity: 0.55;
  transition: opacity 0.2s;
}
.video-card:hover .video-player:after {
  opacity: 0.85;
}
.video-tag {
  position: absolute;
  z-index: 2;
  left: 10px;
  top: 10px;
  background: rgba(16, 20, 47, 0.8);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 6px;
}
.video-duration {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.66);
  color: #fff;
  font: 600 10px/1 "Space Grotesk";
  border-radius: 4px;
  padding: 5px;
}
.video-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -43%) scale(0.85);
  opacity: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--peach);
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.video-card:hover .video-play,
.video-card:focus-within .video-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.video-info {
  padding: 14px 14px 15px;
}
.video-category {
  color: #7d83a3;
  font-size: 10px;
  margin: 0 0 6px;
  font-weight: 700;
}
.video-info h3 {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.4px;
  margin: 0;
  min-height: 45px;
  font-weight: 800;
}
.video-metrics {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #858ba6;
  font: 600 10px/1 "Space Grotesk";
  margin-top: 12px;
}
.video-metrics span:first-child {
  color: var(--peach);
}
/* Feature matrix */
.capability-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}
.capability-lead {
  position: relative;
  min-height: 410px;
  background: linear-gradient(135deg, #1c2351, #242a61);
  border-radius: 20px;
  color: #fff;
  padding: 35px;
  overflow: hidden;
}
.capability-lead:before {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -55px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(121, 229, 238, 0.55),
    rgba(167, 145, 255, 0.1) 46%,
    transparent 65%
  );
}
.capability-lead h3 {
  font-size: 29px;
  line-height: 1.3;
  letter-spacing: -1px;
  max-width: 370px;
  margin: 15px 0 10px;
  position: relative;
}
.capability-lead p {
  max-width: 395px;
  color: #d2d7f0;
  font-size: 13px;
  position: relative;
}
.capability-lead .button {
  margin-top: 15px;
  position: relative;
}
.capability-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.capability {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 20px;
  transition: transform 0.2s var(--ease);
}
.capability:hover {
  transform: translateY(-4px);
}
.capability-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: #fff0e9;
  color: var(--peach);
  font: 800 18px/1 "Space Grotesk";
}
.capability:nth-child(2) .capability-icon {
  background: #eafcff;
  color: #39a9c5;
}
.capability:nth-child(3) .capability-icon {
  background: #f1eeff;
  color: #816ee8;
}
.capability:nth-child(4) .capability-icon {
  background: #fff8df;
  color: #e1a522;
}
.capability h3 {
  font-size: 15px;
  margin: 13px 0 6px;
  letter-spacing: -0.3px;
}
.capability p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.capability b {
  display: block;
  font: 700 11px "Space Grotesk";
  color: #989eb9;
  margin-top: 13px;
}
/* Short videos */
.short-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
.short-card {
  min-height: 320px;
  border-radius: 17px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(150deg, #39326b, #fc9278);
  color: #fff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  transition: transform 0.2s var(--ease);
}
.short-card:hover {
  transform: translateY(-5px);
}
.short-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 16, 41, 0.05),
    rgba(13, 16, 41, 0.83)
  );
  z-index: -1;
}
.short-card:nth-child(2) {
  background: linear-gradient(150deg, #16495c, #7ee3e8);
}
.short-card:nth-child(3) {
  background: linear-gradient(150deg, #382d69, #b69aff);
}
.short-card:nth-child(4) {
  background: linear-gradient(150deg, #703449, #ffb585);
}
.short-card:nth-child(5) {
  background: linear-gradient(150deg, #234041, #a9df9f);
}
.short-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  font: 700 10px "Space Grotesk";
}
.short-play {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}
.short-card h3 {
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -0.3px;
  margin: 0;
}
.short-card p {
  font-size: 10px;
  margin: 7px 0 0;
  color: #e5e7fb;
}
.short-card .short-meta {
  margin-top: 14px;
  font: 600 10px "Space Grotesk";
  color: var(--peach-2);
}
/* Community */
.community-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}
.topic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.topic-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 17px;
  position: relative;
  overflow: hidden;
  min-height: 143px;
}
.topic-icon {
  font: 800 35px/1 "Space Grotesk";
  color: var(--peach);
  position: absolute;
  right: 15px;
  top: 14px;
  opacity: 0.9;
}
.topic-card.ice .topic-icon {
  color: #42b7ce;
}
.topic-card.lilac .topic-icon {
  color: #8b79ef;
}
.topic-card.gold .topic-icon {
  color: #e5aa26;
}
.topic-card h3 {
  font-size: 15px;
  margin: 46px 0 5px;
}
.topic-card p {
  font-size: 11px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.community-note {
  background: var(--ink);
  color: #fff;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.community-note:after {
  content: "";
  width: 230px;
  height: 230px;
  border: 35px solid rgba(121, 229, 238, 0.12);
  position: absolute;
  border-radius: 50%;
  right: -100px;
  top: -120px;
}
.community-note h3 {
  font-size: 27px;
  line-height: 1.3;
  letter-spacing: -1px;
  position: relative;
  margin: 13px 0;
}
.community-note p {
  color: #cbd0e8;
  font-size: 13px;
  position: relative;
}
.community-note ul {
  position: relative;
  list-style: none;
  margin: 23px 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.community-note li {
  font-size: 12px;
  color: #eef0fb;
}
.community-note li:before {
  content: "✓";
  color: var(--cyan);
  font-weight: 900;
  margin-right: 9px;
}
.community-note .button {
  position: relative;
  margin-top: 4px;
}
/* Expert */
.expert-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.expert-card {
  border-radius: 17px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 19px;
  min-height: 276px;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.expert-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.expert-avatar {
  width: 47px;
  height: 47px;
  border-radius: 15px;
  background: linear-gradient(145deg, #ffbc8d, #fb7882);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.18);
}
.expert-card:nth-child(2) .expert-avatar {
  background: linear-gradient(145deg, #73dce8, #576fc6);
}
.expert-card:nth-child(3) .expert-avatar {
  background: linear-gradient(145deg, #af9cff, #7364c8);
}
.expert-card:nth-child(4) .expert-avatar {
  background: linear-gradient(145deg, #ffcb68, #e58650);
}
.expert-card:nth-child(5) .expert-avatar {
  background: linear-gradient(145deg, #72cfbd, #4f85af);
}
.expert-role {
  font-size: 10px;
  color: var(--peach);
  font-weight: 800;
  margin: 14px 0 2px;
}
.expert-card h3 {
  font-size: 17px;
  margin: 0;
}
.expert-card p {
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted);
  margin: 8px 0;
}
.expert-foot {
  border-top: 1px solid var(--line);
  margin-top: auto;
  padding-top: 10px;
  font-size: 10px;
  color: #717792;
}
.expert-actions {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
.tiny-button {
  background: #f5f6fd;
  border: 0;
  border-radius: 7px;
  padding: 6px 8px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}
.tiny-button:hover {
  background: #fff0e9;
  color: #d36059;
}
/* How-to and partners */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.how-card {
  padding: 25px;
  border-radius: 17px;
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
}
.how-no {
  font: 700 38px/1 "Space Grotesk";
  color: #eceefa;
}
.how-card h3 {
  font-size: 17px;
  margin: 13px 0 7px;
}
.how-card p {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
  line-height: 1.75;
}
.how-card:after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  background: var(--peach);
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
}
.how-card:last-child:after {
  display: none;
}
.logo-wall {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 38px 0 0;
  flex-wrap: wrap;
}
.partner {
  background: #fff;
  border: 1px dashed #dfe2ef;
  color: #8c91aa;
  border-radius: 9px;
  padding: 10px 16px;
  font: 700 11px "Space Grotesk";
  letter-spacing: 0.7px;
}
.partner b {
  color: var(--peach);
}
/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  position: relative;
}
.quote-card:before {
  content: "“";
  font:
    900 52px/36px Georgia,
    serif;
  color: #ffd5c9;
  position: absolute;
  right: 16px;
  top: 19px;
}
.quote-card p {
  font-size: 13px;
  line-height: 1.85;
  margin: 0 0 17px;
  position: relative;
}
.quote-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 11px;
  color: var(--muted);
  font-size: 11px;
}
.quote-meta b {
  color: var(--ink);
}
.quote-meta span {
  font: 700 11px "Space Grotesk";
  color: var(--peach);
}
/* FAQ */
.faq-wrap {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 55px;
}
.faq-aside {
  position: sticky;
  top: 20px;
  align-self: start;
}
.faq-aside h2 {
  font-size: 38px;
  line-height: 1.25;
  letter-spacing: -1.6px;
  margin: 9px 0 15px;
}
.faq-aside p {
  font-size: 13px;
  color: #cbd1ed;
}
.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  color: #fff;
  text-align: left;
  background: none;
  border: 0;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
}
.faq-question span:last-child {
  color: var(--cyan);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-answer {
  display: none;
  color: #cbd1ed;
  font-size: 12px;
  line-height: 1.9;
  padding: 0 35px 19px 0;
  margin: 0;
}
.faq-item.is-open .faq-answer {
  display: block;
}
.faq-item.is-open .faq-question span:last-child {
  transform: rotate(45deg);
}
/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
}
.contact-place {
  min-height: 365px;
  background: linear-gradient(135deg, #19204b, #1e3462 60%, #326a80);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 32px;
}
.contact-place:after {
  content: "";
  position: absolute;
  width: 520px;
  height: 170px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(121, 229, 238, 0.18) 0 1px,
      transparent 1px 41px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(121, 229, 238, 0.18) 0 1px,
      transparent 1px 41px
    );
  bottom: -42px;
  right: -34px;
  transform: perspective(280px) rotateX(58deg);
}
.contact-place h3 {
  font-size: 28px;
  line-height: 1.3;
  margin: 15px 0 12px;
  max-width: 400px;
  position: relative;
}
.contact-place p {
  max-width: 420px;
  color: #d7dcf4;
  font-size: 13px;
  position: relative;
}
.address-pin {
  position: relative;
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-weight: 700;
}
.address-pin i {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--peach);
  font-style: normal;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 18px;
}
.contact-item small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}
.contact-item b {
  display: block;
  font: 700 14px/1.4 "Space Grotesk";
  margin-top: 7px;
  word-break: break-word;
}
.contact-item p {
  font-size: 10px;
  color: #7b819b;
  margin: 9px 0 0;
}
.mcp-panel {
  grid-column: span 2;
  border-radius: 16px;
  background: #fff0e9;
  padding: 19px;
}
.mcp-panel h3 {
  font-size: 14px;
  margin: 0 0 6px;
}
.mcp-panel p {
  color: #a25b56;
  font-size: 11px;
  line-height: 1.65;
  margin: 0 0 12px;
}
.mcp-actions {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.mcp-actions button {
  border: 1px solid #f0b5a7;
  border-radius: 7px;
  background: #fff7f3;
  color: #a6534d;
  font-size: 10px;
  font-weight: 800;
  padding: 7px 9px;
  cursor: pointer;
}
.mcp-actions button:hover {
  background: var(--peach);
  border-color: var(--peach);
  color: #fff;
}
/* Page layout */
.page-hero {
  background: linear-gradient(135deg, #111633, #20285a);
  color: #fff;
  padding: 66px 0 58px;
  overflow: hidden;
  position: relative;
}
.page-hero:after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -115px;
  top: -170px;
  border: 75px solid rgba(121, 229, 238, 0.1);
}
.breadcrumb {
  position: relative;
  z-index: 1;
  font-size: 11px;
  color: #bfc5e1;
  margin-bottom: 25px;
}
.breadcrumb a {
  color: var(--cyan);
}
.breadcrumb span {
  margin: 0 7px;
  color: #8e96bd;
}
.page-hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(34px, 4.5vw, 58px);
  letter-spacing: -2.4px;
  line-height: 1.18;
  max-width: 740px;
  margin: 0;
}
.page-hero p {
  position: relative;
  z-index: 1;
  color: #d7dbef;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.9;
  margin: 17px 0 0;
}
.page-grid {
  display: grid;
  grid-template-columns: 1fr 315px;
  gap: 42px;
}
.article-body h2 {
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -1px;
  margin: 46px 0 14px;
}
.article-body h3 {
  font-size: 20px;
  margin: 28px 0 10px;
}
.article-body p {
  color: #4f5574;
  font-size: 14px;
  line-height: 2;
  margin: 0 0 16px;
}
.article-body strong {
  color: var(--ink);
}
.article-body ul {
  padding-left: 20px;
  color: #4f5574;
  font-size: 14px;
  line-height: 2;
}
.article-body blockquote {
  margin: 26px 0;
  padding: 19px 22px;
  border-left: 4px solid var(--peach);
  background: #fff0e9;
  color: #7f4644;
  font-size: 14px;
  line-height: 1.85;
}
.article-side {
  align-self: start;
  position: sticky;
  top: 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 21px;
}
.article-side h2 {
  font-size: 16px;
  margin: 0 0 12px;
}
.article-side a {
  display: block;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  color: #5e6481;
}
.article-side a:hover {
  color: var(--peach);
}
.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0;
}
.tag {
  border-radius: 999px;
  padding: 5px 10px;
  background: #f3f4fb;
  color: #646b8a;
  font-size: 10px;
  font-weight: 800;
}
.notice {
  border: 1px solid #c9ecf0;
  background: #f1feff;
  border-radius: 14px;
  padding: 16px;
  color: #377382;
  font-size: 12px;
  line-height: 1.8;
}
.share-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 35px;
}
.share-row span {
  font-size: 12px;
  font-weight: 800;
  margin-right: 4px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f4f5fb;
  border: 0;
  border-radius: 7px;
  padding: 7px 9px;
  font-size: 10px;
  font-weight: 800;
  color: #596080;
  cursor: pointer;
}
.share-btn:hover {
  background: var(--ink);
  color: #fff;
}
.data-note {
  margin: 25px 0;
  padding: 15px;
  border: 1px dashed #d7dbe9;
  color: #7b819a;
  background: #fbfcff;
  border-radius: 12px;
  font: 11px/1.8 "Space Grotesk";
}
/* micro UI */
.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  background: var(--ink);
  color: #fff;
  padding: 10px 15px;
  border-radius: 9px;
  box-shadow: var(--shadow);
  font-size: 12px;
  transition: all 0.2s var(--ease);
}
.toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
/* Footer */
.site-footer {
  background: #0d1129;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}
.footer-glow {
  position: absolute;
  width: 500px;
  height: 250px;
  right: -90px;
  top: -180px;
  background: radial-gradient(
    ellipse,
    rgba(167, 145, 255, 0.3),
    transparent 68%
  );
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr 1fr;
  gap: 35px;
  padding-bottom: 43px;
}
.footer-logo strong {
  color: #fff;
}
.footer-logo small {
  color: #aeb6d7;
}
.footer-brand > p {
  max-width: 300px;
  font-size: 12px;
  line-height: 1.85;
  color: #b6bdd8;
  margin: 17px 0;
}
.footer-brand .update-line {
  font: 600 10px "Space Grotesk";
  color: var(--cyan);
}
.site-footer h2 {
  font-size: 13px;
  margin: 5px 0 15px;
  color: #fff;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  font-size: 11px;
  line-height: 2.1;
  color: #b8bfd8;
}
.footer-links a:hover {
  color: var(--cyan);
}
.footer-contact b {
  font-family: "Space Grotesk", sans-serif;
  color: #e7eafb;
  font-weight: 600;
}
.qr-area {
  display: flex;
  gap: 13px;
}
.qr-area div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #b8bfd8;
  font-size: 9px;
  text-align: center;
}
.qr-area img {
  background: #fff;
  border-radius: 7px;
  padding: 4px;
}
.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: #8e96b8;
  font: 600 10px "Space Grotesk";
  padding: 15px 0;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom a {
  color: var(--cyan);
}
@media (max-width: 1080px) {
  .primary-nav {
    gap: 12px;
  }
  .primary-nav a {
    font-size: 11px;
  }
  .nav-cta {
    display: none;
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .expert-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .short-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .short-card {
    min-height: 270px;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .qr-area {
    grid-column: span 2;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .community-layout {
    grid-template-columns: 1fr;
  }
  .page-grid {
    grid-template-columns: 1fr;
  }
  .article-side {
    display: none;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 14px;
  }
  .shell-width {
    width: min(calc(100% - 28px), var(--shell));
  }
  .utility-inner {
    min-height: 31px;
  }
  .utility-links {
    display: none;
  }
  .nav-wrap {
    height: 67px;
    justify-content: space-between;
  }
  .brand strong {
    font-size: 18px;
  }
  .mobile-menu-btn {
    display: block;
  }
  .primary-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 67px;
    background: #fff;
    padding: 12px 20px 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 13px 20px rgba(16, 20, 47, 0.1);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .primary-nav.is-open {
    display: flex;
  }
  .primary-nav a {
    padding: 9px 0;
    font-size: 13px;
  }
  .primary-nav a:after {
    bottom: 4px;
  }
  .nav-search {
    padding: 8px 0;
  }
  .search-inner {
    min-height: auto;
    display: block;
  }
  .search-box {
    max-width: none;
  }
  .search-hints {
    overflow: auto;
    padding-top: 7px;
    font-size: 10px;
  }
  .hero {
    min-height: 590px;
  }
  .hero-grid {
    min-height: 590px;
    padding: 56px 0 78px;
  }
  .hero h1 {
    font-size: 39px;
    letter-spacing: -2.2px;
  }
  .hero-copy {
    font-size: 13px;
  }
  .hero-actions .button {
    padding: 11px 13px;
  }
  .hero-stats {
    gap: 17px;
    margin-top: 31px;
  }
  .hero-stats b {
    font-size: 18px;
  }
  .hero-scroll {
    display: none;
  }
  .hero-orbit {
    width: 130px;
    height: 130px;
    right: -31px;
    bottom: 23px;
  }
  .content-section {
    padding: 59px 0;
  }
  .section-top {
    display: block;
    margin-bottom: 23px;
  }
  .section-intro {
    margin-top: 12px;
  }
  .section-link {
    display: inline-block;
    margin-top: 11px;
  }
  .video-grid {
    gap: 12px;
  }
  .video-info {
    padding: 11px;
  }
  .video-info h3 {
    font-size: 13px;
    min-height: 58px;
  }
  .video-metrics {
    gap: 5px;
    font-size: 9px;
  }
  .capability-list {
    gap: 10px;
  }
  .capability {
    padding: 15px;
  }
  .capability h3 {
    font-size: 13px;
  }
  .capability p {
    font-size: 10px;
  }
  .capability-lead {
    min-height: 330px;
    padding: 25px;
  }
  .capability-lead h3 {
    font-size: 25px;
  }
  .short-strip {
    grid-template-columns: 1fr 1fr;
    gap: 11px;
  }
  .short-card {
    min-height: 230px;
    padding: 14px;
  }
  .short-card h3 {
    font-size: 13px;
  }
  .short-card:last-child {
    display: none;
  }
  .topic-grid {
    gap: 10px;
  }
  .topic-card {
    padding: 14px;
    min-height: 130px;
  }
  .topic-card h3 {
    font-size: 13px;
  }
  .community-note {
    padding: 25px;
  }
  .community-note h3 {
    font-size: 23px;
  }
  .expert-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .expert-card {
    padding: 15px;
    min-height: 255px;
  }
  .expert-card h3 {
    font-size: 15px;
  }
  .expert-card p {
    font-size: 10px;
  }
  .expert-grid .expert-card:last-child {
    grid-column: span 2;
  }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .how-card:after {
    transform: rotate(90deg);
    right: auto;
    left: calc(50% - 14px);
    top: auto;
    bottom: -14px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-grid .quote-card:nth-child(n + 4) {
    display: none;
  }
  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .faq-aside {
    position: static;
  }
  .faq-aside h2 {
    font-size: 31px;
  }
  .faq-question {
    font-size: 13px;
  }
  .faq-answer {
    padding-right: 0;
  }
  .contact-cards {
    gap: 10px;
  }
  .contact-item {
    padding: 14px;
  }
  .contact-place {
    padding: 25px;
    min-height: 315px;
  }
  .contact-place h3 {
    font-size: 24px;
  }
  .mcp-panel {
    grid-column: span 2;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .qr-area {
    grid-column: span 2;
  }
  .footer-bottom {
    display: block;
    line-height: 2;
  }
  .page-hero {
    padding: 46px 0;
  }
  .page-hero h1 {
    font-size: 36px;
  }
  .article-body h2 {
    font-size: 24px;
  }
  .article-body p,
  .article-body ul {
    font-size: 13px;
  }
  .brand-chip {
    font-size: 9px;
  }
}
@media (max-width: 410px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
  .video-info h3 {
    min-height: 0;
  }
  .expert-grid {
    grid-template-columns: 1fr;
  }
  .expert-grid .expert-card:last-child {
    grid-column: auto;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .mcp-panel {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand,
  .qr-area {
    grid-column: auto;
  }
  .hero h1 {
    font-size: 35px;
  }
  .hero-stats {
    gap: 12px;
  }
  .hero-stats span {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* 国产视频 联系区域的原创门店视觉 */
.contact-place {
  isolation: isolate;
}
.studio-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.contact-place::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(16, 20, 47, 0.95),
    rgba(21, 35, 75, 0.7) 59%,
    rgba(26, 89, 106, 0.25)
  );
}
.contact-place::after {
  z-index: 1;
}
.contact-place > :not(.studio-photo) {
  position: relative;
  z-index: 2;
}

/* 国产视频 SEO、作者、视频与可信度组件 */
.trust-strip {
  padding: 28px 0;
  background: #eefcff;
  border-bottom: 1px solid #cceef2;
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr auto;
  align-items: center;
  gap: 24px;
}
.trust-strip h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}
.trust-strip p {
  margin: 0;
  color: #4f6f7b;
  font-size: 12px;
  line-height: 1.8;
}
.hero-disclosure b {
  letter-spacing: -0.5px;
}
.video-description {
  min-height: 51px;
  margin: 8px 0 0;
  color: #69708c;
  font-size: 11px;
  line-height: 1.7;
}
.video-detail-link {
  display: inline-block;
  margin-top: 10px;
  color: #c76158;
  font-size: 11px;
  font-weight: 800;
}
.video-detail-link:hover,
.footer-policy-link:hover {
  text-decoration: underline;
}
.content-caption {
  margin: 20px 0 0;
  padding: 13px 16px;
  border-left: 3px solid var(--cyan);
  background: #effcff;
  color: #47737e;
  font-size: 11px;
  line-height: 1.8;
}
.compliance-wall {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 38px 0 0;
  flex-wrap: wrap;
}
.article-byline {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 20px;
  color: #d5daef;
  font-size: 11px;
}
.article-byline span {
  padding-right: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}
.article-byline span:last-child {
  padding-right: 0;
  border-right: 0;
}
.evidence-panel {
  margin: 38px 0;
  padding: 24px;
  border: 1px solid #dce3f4;
  border-radius: 16px;
  background: #fafbff;
}
.evidence-panel h2 {
  margin-top: 0;
}
.evidence-panel h3 {
  margin-bottom: 8px;
}
.evidence-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 18px 0 22px;
  border-top: 1px solid #e2e6f1;
  border-left: 1px solid #e2e6f1;
}
.evidence-list div {
  padding: 11px 13px;
  border-right: 1px solid #e2e6f1;
  border-bottom: 1px solid #e2e6f1;
}
.evidence-list dt {
  color: #7b829d;
  font-size: 10px;
  font-weight: 800;
}
.evidence-list dd {
  margin: 4px 0 0;
  color: #343a5d;
  font-size: 12px;
  line-height: 1.65;
}
.footer-notice {
  color: #b8bfd8;
}
.footer-notice p {
  margin: 0 0 12px;
  color: #b8bfd8;
  font-size: 11px;
  line-height: 1.9;
}
.footer-policy-link {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
}
.mcp-actions a {
  border: 1px solid #f0b5a7;
  border-radius: 7px;
  background: #fff7f3;
  color: #a6534d;
  font-size: 10px;
  font-weight: 800;
  padding: 7px 9px;
}
.mcp-actions a:hover {
  background: var(--peach);
  border-color: var(--peach);
  color: #fff;
}
.video-detail-hero .eyebrow {
  position: relative;
  z-index: 2;
}
.video-detail-grid {
  display: grid;
  grid-template-columns: 1fr 315px;
  gap: 42px;
}
.full-video-wrap {
  overflow: hidden;
  border-radius: 18px;
  background: #10142f;
  box-shadow: var(--shadow);
}
.full-video-wrap video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #10142f;
}
.video-detail-main h2 {
  margin: 38px 0 13px;
  font-size: 26px;
}
.video-detail-main p,
.video-detail-main li {
  color: #4f5574;
  font-size: 14px;
  line-height: 2;
}
.video-detail-main ul {
  padding-left: 20px;
}
.video-copyright {
  margin: 15px 0;
  padding: 12px 15px;
  border-radius: 10px;
  background: #eefcff;
  color: #47737e !important;
  font-size: 12px !important;
  line-height: 1.8 !important;
}
@media (max-width: 1080px) {
  .trust-strip-inner,
  .video-detail-grid {
    grid-template-columns: 1fr;
  }
  .video-detail-grid .article-side {
    display: none;
  }
}
@media (max-width: 760px) {
  .trust-strip-inner {
    gap: 12px;
  }
  .trust-strip h2 {
    font-size: 18px;
  }
  .video-description {
    min-height: 0;
  }
  .article-byline {
    gap: 7px 10px;
    font-size: 10px;
  }
  .article-byline span {
    padding-right: 10px;
  }
  .evidence-panel {
    padding: 17px;
  }
  .evidence-list {
    grid-template-columns: 1fr;
  }
  .video-detail-main h2 {
    font-size: 22px;
  }
  .video-detail-main p,
  .video-detail-main li {
    font-size: 13px;
  }
}
