/* Ecosystem */

.ecosystem-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ecosystem__container {
  gap: 1px;
  border: 1px solid var(--stb-border-gray);
  background-color: var(--stb-border-gray);
}

.ecosystem__content,
.ecosystem__content>div {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}

.ecosystem__content {
  padding: 20px;
  background-color: #ffffff;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}

.ecosystem__container:has(.ecosystem__content:hover) .ecosystem__content:not(:hover) {
  opacity: 0.75;
  background-color: #f9f9f9;
}

.component-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.component-list {
  list-style: symbols('-');
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 20px;
  margin: 0 !important;
}
  
.component-list a {
  text-decoration: underline;
  transition: color 0.3s ease;
}