/* ==================================================================
   IPROAM home-ecosystem-v2.css
   Static, restrained global-platform-ecosystem icon band.
   Scope: #home-route only. No external fonts, images, or JS.
   ================================================================== */

#home-route .home-ecosystem {
  padding: clamp(44px, 5vw, 66px) 0;
  border-top: 1px solid var(--bright-line, #dce7ec);
  border-bottom: 1px solid var(--bright-line, #dce7ec);
  color: var(--bright-ink, #0f2742);
  background: var(--bright-mist, #f1f6f8);
}

#home-route .home-ecosystem * {
  box-sizing: border-box;
  letter-spacing: 0;
}

#home-route .he-head {
  max-width: 760px;
  min-width: 0;
}

#home-route .he-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: #007b5d;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

#home-route .he-kicker::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 2px;
  background: var(--bright-emerald, #00a77d);
}

#home-route .he-title {
  margin: 14px 0 0;
  color: var(--bright-ink, #0f2742);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.24;
  overflow-wrap: break-word;
  word-break: keep-all;
}

#home-route .he-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(26px, 3vw, 34px) 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--bright-line, #dce7ec);
  border-radius: 8px;
  background: var(--bright-line, #dce7ec);
  list-style: none;
}

#home-route .he-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-width: 0;
  min-height: 82px;
  padding: 14px 16px;
  background: var(--bright-surface, #ffffff);
}

#home-route .he-mark {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #405568;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: break-word;
}

#home-route .he-mark img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.76;
  filter: grayscale(0.38);
}

#home-route .he-name {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
  #home-route .he-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  #home-route .he-item {
    min-height: 76px;
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 560px) {
  #home-route .home-ecosystem {
    padding: 38px 0;
  }

  #home-route .he-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
  }

  #home-route .he-item {
    min-height: 66px;
    padding: 12px 14px;
  }

  #home-route .he-mark {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
    font-size: 13px;
  }

  #home-route .he-mark img {
    width: 24px;
    height: 24px;
  }

}

@media (max-width: 390px) {
  #home-route .he-title {
    font-size: 21px;
    line-height: 1.3;
  }

  #home-route .he-item {
    min-height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #home-route .home-ecosystem *,
  #home-route .home-ecosystem *::before,
  #home-route .home-ecosystem *::after {
    animation: none !important;
    transition: none !important;
  }
}
