.ecosystem-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid #eef2f7;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  margin-top: 8px;
}

.ecosystem-cell {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  min-height: 206px;
  background: #fff;
}

.ecosystem-cell:nth-child(odd) {
  border-right: 1px solid #eef2f7;
}

.ecosystem-cell:nth-child(-n + 2) {
  border-bottom: 1px solid #eef2f7;
}

.ecosystem-card__copy {
  padding: 24px 10px 20px 28px;
}

.ecosystem-card__brand {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 14px;
}

.ecosystem-card__brand img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.ecosystem-card__brand--text {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #111827;
}

.ecosystem-card__title {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 800;
  color: #16202c;
}

.ecosystem-card__desc {
  margin: 0;
  max-width: 32ch;
  color: #202938;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 600;
}

.ecosystem-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.ecosystem-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #3b6ea7;
}

.ecosystem-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 999px;
  border: 1.5px solid #8aaed9;
  background:
    linear-gradient(135deg, transparent 44%, #3c74b3 45%, #3c74b3 55%, transparent 56%) left 6px center / 7px 7px no-repeat,
    linear-gradient(45deg, transparent 40%, #3c74b3 41%, #3c74b3 57%, transparent 58%) left 4px center / 6px 6px no-repeat;
  opacity: 0.95;
}

.ecosystem-list--check li {
  color: #202938;
}

.ecosystem-list--check li::before {
  border-color: #8aaed9;
}

.ecosystem-card__media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 20px 12px 0;
}

.ecosystem-card__media img {
  width: 292px;
  max-width: 100%;
  height: 172px;
  max-height: 100%;
  object-fit: contain;
  object-position: right center;
}

.ecosystem-cell:nth-child(1) .ecosystem-card__media img,
.ecosystem-cell:nth-child(3) .ecosystem-card__media img {
  width: 284px;
  height: 164px;
}

.ecosystem-cell:nth-child(2) .ecosystem-card__media img,
.ecosystem-cell:nth-child(4) .ecosystem-card__media img {
  width: 276px;
  height: 170px;
}

@media (max-width: 960px) {
  .ecosystem-table {
    grid-template-columns: 1fr;
  }
  .ecosystem-cell {
    grid-template-columns: 1fr;
  }
  .ecosystem-cell:nth-child(odd) {
    border-right: 0;
  }
  .ecosystem-cell:not(:last-child) {
    border-bottom: 1px solid #eef2f7;
  }
}

@media (max-width: 560px) {
  .ecosystem-card__copy {
    padding: 22px 18px 10px;
  }
  .ecosystem-card__media {
    justify-content: center;
    padding: 8px 18px 22px;
  }
  .ecosystem-card__media img,
  .ecosystem-cell:nth-child(1) .ecosystem-card__media img,
  .ecosystem-cell:nth-child(2) .ecosystem-card__media img,
  .ecosystem-cell:nth-child(3) .ecosystem-card__media img,
  .ecosystem-cell:nth-child(4) .ecosystem-card__media img {
    width: 260px;
    height: 156px;
  }
}
