.page-home {
  --home-red: #D50000;
  --home-red-deep: #8B0000;
  --home-gold: #FFD700;
  --home-gold-line: #FFC107;
  --home-black: #121212;
  --home-gray: #1E1E1E;
  --home-red-soft: #B71C1C;
  --home-text: #FFFFFF;
  --home-text-soft: #F0F0F0;
  --home-font-heading: 'PingFang SC', 'Helvetica Neue', sans-serif;
  --home-font-body: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  background: var(--home-black);
  color: var(--home-text);
  overflow-x: hidden;
}

.page-home .container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

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

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

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 2px;
  font-family: var(--home-font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.page-home .btn:hover {
  transform: translateY(-2px);
}

.page-home .btn-gold {
  background: linear-gradient(135deg, #FFD700 0%, #FFC107 55%, #D50000 130%);
  color: #121212;
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 4px 18px rgba(255, 215, 0, 0.18);
}

.page-home .btn-outline {
  background: transparent;
  color: var(--home-text);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.page-home .btn-outline:hover {
  border-color: var(--home-gold);
  color: var(--home-gold);
}

.page-home .btn-sm {
  padding: 7px 14px;
  font-size: 13px;
}

/* ===== 首屏：目录式主题声明 + 斜切赛场图 ===== */
.home-intro {
  position: relative;
  padding: 64px 0 56px;
  background:
    linear-gradient(115deg, rgba(139, 0, 0, 0.55) 0%, rgba(18, 18, 18, 0) 58%),
    radial-gradient(ellipse at 78% 18%, rgba(181, 28, 28, 0.42) 0%, rgba(18, 18, 18, 0) 65%),
    #121212;
  border-bottom: 1px solid rgba(255, 215, 0, 0.18);
}

.home-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.home-intro__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 36px;
  z-index: 1;
}

.home-intro__content {
  max-width: 700px;
}

.home-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-family: var(--home-font-body);
  letter-spacing: 0.28em;
  color: var(--home-gold);
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.35);
  margin-bottom: 18px;
}

.home-intro__eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--home-gold);
  transform: rotate(45deg);
}

.home-intro__title {
  font-family: var(--home-font-heading);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.home-intro__lead {
  font-family: var(--home-font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(240, 240, 240, 0.86);
  margin: 0 0 22px;
  max-width: 620px;
}

.home-intro__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-intro__meta-item {
  font-family: var(--home-font-body);
  font-size: 12px;
  color: var(--home-text-soft);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--home-red);
  padding: 6px 12px;
  letter-spacing: 0.06em;
}

.home-intro__visual {
  position: relative;
  max-width: 800px;
}

.home-intro__stadium {
  position: relative;
  clip-path: polygon(0 0, 96% 0, 100% 6%, 100% 100%, 4% 100%, 0 94%);
  overflow: hidden;
  background: var(--home-gray);
  border: 1px solid rgba(255, 215, 0, 0.18);
}

.home-intro__stadium-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.08);
}

.home-intro__stadium-tag {
  position: absolute;
  right: 16px;
  top: 14px;
  font-family: var(--home-font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: 13px;
  color: var(--home-gold);
  background: rgba(18, 18, 18, 0.72);
  padding: 4px 10px;
  letter-spacing: 0.2em;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.home-intro__coord {
  position: absolute;
  right: 4px;
  bottom: -22px;
  font-family: var(--home-font-body);
  font-size: 11px;
  color: rgba(240, 240, 240, 0.55);
  letter-spacing: 0.16em;
  writing-mode: horizontal-tb;
}

.home-toc {
  padding: 56px 0 64px;
  position: relative;
}

.home-toc::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), rgba(213, 0, 0, 0.6), transparent);
}

.home-toc__heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}

.home-toc__index {
  font-family: var(--home-font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: 18px;
  color: var(--home-red);
  letter-spacing: 0.08em;
}

.home-toc__title {
  font-family: var(--home-font-heading);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0;
}

.home-toc__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-toc__link {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  padding: 16px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: background 0.25s ease, padding-left 0.25s ease;
}

.home-toc__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--home-gold);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.home-toc__link:hover,
.home-toc__link.is-active {
  background: rgba(213, 0, 0, 0.18);
  padding-left: 14px;
}

.home-toc__link:hover::before,
.home-toc__link.is-active::before {
  transform: scaleY(1);
}

.home-toc__num {
  grid-row: 1 / span 2;
  font-family: var(--home-font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  color: var(--home-red);
  letter-spacing: -0.04em;
}

.home-toc__text {
  align-self: end;
  font-family: var(--home-font-heading);
  font-weight: 700;
  font-size: 18px;
}

.home-toc__desc {
  align-self: start;
  font-family: var(--home-font-body);
  font-size: 13px;
  color: rgba(240, 240, 240, 0.6);
}

/* ===== 通用编号章节 ===== */
.home-section {
  padding: 64px 0 40px;
  position: relative;
}

.home-section__header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px 18px;
  margin-bottom: 40px;
  padding-top: 12px;
}

.home-section__coord {
  flex: 0 0 auto;
  font-family: var(--home-font-body);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: rgba(240, 240, 240, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 8px;
  text-transform: uppercase;
}

.home-section__number {
  font-family: var(--home-font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(213, 0, 0, 0.75);
  letter-spacing: -0.06em;
  opacity: 0.7;
}

.home-section__heading-group {
  flex: 1 1 260px;
  border-left: 3px solid var(--home-gold-line);
  padding-left: 16px;
}

.home-section__title {
  font-family: var(--home-font-heading);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  margin: 0 0 6px;
}

.home-section__subtitle {
  font-family: var(--home-font-body);
  font-size: 14px;
  color: var(--home-text-soft);
  opacity: 0.82;
  margin: 0;
}

/* ===== 01 新导航 / 红黄牌 + 分类标签 ===== */
.home-nav-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.home-nav-card {
  background: linear-gradient(150deg, rgba(30, 30, 30, 0.95) 0%, rgba(24, 24, 24, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 20px;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.home-nav-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-right: 28px solid var(--home-red);
  border-top: 28px solid transparent;
  opacity: 0.85;
}

.home-nav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
}

.home-nav-card--primary {
  border-top: 3px solid var(--home-red);
}

.home-nav-card--aside {
  border-top: 3px solid var(--home-gold-line);
}

.home-nav-card__label {
  display: inline-block;
  font-family: var(--home-font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--home-gold);
  background: rgba(213, 0, 0, 0.14);
  padding: 4px 10px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 215, 0, 0.16);
}

.home-nav-card__title {
  font-family: var(--home-font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: 24px;
  margin: 0 0 10px;
}

.home-nav-card__text {
  font-family: var(--home-font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(240, 240, 240, 0.8);
  margin: 0 0 18px;
}

.home-card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}

.home-card-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.home-card-stat__num {
  font-family: var(--home-font-heading);
  font-weight: 900;
  font-style: italic;
  font-size: 30px;
  color: var(--home-red);
  line-height: 1;
}

.home-nav-card--primary .home-card-stat__num {
  color: var(--home-red);
}

.home-card-stat__label {
  font-family: var(--home-font-body);
  font-size: 12px;
  color: rgba(240, 240, 240, 0.72);
  letter-spacing: 0.08em;
}

.home-card-chart {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px;
  position: relative;
}

.home-card-chart img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.home-tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 16px;
}

.home-tag {
  font-family: var(--home-font-body);
  font-size: 13px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--home-red);
  color: rgba(240, 240, 240, 0.9);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.home-tag:hover {
  background: rgba(213, 0, 0, 0.2);
  border-color: rgba(255, 193, 7, 0.45);
}

.home-tag--live {
  border-left-color: #E53935;
  background: rgba(229, 57, 53, 0.12);
  color: #FFCDD2;
}

.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E53935;
  margin-right: 4px;
  animation: home-pulse 1.4s ease-in-out infinite;
}

@keyframes home-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.75); }
}

.home-nav-card__note {
  font-family: var(--home-font-body);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(240, 240, 240, 0.55);
  border-left: 2px solid var(--home-gold-line);
  padding-left: 10px;
  margin-bottom: 0;
}

/* ===== 02 战报 / 集锦双入口 ===== */
.home-section--slant {
  background:
    linear-gradient(178deg, rgba(139, 0, 0, 0.34) 0%, rgba(18, 18, 18, 0) 42%),
    linear-gradient(2deg, rgba(213, 0, 0, 0.16) 0%, rgba(18, 18, 18, 0) 48%),
    #121212;
  border-top: 1px solid rgba(255, 215, 0, 0.16);
  border-bottom: 1px solid rgba(255, 215, 0, 0.16);
  position: relative;
}

.home-section--slant::before {
  content: "";
  position: absolute;
  top: 0;
  left: -12%;
  width: 124%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(213, 0, 0, 0.5), transparent);
}

.home-report-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.home-report-entry {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--home-gray);
  border: 1px solid rgba(255, 255, 255, 0.09);
  position: relative;
  transition: transform 0.28s ease;
}

.home-report-entry:hover {
  transform: translateY(-4px);
}

.home-report-entry__image {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.home-report-entry__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.home-report-entry__body {
  padding: 22px 20px;
}

.home-report-entry__tag {
  display: inline-block;
  font-family: var(--home-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--home-text);
  background: var(--home-red);
  padding: 4px 10px;
  margin-bottom: 12px;
}

.home-report-entry__tag--gold {
  background: linear-gradient(135deg, #FFD700, #D50000);
  color: #121212;
}

.home-report-entry__title {
  font-family: var(--home-font-heading);
  font-weight: 900;
  font-style: italic;
  font-size: 24px;
  margin: 0 0 8px;
}

.home-report-entry__text {
  font-family: var(--home-font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(240, 240, 240, 0.78);
  margin: 0 0 16px;
}

.home-report-entry__link {
  margin-top: 4px;
}

.home-report-note {
  font-family: var(--home-font-body);
  font-size: 13px;
  color: rgba(240, 240, 240, 0.55);
  border: 1px dashed rgba(255, 193, 7, 0.4);
  padding: 12px 16px;
  margin: 32px 0 0;
  background: rgba(255, 215, 0, 0.03);
}

/* ===== 03 周末连播订阅计划 ===== */
.home-subscribe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.home-subscribe-step {
  position: relative;
  background: rgba(30, 30, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 20px 20px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.home-subscribe-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(180deg, var(--home-gold), var(--home-red));
}

.home-subscribe-step:hover {
  background: rgba(60, 22, 22, 0.55);
  border-color: rgba(255, 215, 0, 0.22);
}

.home-subscribe-step__num {
  font-family: var(--home-font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--home-gold);
  display: block;
  margin-bottom: 8px;
}

.home-subscribe-step__title {
  font-family: var(--home-font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: 19px;
  margin: 0 0 8px;
}

.home-subscribe-step__text {
  font-family: var(--home-font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(240, 240, 240, 0.78);
  margin: 0;
}

.home-subscribe-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  background: linear-gradient(120deg, rgba(181, 28, 28, 0.32) 0%, rgba(30, 30, 30, 0.9) 60%);
  border: 1px solid rgba(255, 215, 0, 0.24);
  padding: 22px 20px;
}

.home-subscribe-cta__text {
  flex: 1 1 260px;
  font-family: var(--home-font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(240, 240, 240, 0.85);
  margin: 0;
}

.home-subscribe-cta__btn {
  min-width: 140px;
}

/* ===== 04 数据同步进度 ===== */
.home-section--sync {
  background:
    radial-gradient(circle at 12% 22%, rgba(181, 28, 28, 0.32) 0%, transparent 44%),
    linear-gradient(180deg, #161616 0%, #121212 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.12);
}

.home-sync-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.home-sync-progress {
  background: var(--home-gray);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-left: 4px solid var(--home-gold);
}

.home-sync-progress__milestone {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 16px;
  margin-bottom: 14px;
}

.home-sync-progress__round {
  font-family: var(--home-font-heading);
  font-weight: 900;
  font-style: italic;
  font-size: 22px;
  color: var(--home-red);
}

.home-sync-progress__status {
  font-family: var(--home-font-body);
  font-size: 13px;
  color: var(--home-gold);
  border: 1px solid rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.06);
  padding: 4px 12px;
  letter-spacing: 0.08em;
}

.home-sync-progress__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.home-sync-progress__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-sync-progress__list li {
  font-family: var(--home-font-body);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(240, 240, 240, 0.82);
  padding-left: 14px;
  position: relative;
}

.home-sync-progress__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  background: var(--home-red);
  transform: rotate(45deg);
}

.home-sync-status {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-sync-status__box {
  background: rgba(30, 30, 30, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid var(--home-red);
  padding: 20px;
}

.home-sync-status__box--gold {
  border-bottom-color: var(--home-gold);
}

.home-sync-status__label {
  font-family: var(--home-font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--home-gold);
  display: block;
  margin-bottom: 6px;
}

.home-sync-status__value {
  font-family: var(--home-font-heading);
  font-weight: 900;
  font-style: italic;
  font-size: 28px;
  margin: 0 0 8px;
}

.home-sync-status__desc {
  font-family: var(--home-font-body);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(240, 240, 240, 0.7);
  margin: 0;
}

.home-sync-status__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--home-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--home-gold);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.4);
  align-self: flex-start;
  transition: gap 0.2s ease;
}

.home-sync-status__link:hover {
  gap: 12px;
}

/* ===== 媒体查询 / 桌面端增强 ===== */
@media (min-width: 640px) {
  .page-home .container {
    padding: 0 24px;
  }

  .home-toc__list {
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .home-toc__link:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .home-nav-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .home-report-layout {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .home-report-entry {
    grid-template-columns: 1fr;
  }

  .home-subscribe-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .home-sync-layout {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .home-intro {
    padding: 88px 0 72px;
  }

  .home-intro__inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .home-intro__content {
    flex: 1.1 1 0;
  }

  .home-intro__visual {
    flex: 0.9 1 0;
    transform: rotate(1deg);
  }

  .home-toc {
    padding: 72px 0 84px;
  }

  .home-toc__list {
    grid-template-columns: repeat(4, 1fr);
    border-right: none;
  }

  .home-toc__link {
    grid-template-columns: 40px 1fr;
    padding: 22px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .home-toc__link:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .home-toc__num {
    font-size: 42px;
  }

  .home-section {
    padding: 88px 0 60px;
  }

  .home-section__header {
    align-items: center;
    gap: 10px 22px;
  }

  .home-section__number {
    font-size: 110px;
  }

  .home-section__heading-group {
    padding-left: 20px;
  }

  .home-report-layout {
    gap: 28px;
  }

  .home-report-entry {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .home-report-entry__image {
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: none;
  }

  .home-report-entry__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
  }

  .home-subscribe-grid {
    gap: 24px;
  }

  .home-sync-layout {
    gap: 32px;
  }

  .home-sync-progress {
    padding: 28px;
  }
}
