.site-info-main {
  padding-bottom: 0;
}

/* 标题区 — post04 整幅海报，文案居中叠在留白区 */
.site-info-hero {
  padding: 32px 0 28px;
  background: #ffffff;
}

.site-info-hero__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1516 / 456;
}

.site-info-hero__poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-info-hero__content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: min(100%, 520px);
  padding: 0 24px;
  text-align: center;
}

.site-info-hero__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--color-accent);
  letter-spacing: 0.12em;
}

.site-info-hero__label-line {
  width: 48px;
  height: 1px;
  background: var(--color-accent);
}

.site-info-hero__title {
  margin: 0 0 14px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  color: var(--color-text);
}

.site-info-hero__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-muted);
}

/* 合规文件 + 温馨提示 — 统一间距 */
.site-info-body {
  padding: 0 0 72px;
  background: #ffffff;
}

.site-info-body__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.policy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 272px;
  padding: 36px 32px 28px;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: #ffffff;
  text-align: center;
}

.policy-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
}

.policy-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.policy-card__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
}

.policy-card__title::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 2px;
  background: var(--color-accent);
}

.policy-card__desc {
  flex: 1;
  margin: 16px 0 20px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--color-muted);
}

.policy-card__link {
  font-size: 14px;
  color: var(--color-accent);
  transition: opacity 0.2s;
}

.policy-card__link:hover {
  opacity: 0.75;
}

/* 温馨提示 — post05 整幅海报，文案叠在左侧留白区 */
.notice-poster {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 998 / 243;
  border: 1px solid var(--color-line);
  border-radius: 10px;
}

.notice-poster__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.notice-poster__content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 54%;
  max-width: 560px;
  padding: 0 36px 0 40px;
}

.notice-poster__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
}

.notice-poster__title img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.notice-poster__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-muted);
}

.legal-body {
  text-align: left;
}

.legal-body h2 {
  margin: 32px 0 12px;
  font-size: 16px;
  font-weight: 600;
}

.legal-body p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-muted);
}

.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 0 64px;
}

.legal-page .site-info-hero__title {
  letter-spacing: 0.12em;
  text-indent: 0.12em;
}

@media (max-width: 1024px) {
  .notice-poster__content {
    width: 58%;
    padding-left: 32px;
  }
}

@media (max-width: 768px) {
  .site-info-hero {
    padding: 24px 0 20px;
  }

  .site-info-hero__stage {
    aspect-ratio: auto;
  }

  .site-info-hero__poster {
    height: auto;
    object-fit: contain;
  }

  .site-info-hero__content {
    position: static;
    transform: none;
    width: 100%;
    padding: 0 0 20px;
  }

  .site-info-hero__title {
    font-size: 28px;
    letter-spacing: 0.16em;
    text-indent: 0.16em;
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  .policy-card {
    min-height: auto;
  }

  .notice-poster {
    aspect-ratio: auto;
  }

  .notice-poster__img {
    height: auto;
    object-fit: contain;
  }

  .notice-poster__content {
    position: static;
    transform: none;
    width: 100%;
    max-width: none;
    padding: 28px 24px 20px;
    background: #ffffff;
  }
}
