/* Shengwang Ecosystem Component Styles */

.shengwang-ecosystem {
  background: linear-gradient(180deg, #F9F9F9 0%, #F5F5F5 100%);
  padding: 80px 0;
}

/* Container max-width */
@media screen and (min-width: 1600px) {
  .shengwang-ecosystem .container {
    max-width: 1360px;
  }
}

/* Section Header */
.shengwang-ecosystem .ecosystem-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.shengwang-ecosystem .header-title {
  font-family: var(--title-font-family);
  font-size: var(--shengwang-inner-title);
  font-weight: 500;
  line-height: 1.22;
  color: #000000;
  margin: 0;
  max-width: 873px;
}

.shengwang-ecosystem .header-desc {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.22;
  color: #000000;
  margin: 0;
  max-width: 873px;
}

/* Items Grid */
.shengwang-ecosystem .ecosystem-grid {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  gap: 160px;
  flex-wrap: wrap;
}

/* Ecosystem Item */
.shengwang-ecosystem .ecosystem-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 299px;
  flex: 1;
  flex-shrink: 0;
}

.shengwang-ecosystem .item-image-wrapper {
  width: 100%;
  aspect-ratio: 299 / 365;
  overflow: hidden;
}

.shengwang-ecosystem .item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shengwang-ecosystem .item-title {
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.22;
  text-transform: uppercase;
  text-align: center;
  color: #000000;
  margin: 0;
}

/* Responsive Styles */
@media screen and (max-width: 1600px) {
  .shengwang-ecosystem .ecosystem-grid {
    gap: 140px;
  }
}

@media screen and (max-width: 1400px) {
  .shengwang-ecosystem {
    padding: 70px 0;
  }

  .shengwang-ecosystem .ecosystem-header {
    margin-bottom: 45px;
  }

  .shengwang-ecosystem .ecosystem-grid {
    gap: 120px;
  }

  .shengwang-ecosystem .header-desc {
    font-size: 15px;
  }

  .shengwang-ecosystem .item-title {
    font-size: 19px;
  }
}

@media screen and (max-width: 1200px) {
  .shengwang-ecosystem {
    padding: 60px 0;
  }

  .shengwang-ecosystem .ecosystem-header {
    margin-bottom: 40px;
  }

  .shengwang-ecosystem .ecosystem-grid {
    gap: 100px;
  }

  .shengwang-ecosystem .header-desc {
    font-size: 14px;
  }

  .shengwang-ecosystem .item-title {
    font-size: 18px;
  }
}

@media screen and (max-width: 992px) {
  .shengwang-ecosystem {
    padding: 50px 0;
  }

  .shengwang-ecosystem .ecosystem-header {
    margin-bottom: 35px;
  }

  .shengwang-ecosystem .ecosystem-grid {
    gap: 60px 40px;
  }

  .shengwang-ecosystem .ecosystem-item {
    width: 33.33%;
    max-width: 299px;
  }

  .shengwang-ecosystem .item-title {
    font-size: 17px;
  }
}

@media screen and (max-width: 768px) {
  .shengwang-ecosystem {
    padding: 40px 0;
  }

  .shengwang-ecosystem .ecosystem-header {
    margin-bottom: 30px;
  }

  .shengwang-ecosystem .ecosystem-grid {
    gap: 40px;
  }

  .shengwang-ecosystem .ecosystem-item {
    width: 100%;
    max-width: 400px;
  }

  .shengwang-ecosystem .item-image-wrapper {
    /* aspect-ratio: 16 / 10; */
  }

  .shengwang-ecosystem .header-desc {
    font-size: 13px;
  }

  .shengwang-ecosystem .item-title {
    font-size: 16px;
  }

  .shengwang-ecosystem .ecosystem-item {
    gap: 20px;
  }
}

@media screen and (max-width: 576px) {
  .shengwang-ecosystem {
    padding: 30px 0;
  }

  .shengwang-ecosystem .ecosystem-header {
    margin-bottom: 25px;
  }

  .shengwang-ecosystem .ecosystem-grid {
    gap: 30px;
    flex-direction: column;
  }

  .shengwang-ecosystem .header-desc {
    font-size: 12px;
  }

  .shengwang-ecosystem .item-title {
    font-size: 15px;
  }

  .shengwang-ecosystem .ecosystem-item {
    gap: 16px;
  }
}

