.ecosystem-spotlight {
  --spotlight-accent: #27d3a2;
  width: min(100%, 64rem);
  margin: 1.75rem auto;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--spotlight-accent) 38%, rgba(255, 255, 255, .08));
  border-radius: 1rem;
  background: #0b130f;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.ecosystem-spotlight--idea { --spotlight-accent: #ff6a13; }
.ecosystem-spotlight--review { --spotlight-accent: #27d3a2; }
.ecosystem-spotlight--video { --spotlight-accent: #2d6df6; }
.ecosystem-spotlight--publish { --spotlight-accent: #f2c94c; }
.ecosystem-spotlight--brand { --spotlight-accent: #6f8f83; }

.ecosystem-spotlight__link {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  color: inherit;
  text-decoration: none;
}

.ecosystem-spotlight__visual {
  width: 100%;
  height: 100%;
  min-height: 7.75rem;
  object-fit: cover;
  background: #f4f0e8;
}

.ecosystem-spotlight__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 1.1rem 1.25rem;
}

.ecosystem-spotlight__eyebrow {
  color: var(--spotlight-accent);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ecosystem-spotlight__title {
  margin-top: .28rem;
  color: #fff;
  font-size: 1.06rem;
  font-weight: 750;
  line-height: 1.3;
}

.ecosystem-spotlight__body {
  margin-top: .28rem;
  color: #9ca3af;
  font-size: .82rem;
  line-height: 1.55;
}

.ecosystem-spotlight__cta {
  margin-top: .62rem;
  color: var(--spotlight-accent);
  font-size: .8rem;
  font-weight: 700;
}

.ecosystem-spotlight__link:hover .ecosystem-spotlight__cta,
.ecosystem-spotlight__link:focus-visible .ecosystem-spotlight__cta {
  text-decoration: underline;
  text-underline-offset: .2rem;
}

.ecosystem-spotlight__link:focus-visible {
  outline: 2px solid var(--spotlight-accent);
  outline-offset: -2px;
}

@media (max-width: 540px) {
  .ecosystem-spotlight__link {
    grid-template-columns: 1fr;
  }

  .ecosystem-spotlight__visual {
    aspect-ratio: 32 / 25;
  }

  .ecosystem-spotlight__copy {
    padding: 1rem 1.1rem 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem-spotlight *,
  .ecosystem-spotlight *::before,
  .ecosystem-spotlight *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
