.page-home {
  background: var(--cream);
  color: var(--ink);
}

/* ---------- 面包屑条 ---------- */
.page-home .hl-crumbbar {
  background: var(--pine);
  border-bottom: 1px solid rgba(245, 239, 230, 0.14);
}
.page-home .hl-crumbbar .crumbs {
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-size: 0.8125rem;
  color: rgba(245, 239, 230, 0.7);
}
.page-home .hl-crumbbar .crumbs a {
  color: var(--brass);
  text-decoration: none;
}
.page-home .hl-crumbbar .crumbs__sep {
  padding: 0 8px;
  color: rgba(245, 239, 230, 0.34);
}

/* ---------- 首屏拼贴 ---------- */
.page-home .hl-hero {
  position: relative;
  padding: clamp(26px, 3.5vw, 48px) 0 clamp(48px, 6vw, 84px);
  background:
    radial-gradient(120% 92% at 90% -6%, rgba(240, 178, 122, 0.4) 0%, rgba(178, 74, 46, 0.14) 44%, rgba(245, 239, 230, 0) 74%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  border-bottom: 1px solid var(--hair);
}

.page-home .hl-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2vw, 24px);
}

.page-home .hl-kicker {
  margin: 0 0 16px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--soil);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.page-home .hl-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--soil);
}

.page-home .hl-hero__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.page-home .hl-hero__sub {
  margin: 0 0 26px;
  max-width: 34em;
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(27, 26, 23, 0.78);
}

.page-home .hl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .hl-hero__figure {
  margin: 0;
  align-self: stretch;
}
.page-home .hl-hero__figure img {
  display: block;
  width: 100%;
  height: clamp(220px, 34vw, 420px);
  object-fit: cover;
  object-position: center 40%;
}

/* 斜切比分条 */
.page-home .hl-score {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: clamp(22px, 2.6vw, 32px);
  color: var(--cream);
  background:
    linear-gradient(90deg, var(--soil) 0 5px, rgba(178, 74, 46, 0) 5px),
    linear-gradient(158deg, var(--pine) 0%, var(--pine-deep) 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 56px), calc(100% - 56px) 100%, 0 100%);
}
.page-home .hl-score__tag {
  margin: 0 0 12px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--brass);
}
.page-home .hl-score__num {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.4vw, 3.6rem);
  line-height: 1;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}
.page-home .hl-score__num--sm {
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  color: var(--brass);
}
.page-home .hl-score__unit {
  margin: 8px 0 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(245, 239, 230, 0.76);
}
.page-home .hl-score__rule {
  display: block;
  height: 1px;
  margin: 20px 0;
  background: rgba(245, 239, 230, 0.2);
}

/* 时间轴 */
.page-home .hl-tl-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  margin-bottom: 10px;
}
.page-home .hl-tl-title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.page-home .hl-tl-note {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(27, 26, 23, 0.58);
}

.page-home .hl-timeline {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  border-top: 1px solid var(--hair);
  -webkit-overflow-scrolling: touch;
}
.page-home .hl-node {
  position: relative;
  flex: 1 0 min(180px, 64vw);
  padding: 20px 18px 18px 0;
  border-right: 1px solid var(--hair);
}
.page-home .hl-node:last-child {
  border-right: 0;
}
.page-home .hl-node::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 3px rgba(217, 155, 69, 0.18);
}
.page-home .hl-node__time {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8125rem;
  color: var(--soil);
  font-variant-numeric: tabular-nums;
}
.page-home .hl-node__label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--ink);
}
.page-home .hl-node__desc {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(27, 26, 23, 0.6);
}

/* 首屏数据条 */
.page-home .hl-hero__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: clamp(18px, 2.4vw, 26px);
  background: rgba(31, 61, 43, 0.06);
  border: 1px solid var(--hair);
  border-left: 5px solid var(--soil);
}
.page-home .hl-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.page-home .hl-stat__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.05rem);
  line-height: 1.1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.page-home .hl-stat__suffix {
  margin-left: 6px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--soil);
}
.page-home .hl-stat__label {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(27, 26, 23, 0.66);
}

@media (min-width: 900px) {
  .page-home .hl-hero__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .page-home .hl-hero__lead {
    grid-column: 1 / span 5;
    grid-row: 1;
    padding-right: clamp(8px, 1.5vw, 20px);
  }
  .page-home .hl-hero__figure {
    grid-column: 6 / span 7;
    grid-row: 1;
  }
  .page-home .hl-score {
    grid-column: 1 / span 3;
    grid-row: 2 / span 2;
  }
  .page-home .hl-hero__timeline {
    grid-column: 4 / span 9;
    grid-row: 2;
  }
  .page-home .hl-hero__stats {
    grid-column: 4 / span 9;
    grid-row: 3;
  }
}

@media (min-width: 640px) {
  .page-home .hl-hero__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 32px);
  }
}

/* ---------- 全宽剪影带 ---------- */
.page-home .hl-band {
  position: relative;
  overflow: hidden;
  background: var(--dusk);
}
.page-home .hl-band__img {
  display: block;
  width: 100%;
  height: clamp(190px, 26vw, 330px);
  object-fit: cover;
  object-position: center 55%;
  opacity: 0.6;
}
.page-home .hl-band__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 18, 15, 0.9) 0%, rgba(20, 18, 15, 0.5) 52%, rgba(20, 18, 15, 0.2) 100%);
}
.page-home .hl-band__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.page-home .hl-band__line {
  margin: 0;
  max-width: 22em;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.05rem, 2.1vw, 1.55rem);
  line-height: 1.5;
  color: var(--cream);
}

/* ---------- 通用章节 ---------- */
.page-home .hl-sec {
  padding: var(--section-gap) 0;
  background: var(--cream);
}
.page-home .hl-sec--paper {
  background: var(--cream-2);
}
.page-home .hl-sec--archive {
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
}
.page-home .hl-sec--pine {
  background-color: var(--pine);
  background-image:
    repeating-linear-gradient(0deg, rgba(245, 239, 230, 0.055) 0 1px, rgba(245, 239, 230, 0) 1px 8px),
    repeating-linear-gradient(90deg, rgba(245, 239, 230, 0.055) 0 1px, rgba(245, 239, 230, 0) 1px 8px);
  color: var(--cream);
}
.page-home .hl-sec--dusk {
  background: var(--dusk);
  color: var(--cream);
}
.page-home .hl-sec--soil {
  background: linear-gradient(180deg, var(--cream) 0%, rgba(178, 74, 46, 0.07) 100%);
}

/* 章节抬头 */
.page-home .hl-head {
  margin-bottom: clamp(28px, 3.6vw, 48px);
}
.page-home .hl-head__index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soil);
}
.page-home .hl-head__index::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--soil);
}
.page-home .hl-head__title {
  margin: 0 0 14px;
  max-width: 24em;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  line-height: 1.24;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.page-home .hl-head__note {
  margin: 0;
  max-width: 46em;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(27, 26, 23, 0.7);
}

/* 正文段落 */
.page-home .hl-body p {
  margin: 0 0 1em;
  max-width: 42em;
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(27, 26, 23, 0.78);
}
.page-home .hl-body p:last-child {
  margin-bottom: 0;
}

/* ---------- 四类入口 ---------- */
.page-home .hl-entries {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 1.8vw, 20px);
}
.page-home .hl-entry {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 196px;
  padding: clamp(22px, 2.6vw, 32px);
  background: var(--cream);
  border: 1px solid var(--hair);
  border-left: 5px solid var(--soil);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  transition: background var(--dur) ease, border-color var(--dur) ease;
}
.page-home .hl-entry--b,
.page-home .hl-entry--c {
  background: var(--cream-2);
  border-left-color: var(--pine);
  min-height: 224px;
}
.page-home .hl-entry:hover {
  background: rgba(31, 61, 43, 0.07);
}
.page-home .hl-entry:focus-visible {
  outline: 2px solid var(--soil);
  outline-offset: 3px;
}
.page-home .hl-entry__k {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--soil);
}
.page-home .hl-entry__t {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  color: var(--ink);
}
.page-home .hl-entry__d {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.9375rem;
  line-height: 1.72;
  color: rgba(27, 26, 23, 0.72);
}
.page-home .hl-entry__go {
  align-self: flex-start;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--soil);
}
.page-home .hl-entry:hover .hl-entry__go {
  color: var(--pine);
}

@media (min-width: 860px) {
  .page-home .hl-entries {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .page-home .hl-entry--a { grid-column: span 7; }
  .page-home .hl-entry--b { grid-column: span 5; }
  .page-home .hl-entry--c { grid-column: span 5; }
  .page-home .hl-entry--d { grid-column: span 7; }
}

/* ---------- 赛前两栏 ---------- */
.page-home .hl-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 3.4vw, 48px);
  align-items: start;
}
.page-home .hl-split__media {
  margin: 0;
}
.page-home .hl-split__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.page-home .hl-split__body .hl-head__title {
  margin-bottom: 18px;
}
.page-home .hl-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hair);
}
.page-home .hl-list li {
  padding: 16px 0 16px 18px;
  border-bottom: 1px solid var(--hair);
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(27, 26, 23, 0.76);
}
.page-home .hl-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 8px;
  height: 8px;
  background: var(--soil);
}
.page-home .hl-list strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 800;
  color: var(--ink);
}

@media (min-width: 900px) {
  .page-home .hl-split {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(34px, 4.5vw, 72px);
  }
}

/* ---------- 赛后折叠区 ---------- */
.page-home .hl-accordion {
  border-top: 1px solid rgba(245, 239, 230, 0.18);
}
.page-home .hl-fold {
  border-bottom: 1px solid rgba(245, 239, 230, 0.18);
}
.page-home .hl-fold summary {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 2px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  color: var(--cream);
}
.page-home .hl-fold summary::-webkit-details-marker {
  display: none;
}
.page-home .hl-fold summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 1.15rem;
  color: var(--amber);
}
.page-home .hl-fold[open] summary::after {
  content: "−";
}
.page-home .hl-fold summary:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}
.page-home .hl-fold__body {
  padding: 0 2px 22px;
}
.page-home .hl-fold__body p {
  margin: 0;
  max-width: 52em;
  font-size: 0.9375rem;
  line-height: 1.78;
  color: rgba(245, 239, 230, 0.78);
}
.page-home .hl-pine__foot {
  margin: clamp(28px, 3.4vw, 44px) 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--amber);
  max-width: 52em;
  font-size: 0.9375rem;
  line-height: 1.78;
  color: rgba(245, 239, 230, 0.82);
}

/* ---------- 档案区 ---------- */
.page-home .hl-archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 40px);
}
.page-home .hl-archive-col {
  padding-left: 20px;
  border-left: 4px solid var(--soil);
}
.page-home .hl-archive-col__t {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--ink);
}
.page-home .hl-archive-col p {
  margin: 0;
  max-width: 34em;
  font-size: 0.9375rem;
  line-height: 1.78;
  color: rgba(27, 26, 23, 0.74);
}
.page-home .hl-archive-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 20px;
  margin-top: clamp(28px, 3.4vw, 44px);
  padding-top: 20px;
  border-top: 1px solid var(--hair);
}
.page-home .hl-archive-fact {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(27, 26, 23, 0.68);
}
.page-home .hl-archive-fact.mono {
  padding: 3px 10px;
  background: var(--amber);
  color: var(--ink);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius);
}

@media (min-width: 760px) {
  .page-home .hl-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 3.6vw, 56px);
  }
}

/* ---------- 发布节奏 ---------- */
.page-home .hl-rhythm {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  border-left: 1px solid rgba(245, 239, 230, 0.18);
}
.page-home .hl-beat {
  position: relative;
  padding: 24px 20px 26px 22px;
  border-bottom: 1px solid rgba(245, 239, 230, 0.12);
}
.page-home .hl-beat:last-child {
  border-bottom: 0;
}
.page-home .hl-beat__no {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--soil);
  margin-bottom: 10px;
}
.page-home .hl-beat__time {
  display: block;
  font-size: 0.8125rem;
  color: var(--amber);
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.page-home .hl-beat__t {
  margin: 0 0 8px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--cream);
}
.page-home .hl-beat__d {
  margin: 0;
  max-width: 30em;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(245, 239, 230, 0.7);
}

@media (min-width: 780px) {
  .page-home .hl-rhythm {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-left: 0;
    border-top: 1px solid rgba(245, 239, 230, 0.18);
  }
  .page-home .hl-beat {
    border-bottom: 0;
    border-right: 1px solid rgba(245, 239, 230, 0.12);
    padding: 30px 22px 12px;
  }
  .page-home .hl-beat:last-child {
    border-right: 0;
  }
  .page-home .hl-beat::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 0 3px rgba(255, 182, 39, 0.18);
  }
  .page-home .hl-beat__time {
    color: var(--brass);
  }
}

/* ---------- 云南看台 ---------- */
.page-home .hl-yn {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 3.4vw, 52px);
  align-items: start;
}
.page-home .hl-yn__points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.page-home .hl-yn__points li {
  padding-left: 18px;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.72;
  color: rgba(27, 26, 23, 0.76);
}
.page-home .hl-yn__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--soil);
}
.page-home .hl-yn__cover {
  margin: 24px 0 0;
  max-width: 40em;
  padding: 14px 18px;
  background: rgba(31, 61, 43, 0.08);
  border-left: 4px solid var(--pine);
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(27, 26, 23, 0.8);
}
.page-home .hl-weather {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.page-home .hl-weather__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(178, 74, 46, 0.1);
  border: 1px solid rgba(178, 74, 46, 0.28);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--soil);
}
.page-home .hl-yn__media {
  margin: 0;
}
.page-home .hl-yn__media figure {
  margin: 0;
}
.page-home .hl-yn__media img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 900px) {
  .page-home .hl-yn {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: clamp(36px, 4.6vw, 76px);
  }
}

/* ---------- 下一步 ---------- */
.page-home .hl-next {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.page-home .hl-next__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(20px, 2.4vw, 28px);
  background: var(--cream-2);
  border: 1px solid var(--hair);
  border-top: 4px solid var(--pine);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: background var(--dur) ease, border-top-color var(--dur) ease;
}
.page-home .hl-next__item:hover {
  background: rgba(178, 74, 46, 0.08);
  border-top-color: var(--soil);
}
.page-home .hl-next__item:focus-visible {
  outline: 2px solid var(--soil);
  outline-offset: 3px;
}
.page-home .hl-next__k {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--soil);
}
.page-home .hl-next__t {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.125rem;
}
.page-home .hl-next__d {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(27, 26, 23, 0.7);
}
.page-home .hl-service {
  margin: clamp(26px, 3.2vw, 40px) 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
  max-width: 48em;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(27, 26, 23, 0.66);
}

@media (min-width: 720px) {
  .page-home .hl-next {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1080px) {
  .page-home .hl-next {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ---------- 窄屏收口 ---------- */
@media (max-width: 620px) {
  .page-home .hl-band__line {
    max-width: 100%;
  }
  .page-home .hl-score {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), calc(100% - 34px) 100%, 0 100%);
  }
  .page-home .hl-archive-facts {
    flex-direction: column;
    gap: 10px;
  }
}
</main>
