@charset "UTF-8";
.vertical-content-card {
  --wdg-vertical-content-card-font-size: 18px;
  padding-block: var(--wdg-gap-large);
}
.vertical-content-card__layout {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: var(--wdg-gap-medium);
}
.vertical-content-card__title {
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
.vertical-content-card__meta {
  display: flex;
  gap: var(--wdg-gap-xsmall);
  margin-block-start: var(--wdg-gap-2xsmall, 0.25rem);
  align-items: center;
  line-height: 1.2;
}
.vertical-content-card__meta > span {
  align-items: center;
  display: inline-flex;
  gap: 0.35em;
}
.vertical-content-card__meta-separator {
  opacity: 0.7;
}
.vertical-content-card__date::before, .vertical-content-card__time::before {
  align-items: center;
  display: inline-block;
  line-height: 1;
}
.vertical-content-card__date::before {
  content: "📅";
}
.vertical-content-card__time::before {
  content: "⏰";
}
.vertical-content-card__description {
  line-height: 1.5;
  margin-block-start: var(--wdg-gap-xsmall);
  max-width: 60ch;
}
.vertical-content-card__description p:first-child {
  margin-block-start: 0;
}
.vertical-content-card__description p:last-child {
  margin-block-end: 0;
}
.vertical-content-card__cta-link {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--wdg-color-button-background, var(--wdg-color-secondary));
  border-color: var(--wdg-color-button-border, var(--wdg-color-secondary));
  border-radius: var(--wdg-button-border-radius, 0.25rem);
  border-style: var(--wdg-button-border-style, solid);
  border-width: var(--wdg-button-border-width, 1px);
  color: var(--wdg-color-button-text, var(--wdg-color-white));
  cursor: pointer;
  display: inline-flex;
  font-family: var(--wdg-font-button, sans-serif);
  font-size: inherit;
  font-weight: var(--wdg-button-font-weight, 700);
  gap: 0.75em;
  letter-spacing: var(--wdg-button-font-letter-spacing);
  line-height: var(--wdg-button-font-line-height, 1.2);
  margin: 0;
  padding: 1em 2em;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 150ms ease, background-color 250ms ease, border-color 250ms ease;
  white-space: nowrap;
  z-index: 2;
}
.vertical-content-card__cta-link:hover, .vertical-content-card__cta-link:focus-visible {
  background-color: var(--wdg-color-button-hover-background, var(--wdg-color-primary));
  border-color: var(--wdg-color-button-hover-border, var(--wdg-color-primary));
  color: var(--wdg-color-button-hover-text, var(--wdg-color-white));
  text-decoration: none;
}
.vertical-content-card__cta-link--nohref, .vertical-content-card__cta-link--editor:not([href]), .vertical-content-card__cta-link--editor[href=""] {
  cursor: default;
}

/*# sourceMappingURL=style.css.map */