/*
@include max($tablet) {
	height: 60px;
}
*/
/*
Beispiel:
@include default_text_specs(
    $css-variable-prepend: "kc-teaser-title",
    $font-weight: 700,
    $line-height: 1,
    $text-align: "center"
);
*/
/*
Beispiel:
@include default_h1_specs(
    $css-variable-prepend: "",
    $font-weight: 700,
    $line-height: 1,
    $text-align: "center"
);
*/
/*
Beispiel:
@include default_h2_specs(
    $css-variable-prepend: "",
    $font-weight: 700,
    $line-height: 1,
    $text-align: "center"
);
*/
/*
Beispiel:
@include css_variable_prepend(
    $property: "font-size",
    $prepend-string: 'kc-teaser-title',
    $default-value: 20px
);
*/
/*
@extend %transition;
*/
/*
@extend %transition-timing;
*/
/*
@include max($tablet) {
	height: 60px;
}
*/
body .event-listing-container,
html .event-listing-container {
  width: var(--event-listing-width, var(--kc-block-default-width, calc(var(--text-width) + 2 * var(--global-padding))));
  max-width: var(--event-listing-max-width, 100%);
}
body .event-listing-container.align-wide,
html .event-listing-container.align-wide {
  width: var(--kc-block-wide-width, calc(var(--content-width) + 2 * var(--global-padding)));
}
body .event-listing-container.align-full,
html .event-listing-container.align-full {
  max-width: 100%;
  width: 100%;
}
body .event-listing-container,
html .event-listing-container {
  padding-left: var(--event-listing-padding-left, var(--kc-block-default-padding-left, var(--global-padding)));
  padding-right: var(--event-listing-padding-right, var(--kc-block-default-padding-right, var(--global-padding)));
}
body .event-listing-container.align-wide,
html .event-listing-container.align-wide {
  padding-left: var(--event-listing-wide-padding-left, var(--kc-block-wide-padding-left, var(--global-padding)));
  padding-right: var(--event-listing-wide-padding-right, var(--kc-block-wide-padding-right, var(--global-padding)));
}
body .event-listing-container.align-full,
html .event-listing-container.align-full {
  padding-left: var(--event-listing-full-padding-left, var(--kc-block-full-padding-left, var(--global-padding)));
  padding-right: var(--event-listing-full-padding-right, var(--kc-block-full-padding-right, var(--global-padding)));
}
body .event-listing-container.align-full .wp-block-group__inner-container > .container,
html .event-listing-container.align-full .wp-block-group__inner-container > .container {
  padding-left: var(--event-listing-full-inner-padding-left, 0);
  padding-right: var(--event-listing-full-inner-padding-right, 0);
}
body .event-listing-container .events-list,
html .event-listing-container .events-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
body .event-listing-container .event-row,
html .event-listing-container .event-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: var(--space-lg);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding-left 0.4s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
body .event-listing-container .event-row:hover,
html .event-listing-container .event-row:hover {
  padding-left: var(--space-md);
}
body .event-listing-container .event-row:hover .event-cta,
html .event-listing-container .event-row:hover .event-cta {
  background: var(--clay);
  border-color: var(--clay);
  transform: rotate(-45deg);
}
body .event-listing-container .event-row:hover .event-cta::before,
html .event-listing-container .event-row:hover .event-cta::before {
  background-color: var(--moss-darkest);
}
@media (max-width: 580px) {
  body .event-listing-container .event-row,
  html .event-listing-container .event-row {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: var(--space-md);
  }
  body .event-listing-container .event-row .event-cta,
  html .event-listing-container .event-row .event-cta {
    display: none;
  }
}
body .event-listing-container .event-date,
html .event-listing-container .event-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
body .event-listing-container .event-date .event-day,
html .event-listing-container .event-date .event-day {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 0.9;
  color: var(--moss-darkest);
}
body .event-listing-container .event-date .event-month,
html .event-listing-container .event-date .event-month {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  font-weight: 600;
  margin-top: 4px;
}
body .event-listing-container .event-info .event-meta,
html .event-listing-container .event-info .event-meta {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
  font-weight: 500;
}
body .event-listing-container .event-info h4,
html .event-listing-container .event-info h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 3px;
  color: var(--ink);
  text-transform: none;
}
body .event-listing-container .event-info p,
html .event-listing-container .event-info p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
  max-width: 60ch;
  margin: 0;
}
body .event-listing-container .event-cta,
html .event-listing-container .event-cta {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.4s;
}
body .event-listing-container .event-cta::before,
html .event-listing-container .event-cta::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: var(--ink);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27black%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27><path d=%27M5 12h14M13 6l6 6-6 6%27/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27black%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27><path d=%27M5 12h14M13 6l6 6-6 6%27/></svg>");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: background-color 0.4s;
}

body .event-listing-container .event-row.event-cancelled,
html .event-listing-container .event-row.event-cancelled {
  opacity: 0.55;
}
body .event-listing-container .event-row.event-cancelled h4,
html .event-listing-container .event-row.event-cancelled h4 {
  text-decoration: line-through;
}
body .event-listing-container .event-row.event-cancelled .event-meta::after,
html .event-listing-container .event-row.event-cancelled .event-meta::after {
  content: " - Abgesagt";
  color: var(--saffron-deep);
  font-weight: 700;
}
