.appointments-list,
.appointments-headline,
.appointments-description {
  grid-column: 7 / span 6;
}

.appointments-list {
  display: flex;
  flex-direction: column;
  gap: 0.2777777777em;
  margin-top: var(--s-md);
}

.appointments-item {
  display: flex;
  color: var(--white);
  font-size: max(0.9375rem, 0.8854166666vw);
}

.appointments-item-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--blue);
  flex: 1 1 20%;
  margin-right: 0.2777777777em;
}

.appointments-item-info {
  background-color: var(--blue);
  flex: 1 1 60%;
  padding: 0.8333333333em 1.3888888888em;
}

.appointments-item-btn {
  flex: 1 1 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.appointments-item-date-day,
.appointments-item-info-region,
.appointments-item-info-module {
  font-family: "Ubuntu", Sans-serif;
}

.appointments-item-date-day {
  font-size: max(1.5rem, 2.0833333333vw);
}

.appointments-item-info-region {
  font-size: max(1.125rem, 1.3020833333vw);
  font-weight: 400;
  margin-bottom: 0.5em;
}

.appointments-item-info-module {
  font-size: max(1rem, 1.0416666666vw);
  font-weight: 400;
  margin-bottom: 0.5em;
  text-wrap: balance;
}

.appointments-item-info-module {
  display: none;
}

.appointments-item-date-month,
.appointments-item-date-year {
  font-weight: 400;
}

.appointments-item-date-day {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.appointments-item-date-day::after {
  content: "";
  width: 0.75em;
  height: 2px;
  background-color: currentColor;
  margin-block: 0.2em;
}

.appointments-item-info-duration,
.appointments-item-info-location,
.appointments-item-info-accommodation {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 0.25em;
}

.appointments-item-info-duration::before,
.appointments-item-info-location::before,
.appointments-item-info-accommodation::before {
  content: "";
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: currentColor;
  width: 0.85em;
}

.appointments-item-info-duration::before {
  aspect-ratio: 131/150;
  mask-image: url("../../img/calendar.svg");
}

.appointments-item-info-location::before {
  aspect-ratio: 113/150;
  mask-image: url("../../img/location.svg");
}

.appointments-item-info-accommodation::before {
  aspect-ratio: 1;
  mask-image: url("../../img/hotel.svg");
}

.appointments-rune-wrapper {
  position: relative;
  grid-column: 3 / span 3;
  grid-row: 1 / span 3;
}

.appointments-rune {
  position: sticky;
  top: var(--topbar-height);
  width: 100%;
  aspect-ratio: 1;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url("../../img/rune.svg");
  background-color: var(--light-red);
}

@media (max-width: 1199.98px) {
  .appointments-rune-wrapper {
    grid-column: 2 / span 2;
  }

  .appointments-list,
  .appointments-headline,
  .appointments-description {
    grid-column: 5 / span 9;
  }
}

@media (max-width: 991.98px) {
  .appointments-rune-wrapper {
    display: none;
  }

  .appointments-list,
  .appointments-headline,
  .appointments-description {
    grid-column: 2 / span 12;
  }
}

@media (max-width: 767.98px) {
}

@media (max-width: 575.98px) {
  .appointments-item {
    flex-direction: column;
  }

  .appointments-item-date {
    margin-right: 0;
    border-bottom: 1px solid;
    padding-block: 0.5em;
  }

  .appointments-item-btn.btn {
    flex: unset;
    width: 100%;
  }
}
