.page-home {
  --ph-primary: var(--color-primary);
  --ph-primary-grad: var(--color-primary-grad);
  --ph-deep: var(--color-deep-blue);
  --ph-teal: var(--color-teal);
  --ph-yellow: var(--color-yellow);
  --ph-cyan: var(--color-cyan);
  --ph-wine: var(--color-wine);
  --ph-purple: var(--color-purple);
  --ph-light: var(--color-light-bg);
  --ph-text: var(--color-text);
  --ph-text-muted: var(--color-text-muted);
  --ph-border: var(--color-border);
  background: var(--ph-light);
}

/* ---------- 首屏拼贴 ---------- */
.page-home .home-hero {
  position: relative;
  isolation: isolate;
  background: var(--ph-deep);
  color: #FFFFFF;
  overflow: hidden;
}

.page-home .hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.page-home .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: saturate(1.08) contrast(1.04);
  max-width: none;
}

.page-home .hero-bg-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 31, 68, 0.96) 0%, rgba(10, 31, 68, 0.88) 38%, rgba(10, 61, 98, 0.68) 72%, rgba(10, 61, 98, 0.46) 100%);
}

.page-home .hero-deco-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-home .hero-container {
  position: relative;
  z-index: 1;
}

.page-home .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding: 2.5rem 0 3rem;
}

.page-home .hero-access-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 3px solid var(--ph-primary);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.page-home .hero-access-num {
  color: var(--ph-yellow);
  font-weight: 700;
}

.page-home .hero-access h1 {
  font-family: var(--font-headline);
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 1rem 0 0.75rem;
  font-weight: 900;
}

.page-home .hero-title-highlight {
  color: #FFB300;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .page-home .hero-title-highlight {
    background: linear-gradient(90deg, #FF4E00 0%, #FFD600 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.page-home .hero-description {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  line-height: 1.8;
  max-width: 40rem;
  margin: 0 0 1.5rem;
}

.page-home .quick-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.page-home .quick-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  padding: 0.85rem 0.95rem;
  color: #FFFFFF;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.page-home .quick-item:hover {
  background: rgba(255, 78, 0, 0.88);
  border-color: transparent;
  transform: translateY(-2px);
}

.page-home .quick-item-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.page-home .quick-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.page-home .quick-item-name {
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
}

.page-home .quick-item-note {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .quick-item:hover .quick-item-note {
  color: rgba(255, 255, 255, 0.85);
}

.page-home .quick-item-arrow {
  margin-left: auto;
  color: var(--ph-yellow);
  font-weight: 700;
}

.page-home .hero-footnote {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.6;
}

.page-home .footnote-mark {
  color: var(--ph-yellow);
  flex-shrink: 0;
}

/* 实时比分面板 */
.page-home .score-panel {
  background: rgba(10, 31, 68, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.page-home .score-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.85rem;
  margin-bottom: 0.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-home .score-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.page-home .score-panel .live-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #00FFA3;
  animation: phPulse 1.8s ease-in-out infinite;
}

.page-home .score-refresh {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: var(--ph-yellow);
  background: rgba(255, 214, 0, 0.12);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.page-home .score-refresh::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ph-yellow);
  animation: phBlink 2.2s ease-in-out infinite;
}

.page-home .score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .score-row:last-of-type {
  border-bottom: 0;
}

.page-home .score-comp-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  flex-shrink: 0;
}

.page-home .score-competition {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 7rem;
}

.page-home .score-status {
  align-self: flex-start;
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.58);
  white-space: nowrap;
}

.page-home .score-teams {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.page-home .score-team {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}

.page-home .score-team.is-home {
  color: #FFFFFF;
  font-weight: 700;
}

.page-home .score-number {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ph-yellow);
  text-shadow: 0 0 8px rgba(255, 214, 0, 0.4);
  line-height: 1;
}

.page-home .score-separator {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
}

.page-home .score-panel-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.85rem;
  font-size: 0.74rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .score-panel-note {
  color: rgba(255, 255, 255, 0.5);
}

.page-home .score-panel-link {
  color: var(--ph-yellow);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

/* 联赛专题索引 */
.page-home .home-leagues {
  padding: 4rem 0;
  background: var(--ph-light);
}

.page-home .section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-home .section-heading-index {
  font-family: var(--font-headline);
  font-size: 3.2rem;
  line-height: 0.9;
  font-weight: 900;
  color: rgba(255, 78, 0, 0.18);
  min-width: 3.6rem;
}

@supports (-webkit-text-stroke: 2px black) {
  .page-home .section-heading-index {
    color: transparent;
    -webkit-text-stroke: 2px var(--color-primary);
  }
}

.page-home .section-heading-body {
  flex: 1 1 18rem;
  min-width: 16rem;
}

.page-home .section-heading-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--color-text-muted);
  margin: 0 0 0.3rem;
  text-transform: uppercase;
}

.page-home .section-heading h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--color-text);
  margin: 0;
  font-weight: 900;
  line-height: 1.2;
}

.page-home .section-heading-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0.5rem 0 0;
  max-width: 44ch;
}

.page-home .section-heading-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid var(--color-primary);
  white-space: nowrap;
}

.page-home .league-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.page-home .league-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-text);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-home .league-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}

.page-home .league-media img {
  width: 100%;
  height: auto;
  display: block;
}

.page-home .league-card-content {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.page-home .league-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--color-primary);
  font-weight: 700;
}

.page-home .league-card h3 {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 900;
}

.page-home .league-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

.page-home .league-more {
  margin-top: auto;
  padding-top: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.85rem;
}

.page-home .league-card--tennis {
  background: var(--ph-deep);
  color: #FFFFFF;
}

.page-home .league-card--tennis .league-kicker {
  color: var(--ph-yellow);
}

.page-home .league-card--tennis h3 {
  color: #FFFFFF;
}

.page-home .league-card--tennis p {
  color: rgba(255, 255, 255, 0.7);
}

.page-home .league-card--tennis .league-more {
  color: var(--ph-yellow);
}

.page-home .tennis-brief {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.page-home .tennis-set {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: 0.45rem 0.65rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-home .tennis-set b {
  color: var(--ph-yellow);
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--font-headline);
}

/* 帮助文档归档 */
.page-home .home-archive {
  position: relative;
  background: linear-gradient(135deg, var(--ph-teal) 0%, var(--ph-deep) 100%);
  color: #FFFFFF;
  padding: 4.5rem 0;
  overflow: hidden;
}

.page-home .home-archive::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 78, 0, 0.18), transparent 34%),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(255, 255, 255, 0.03) 24px 25px);
  pointer-events: none;
}

.page-home .archive-head {
  position: relative;
  z-index: 1;
}

.page-home .archive-head-badge {
  display: inline-block;
  background: var(--color-primary-grad);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.08em;
}

.page-home .archive-head h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  margin: 0.9rem 0 0.6rem;
  font-weight: 900;
  line-height: 1.25;
}

.page-home .archive-head p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 58ch;
  margin: 0;
}

.page-home .archive-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.page-home .archive-visual {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.page-home .archive-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.page-home .archive-visual-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(10, 31, 68, 0.82);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.74rem;
  color: var(--ph-yellow);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.page-home .archive-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.page-home .archive-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.page-home .archive-item[open] {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 214, 0, 0.3);
}

.page-home .archive-item summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.75rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  list-style: none;
}

.page-home .archive-item summary::-webkit-details-marker {
  display: none;
}

.page-home .archive-item summary::after {
  content: "+";
  margin-left: auto;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--ph-yellow);
  transition: transform 0.25s ease;
}

.page-home .archive-item[open] summary::after {
  transform: rotate(45deg);
}

.page-home .archive-item-index {
  font-family: var(--font-headline);
  color: var(--ph-yellow);
  font-weight: 700;
  font-size: 0.85rem;
}

.page-home .archive-item-title {
  font-weight: 600;
  font-size: 0.92rem;
  flex: 1 1 auto;
  min-width: 10rem;
}

.page-home .archive-item-count {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  background: rgba(255, 214, 0, 0.16);
  color: var(--ph-yellow);
  border-radius: 999px;
  white-space: nowrap;
}

.page-home .archive-item-desc {
  padding: 0.85rem 1.2rem 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .archive-item-desc p {
  margin: 0;
}

.page-home .archive-timeline-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
}

.page-home .archive-timeline-foot a {
  color: var(--ph-yellow);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

/* 收藏引导 */
.page-home .home-favorite {
  padding: 3.5rem 0;
  background: var(--ph-light);
}

.page-home .favorite-banner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  background: var(--color-primary-grad);
  border-radius: 1.25rem;
  color: #FFFFFF;
  overflow: hidden;
  box-shadow: 0 0.75rem 2.5rem rgba(255, 78, 0, 0.24);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.5rem), 0 100%);
}

.page-home .favorite-banner::before {
  content: "";
  position: absolute;
  right: 4rem;
  top: -2.5rem;
  width: 9rem;
  height: 9rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
}

.page-home .favorite-banner::after {
  content: "";
  position: absolute;
  right: 7rem;
  bottom: -1.5rem;
  width: 5rem;
  height: 5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.page-home .favorite-banner-mark {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: var(--ph-yellow);
  flex-shrink: 0;
}

.page-home .favorite-banner-body {
  flex: 1 1 18rem;
  min-width: 16rem;
  position: relative;
  z-index: 1;
}

.page-home .favorite-banner-body h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  margin: 0 0 0.45rem;
  line-height: 1.35;
  font-weight: 900;
}

.page-home .favorite-banner-body p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

.page-home .favorite-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.page-home .favorite-banner .btn {
  border-radius: 999px;
  font-size: 0.84rem;
  padding: 0.65rem 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .favorite-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(10, 31, 68, 0.2);
}

.page-home .favorite-banner .btn--dark {
  background: var(--ph-deep);
  color: #FFFFFF;
}

.page-home .favorite-banner .btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #FFFFFF;
  background: transparent;
}

/* 服务能力与覆盖 */
.page-home .home-metrics {
  background: var(--ph-deep);
  color: #FFFFFF;
  padding: 2.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.page-home .metrics-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.page-home .metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.25rem;
}

.page-home .metric-item {
  border-left: 3px solid var(--color-primary);
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.page-home .metric-num {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--ph-yellow);
}

.page-home .metric-label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

.page-home .metrics-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.5);
}

.page-home .metrics-foot a {
  color: var(--ph-yellow);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

/* 动效 */
@keyframes phPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 163, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(0, 255, 163, 0);
  }
}

@keyframes phBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.page-home [data-reveal] {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ---------- 平板与桌面 ---------- */
@media (min-width: 768px) {
  .page-home .hero-grid {
    gap: 2rem;
  }

  .page-home .quick-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .page-home .league-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .league-card--tennis {
    grid-column: 1 / -1;
  }

  .page-home .metrics-grid {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .page-home .hero-grid {
    grid-template-columns: 7fr 5fr;
    gap: 3rem;
    padding: 4.5rem 0 5rem;
    align-items: center;
  }

  .page-home .quick-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .home-leagues {
    padding: 5rem 0;
  }

  .page-home .league-grid {
    grid-template-columns: 3fr 2fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
  }

  .page-home .league-card--football {
    grid-row: 1 / -1;
  }

  .page-home .league-card--football .league-media {
    flex: 1 1 auto;
  }

  .page-home .league-card--football .league-media img {
    height: 100%;
    max-height: 20rem;
    object-fit: cover;
    min-height: 14rem;
  }

  .page-home .league-card--tennis {
    grid-column: auto;
  }

  .page-home .home-archive {
    padding: 5.5rem 0;
  }

  .page-home .archive-grid {
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    align-items: start;
  }

  .page-home .archive-visual img {
    margin-bottom: -4px;
  }

  .page-home .home-favorite {
    padding: 4.5rem 0;
  }

  .page-home .favorite-banner {
    padding: 2.5rem 3rem;
  }

  .page-home .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
