<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cd-events &gt; * + * {
  margin-top: var(--rhyme-xs);
}

.cd-event {
  display: flex;
  align-items: center;
  gap: var(--rhyme-sm);
  line-height: 1.15;
}

.cd-event__date {
  background-color: var(--color-primary);
  border-radius: var(--border-radius-sm);
  aspect-ratio: 1 / 1;
  width: 4rem;
  text-align: center;
  padding: var(--rhyme-xxs);
  flex-shrink: 0;
}

.cd-event__main-area {
  flex-grow: 1;
}

.cd-event__time {
  font-size: var(--typography-sm);
  color: #666;
}

.cd-event__title {
  font-weight: bold;
}

.cd-event__slots {
  border-radius: var(--border-radius-sm);
  padding: 0.2rem 0.6rem;
  margin-inline-end: 1rem;
  flex-shrink: 0;
}

.cd-event__slots--open {
  background-color: #adc178;
}

.cd-event__slots--filled {
  background-color: #ffbf69;
}

.cd-event a {
  text-decoration: none;
  font-weight: 700;
  line-height: 0.4;
  color: var(--color-on-background);
  padding: 0.56rem var(--rhyme-xxs);
  background-image: linear-gradient(var(--color-primary-light), var(--color-primary-light));
  background-size: 100% 0.6em;
  background-position-y: 100%;
  background-repeat: no-repeat;
  transition: background-size 0.2s ease-in-out, color 0.3s ease-in-out;
}

.cd-event a:hover {
  background-size: 100% 100%;
}

.cd-event__no-result {
  text-align: center;
}
</pre></body></html>