/* 学伴成长地图官网首页第二屏 R1 · 2026-09-20 */
.growth-map-home {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 78px;
  background:
    radial-gradient(circle at 12% 10%, rgba(86, 196, 188, 0.12), transparent 28rem),
    radial-gradient(circle at 92% 5%, rgba(84, 92, 220, 0.10), transparent 32rem),
    #f7fafc;
  border-top: 1px solid #d8e1ea;
  border-bottom: 1px solid #d8e1ea;
  scroll-margin-top: 72px;
}

.growth-map-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 30px;
}

.growth-map-heading h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.14;
}

.growth-map-heading > p {
  margin: 0;
  color: #596775;
  font-size: 17px;
  line-height: 1.85;
}

.growth-map-figure {
  margin: 0;
  padding: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d8e1ea;
  border-radius: 18px;
  box-shadow: 0 22px 58px rgba(20, 42, 70, 0.13);
}

.growth-map-figure > a {
  display: block;
  overflow: hidden;
  border-radius: 11px;
  background: #edf4f8;
}

.growth-map-figure picture,
.growth-map-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.growth-map-figure figcaption {
  padding: 11px 8px 2px;
  color: #68778a;
  font-size: 13px;
  text-align: center;
}

.growth-map-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.growth-map-actions .button.secondary {
  background: #fff;
}

@media (max-width: 980px) {
  .growth-map-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }
}

@media (max-width: 720px) {
  .growth-map-home {
    padding-top: 52px;
    padding-bottom: 56px;
    scroll-margin-top: 118px;
  }

  .growth-map-heading > p {
    font-size: 16px;
  }

  .growth-map-figure {
    padding: 6px;
    border-radius: 13px;
  }

  .growth-map-figure > a {
    overflow-x: auto;
    border-radius: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .growth-map-figure img {
    min-width: 880px;
  }

  .growth-map-actions .button {
    width: 100%;
    justify-content: center;
  }
}
