.spotlights .spotlight-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 3vw;
}

@media only screen and (max-width: 600px) {
  .spotlights .spotlight-row {
    flex-direction: column;
  }
}

@media only screen and (max-width: 900px) {
  .spotlights .spotlight-row .spotlight-card {
    aspect-ratio: 3/4;
  }
}

.spotlights .spotlight-row > div {
  display: flex;
  width: 100%;
}

.spotlights .spotlight-row .spotlight-card {
  background-color: var(--sky);
  width: 100%;
  min-height: 30vw;
  position: relative;
  overflow: hidden;
}

.spotlights .spotlight-row .spotlight-card .spotlight-bg-img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease-in-out;
}

.spotlights .spotlight-row .spotlight-card:hover .spotlight-bg-img {
  transform: scale3d(1.1,1.1,1.1);
}

.spotlights .spotlight-row .spotlight-card .spotlight-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1em;
  backdrop-filter: blur(4px);
  background-color: #0033a080;
  color: white;
}

.spotlights .spotlight-row .spotlight-card .spotlight-content > .spotlight-detail-wrapper {
  position: relative;
  transition: height 0.3s linear;
  overflow: hidden;
  height: 0px;
}


.spotlights .spotlight-row .spotlight-card .spotlight-content > .spotlight-detail-wrapper p {
  padding-top: 1rem;
}

