.page-home {
  --home-hero-min: 640px;
  --home-section-space: clamp(3.5rem, 8vw, 6rem);
  --home-card-radius: var(--radius-cut);
  overflow-x: clip;
  background: var(--c-navy);
}

.page-home .breadcrumb {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  padding: 1rem 1.25rem 0;
  max-width: 1280px;
  color: rgba(255, 255, 255, .6);
}

.page-home .breadcrumb a {
  color: var(--c-gold);
  text-decoration: none;
}

/* ============ 首屏：数据大屏 ============ */
.p-home-hero {
  position: relative;
  min-height: var(--home-hero-min);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 1.25rem 4rem;
  overflow: hidden;
  color: #fff;
  background: var(--c-navy);
  clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
}

.p-home-hero__bg,
.p-home-hero__img,
.p-home-hero__overlay,
.p-home-hero__slash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.p-home-hero__bg {
  z-index: 0;
}

.p-home-hero__img {
  object-fit: cover;
  object-position: center 30%;
}

.p-home-hero__overlay {
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(10, 31, 68, .98) 0%, rgba(10, 31, 68, .86) 34%, rgba(30, 58, 138, .38) 100%),
    radial-gradient(900px 520px at 82% 18%, rgba(255, 215, 0, .12), transparent 60%);
}

.p-home-hero__slash {
  z-index: 2;
  pointer-events: none;
}

.p-home-hero__inner {
  position: relative;
  z-index: 3;
  width: min(1240px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.p-home-hero__copy {
  max-width: 640px;
}

.p-home-hero__kicker {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 .8rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .21em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.p-home-hero__kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--c-gold);
  transform: skewX(-30deg);
}

.p-home-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 9vw, 6.6rem);
  line-height: .93;
  letter-spacing: .015em;
  text-transform: uppercase;
  transform: skewX(-4deg);
  text-shadow: 5px 5px 0 rgba(255, 215, 0, .22);
}

.p-home-hero__lead {
  margin: 1.1rem 0 .55rem;
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 700;
  line-height: 1.5;
}

.p-home-hero__sub {
  margin: 0;
  max-width: 44rem;
  font-size: .92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .72);
}

.p-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}

.p-home-hero__actions .button {
  position: relative;
  overflow: hidden;
  border: 0;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: transform .35s var(--ease-snap), box-shadow .35s var(--ease-snap);
}

.p-home-hero__actions .button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .32);
}

.p-home-hero__actions .button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: rgba(255, 255, 255, .28);
  transform: skewX(-22deg);
  transition: left .55s var(--ease-snap);
}

.p-home-hero__actions .button:hover::after {
  left: 130%;
}

.p-home-hero__actions .button--gold {
  background: var(--c-gold);
  color: var(--c-navy);
}

.p-home-hero__actions .button--neon {
  background: rgba(57, 255, 20, .1);
  color: var(--c-neon);
  border: 1px solid rgba(57, 255, 20, .65);
}

.p-home-hero__dash {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
}

.dash-panel {
  position: relative;
  padding: 1.05rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--home-card-radius);
  backdrop-filter: blur(7px);
  animation: pDashIn .7s var(--ease-snap) backwards;
}

.dash-panel:nth-child(2) {
  animation-delay: .08s;
}

.dash-panel:nth-child(3) {
  animation-delay: .16s;
}

.dash-panel:nth-child(4) {
  animation-delay: .24s;
}

@keyframes pDashIn {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(-1deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

.dash-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 26px;
  height: 26px;
  background: var(--c-neon);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.dash-panel--gold::before {
  background: var(--c-gold);
}

.dash-panel--primary::before {
  background: var(--c-navy-light);
}

.dash-panel--ink::before {
  background: var(--c-orange);
}

.dash-panel__label {
  display: block;
  margin-bottom: .32rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .58);
}

.dash-panel__num {
  display: flex;
  align-items: baseline;
  gap: .2rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 1;
  color: #fff;
}

.dash-panel__num em {
  font-style: normal;
  font-size: .42em;
  color: var(--c-gold);
}

.dash-panel--neon .dash-panel__num em {
  color: var(--c-neon);
}

.dash-panel__note {
  display: block;
  margin-top: .55rem;
  font-size: .72rem;
  color: rgba(255, 255, 255, .54);
}

.p-home-hero__ticker {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  padding: .62rem 1rem;
  background: rgba(0, 0, 0, .42);
  border-top: 1px solid rgba(255, 215, 0, .35);
  white-space: nowrap;
  overflow: hidden;
}

.p-home-hero__ticker em {
  display: flex;
  align-items: center;
  margin: 0;
  font-style: normal;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
  animation: pTickerScroll 26s linear infinite;
}

.p-home-hero__ticker span {
  margin-right: 1.4rem;
}

.p-home-hero__ticker i {
  margin-right: 1.4rem;
  font-style: normal;
  color: var(--c-gold);
}

@keyframes pTickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============ 02 本季赛事战报速览 ============ */
.p-home-overview {
  position: relative;
  padding: var(--home-section-space) 1.25rem;
  background: var(--c-paper);
  color: var(--c-ink);
}

.p-home-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8%;
  width: 58%;
  height: 8px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-orange));
  transform: skewX(-32deg);
}

.p-home-head .section-kicker {
  color: var(--c-orange);
  font-weight: 700;
  letter-spacing: .22em;
}

.p-home-head .section-title {
  margin: .2rem 0 .8rem;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--c-navy);
}

.p-home-head .section-copy {
  max-width: 44rem;
  margin: 0;
  font-size: .94rem;
  line-height: 1.75;
  color: rgba(17, 17, 17, .7);
}

.p-home-head {
  margin-bottom: 2.6rem;
}

.p-home-head--light .section-title {
  color: #fff;
}

.p-home-head--light .section-kicker {
  color: var(--c-gold);
}

.p-home-head--light .section-copy {
  color: rgba(255, 255, 255, .68);
}

.p-home-overview__body {
  display: grid;
  gap: 2.8rem;
  align-items: center;
}

.p-home-overview__device {
  position: relative;
  width: min(240px, 70%);
  justify-self: center;
}

.p-home-overview__device::after {
  content: "";
  position: absolute;
  left: -42px;
  top: 18%;
  width: 46px;
  height: 2px;
  background: var(--c-neon);
  transform: rotate(-28deg);
  filter: drop-shadow(0 0 8px rgba(57, 255, 20, .8));
}

.p-home-device__frame {
  padding: 9px;
  border-radius: 30px;
  background: linear-gradient(160deg, var(--c-gold), var(--c-navy) 70%);
  box-shadow: 0 30px 50px rgba(10, 31, 68, .28);
  transform: rotate(-2.5deg);
}

.p-home-device__frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.p-home-device__line {
  height: 10px;
  width: 128px;
  margin: 1.1rem auto 0;
  background: repeating-linear-gradient(135deg, var(--c-navy) 0 6px, transparent 6px 12px);
  opacity: .38;
}

.p-home-overview__list {
  display: grid;
  gap: 1rem;
}

.p-home-overview__item {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 1rem;
  padding: 1.2rem 1.2rem 1.2rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, .1);
}

.p-home-overview__item:last-child {
  border-bottom: 0;
}

.p-home-overview__idx {
  font-family: var(--font-display);
  font-size: 2.9rem;
  line-height: 1;
  color: rgba(10, 31, 68, .16);
}

.p-home-overview__content h3 {
  margin: .1rem 0 .4rem;
  font-size: 1.12rem;
  color: var(--c-navy);
}

.p-home-overview__content p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.75;
  color: rgba(17, 17, 17, .68);
}

/* ============ 03 平台入口总览 ============ */
.p-home-entry {
  position: relative;
  padding: var(--home-section-space) 1.25rem;
  overflow: hidden;
  background:
    radial-gradient(820px 480px at 88% -10%, rgba(255, 215, 0, .14), transparent 62%),
    linear-gradient(135deg, var(--c-navy) 0%, #071430 100%);
  color: #fff;
}

.p-home-entry::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 215, 0, .3);
}

.p-home-entry__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.4rem;
}

.p-home-entry__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.8rem 1.5rem 1.6rem;
  overflow: hidden;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--home-card-radius);
  backdrop-filter: blur(9px);
  transition: transform .35s var(--ease-snap), border-color .35s;
}

.p-home-entry__card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, .45);
}

.p-home-entry__card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--c-gold), var(--c-neon));
}

.p-home-entry__idx {
  position: absolute;
  top: .6rem;
  right: 1.2rem;
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 1;
  color: rgba(255, 255, 255, .12);
}

.p-home-entry__card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.p-home-entry__card p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .66);
}

.p-home-entry__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-home-entry__tags li {
  padding: .28rem .62rem;
  border: 1px solid rgba(255, 215, 0, .42);
  border-radius: 999px;
  font-size: .72rem;
  color: var(--c-gold);
}

.p-home-entry__card .button {
  align-self: flex-start;
  margin-top: auto;
}

.p-home-entry__card .button--neon {
  background: rgba(57, 255, 20, .1);
  border: 1px solid rgba(57, 255, 20, .6);
  color: var(--c-neon);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background .3s, transform .3s;
}

.p-home-entry__card .button--neon:hover {
  background: rgba(57, 255, 20, .2);
  transform: translateY(-2px);
}

.p-home-entry__card .button--gold {
  background: var(--c-gold);
  color: var(--c-navy);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background .3s, transform .3s;
}

.p-home-entry__card .button--gold:hover {
  background: #ffe14a;
  transform: translateY(-2px);
}

.p-home-entry__card .cta-link {
  margin-top: auto;
  align-self: flex-start;
  color: var(--c-neon);
  font-weight: 700;
  text-decoration: none;
}

.p-home-entry__card--pc img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .34);
}

.p-home-entry__fee-num {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  margin-top: auto;
  padding-top: .95rem;
  border-top: 1px dashed rgba(255, 255, 255, .22);
}

.p-home-entry__fee-num span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
}

.p-home-entry__fee-num strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--c-gold);
}

/* ============ 04 按球队分组的战报归档 ============ */
.p-home-archive {
  padding: var(--home-section-space) 1.25rem;
  background:
    linear-gradient(180deg, var(--c-paper) 0%, #efe9dd 100%);
  color: var(--c-ink);
}

.p-home-archive__filter {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-bottom: 2.8rem;
}

.p-home-archive__filter-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--c-orange);
}

.p-home-archive__filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.p-home-archive__filter-btn {
  padding: .44rem 1rem;
  border: 1px solid rgba(10, 31, 68, .22);
  border-radius: 999px;
  background: transparent;
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-navy);
  cursor: pointer;
  transition: all .3s var(--ease-snap);
}

.p-home-archive__filter-btn:hover {
  border-color: var(--c-gold);
  color: var(--c-navy);
  background: rgba(255, 215, 0, .12);
}

.p-home-archive__filter-btn.is-active {
  background: var(--c-navy);
  border-color: var(--c-navy);
  color: #fff;
  box-shadow: 0 6px 14px rgba(10, 31, 68, .18);
}

.p-home-archive__grid {
  column-count: 1;
  column-gap: 1.4rem;
}

.p-home-report {
  break-inside: avoid;
  display: flex;
  flex-direction: column;
  margin: 0 0 1.4rem;
  overflow: hidden;
  background: #fff;
  border-radius: var(--home-card-radius);
  box-shadow: 0 10px 26px rgba(10, 31, 68, .1);
  transition: box-shadow .35s, transform .35s;
}

.p-home-report:hover {
  box-shadow: 0 20px 42px rgba(10, 31, 68, .2);
}

.p-home-report__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--c-navy);
}

.p-home-report__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-snap);
}

.p-home-report:hover .p-home-report__media img {
  transform: scale(1.05);
}

.p-home-report__score {
  position: absolute;
  right: 1rem;
  bottom: -1rem;
  padding: .3rem .9rem .7rem;
  background: var(--c-navy);
  color: #fff;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .22);
  transform: skewX(-6deg);
}

.p-home-report__dot {
  margin-inline: .16rem;
  color: var(--c-gold);
}

.p-home-report__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .75rem;
  padding: 1.5rem 1.25rem 1.25rem;
}

.p-home-report__clubs {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: .94rem;
  color: var(--c-navy);
}

.p-home-report__clubs i {
  font-style: normal;
  font-size: .72rem;
  font-weight: 800;
  color: var(--c-orange);
}

.p-home-report__body h3 {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.45;
  color: var(--c-ink);
}

.p-home-report__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-top: auto;
}

.p-home-report__week {
  font-size: .74rem;
  color: rgba(17, 17, 17, .58);
}

.p-home-archive__more {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  margin-top: 2.6rem;
  font-weight: 700;
  color: var(--c-navy);
  text-decoration: none;
  border-bottom: 2px solid var(--c-gold);
  padding-bottom: .3rem;
  transition: gap .3s;
}

.p-home-archive__more:hover {
  gap: .7rem;
}

/* ============ 05 更新动态与内容索引 ============ */
.p-home-index {
  position: relative;
  padding: var(--home-section-space) 1.25rem;
  overflow: hidden;
  background:
    radial-gradient(1100px 540px at 15% -10%, rgba(30, 58, 138, .75), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(255, 215, 0, .1), transparent 60%),
    var(--c-navy);
  color: #fff;
}

.p-home-index__layout {
  display: grid;
  gap: 3rem;
}

.p-home-index__update {
  padding-top: 1.6rem;
  border-top: 3px solid var(--c-gold);
}

.p-home-update__ring {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.p-home-update__ring span {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: .9;
  color: var(--c-gold);
}

.p-home-update__ring strong {
  max-width: 7em;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .72);
}

.p-home-update__list {
  display: grid;
  gap: .8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-home-update__row {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.p-home-update__dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: .55rem;
  border-radius: 50%;
  background: var(--c-neon);
  box-shadow: 0 0 9px rgba(57, 255, 20, .8);
}

.p-home-update__dot--gold {
  background: var(--c-gold);
  box-shadow: 0 0 9px rgba(255, 215, 0, .8);
}

.p-home-update__dot--neon {
  background: var(--c-neon);
}

.p-home-update__row p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, .72);
}

.p-home-update__row p strong {
  color: #fff;
}

.p-home-update__timeline {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.p-home-update__timeline li {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: .25rem;
  padding: .2rem .5rem;
  border-left: 2px solid var(--c-gold);
  color: rgba(255, 255, 255, .6);
  font-size: .78rem;
}

.p-home-update__timeline span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
}

.p-home-index__blocks {
  display: grid;
  gap: .75rem;
}

.p-home-index__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.05rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--home-card-radius);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  text-decoration: none;
  transition: transform .3s var(--ease-snap), border-color .3s, background .3s;
}

.p-home-index__item:hover {
  transform: translateX(7px);
  border-color: var(--c-gold);
  background: rgba(255, 255, 255, .1);
}

.p-home-index__item--navy {
  background: linear-gradient(135deg, rgba(30, 58, 138, .5), transparent);
}

.p-home-index__item--gold {
  background: linear-gradient(135deg, rgba(255, 215, 0, .19), transparent);
}

.p-home-index__item--neon {
  background: linear-gradient(135deg, rgba(57, 255, 20, .12), transparent);
}

.p-home-index__item--orange {
  background: linear-gradient(135deg, rgba(255, 87, 0, .14), transparent);
}

.p-home-index__item--ink {
  background: linear-gradient(135deg, rgba(17, 17, 17, .36), transparent);
}

.p-home-index__num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--c-gold);
}

.p-home-index__item h3 {
  margin: 0;
  font-size: 1.08rem;
}

.p-home-index__item p {
  margin: .2rem 0 0;
  font-size: .76rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, .58);
}

.p-home-index__item .cta-link-arrow {
  color: var(--c-gold);
  font-weight: 700;
}

/* ============ 响应式增强 ============ */
@media (min-width: 680px) {
  .page-home .breadcrumb {
    padding-top: 1.4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .p-home-hero {
    min-height: calc(100vh - 120px);
    padding: 5rem 2rem 5.5rem;
  }

  .p-home-hero__inner {
    gap: 2.6rem;
  }

  .p-home-hero__dash {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
  }

  .dash-panel {
    padding: 1.4rem;
  }

  .p-home-overview,
  .p-home-entry,
  .p-home-archive,
  .p-home-index {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .p-home-overview__body {
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
  }

  .p-home-entry__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }

  .p-home-archive__grid {
    column-count: 2;
  }

  .p-home-index__layout {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 3rem;
  }

  .p-home-index__item {
    padding: 1.15rem 1.35rem;
  }
}

@media (min-width: 1080px) {
  .p-home-hero {
    padding: 6rem 2.5rem 5.5rem;
  }

  .p-home-hero__inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 4rem;
  }

  .p-home-hero__dash {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
  }

  .p-home-overview,
  .p-home-entry,
  .p-home-archive,
  .p-home-index {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .p-home-overview__body {
    grid-template-columns: 300px 1fr;
    gap: 4rem;
  }

  .p-home-archive__grid {
    column-count: 3;
    column-gap: 1.6rem;
  }

  .p-home-entry__grid {
    gap: 1.5rem;
  }

  .p-home-index__item {
    grid-template-columns: 3.4rem 1fr auto;
  }
}
