#nexis_glimpse {
  background-color: var(--color_black);
}

#nexis_glimpse .ast-container {
  position: relative;
  isolation: isolate;
}

#nexis_glimpse .nexis-glimpse-card>svg {
  position: absolute;
  right: -50px;
  top: -50px;
  z-index: -1;
}

.nexis-glimpse-card {
  background-color: var(--color_white);
  padding: 20px;
  border-radius: var(--border_radius);
  position: relative;
}

.nexis-glimpse-card h2 {
  font-size: 1.1rem;
  color: var(--text_grey);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.nexis-glimpse-schedule {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nexis-glimpse-schedule:nth-of-type(1) {
  margin-bottom: 5px;
}

.nexis-glimpse-schedule-wrapper {
  margin-bottom: 1rem;
}

.nexis-glimpse-card h3 {
  font-size: 1.3rem;
  margin-bottom: 3px;
}

.nexis-glimpse-host {
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .nexis-glimpse-card {
    padding: 12px 12px 18px;
  }

  #nexis_glimpse .ast-row {
    gap: 20px;
  }

  .nexis-glimpse-card h3 {
    font-size: 1rem;
  }

  #nexis_glimpse .nexis-glimpse-card>svg {
    right: 5px;
    top: -30px;
    width: 50px;
    height: 50px;
  }
}