.reservation-calendar {
  --box-padding: calc(var(--gap) * 2) calc(var(--padding-on-side) * 1.5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.reservation-calendar__reservation {
  padding: var(--box-padding);
  background-color: var(--color-white);
}
.reservation-calendar__reservation::before {
  --icon-size: 70em;
  content: "";
  position: absolute;
  top: calc(var(--icon-size) * -0.5);
  left: calc(var(--icon-size) * -0.65);
  width: var(--icon-size);
  aspect-ratio: 1/1;
  mask: var(--icon-arrow-right) center/contain no-repeat;
  background-color: var(--color-secondary);
  transform: rotate(-90deg);
  z-index: 1;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}
.reservation-calendar__reservation-inner {
  max-width: calc(var(--content-small) / 1.75);
  margin-left: auto;
}
.reservation-calendar__reservation-inner > *:first-child {
  margin-top: 0;
}
.reservation-calendar__reservation-inner > *:last-child {
  margin-bottom: 0;
}
.reservation-calendar__reservation-inner {
  z-index: 2;
}
.reservation-calendar__reservation-inner::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -80px;
  width: 64px;
  aspect-ratio: 1/1;
  mask: var(--icon-reservation) center/contain no-repeat;
  background-color: var(--color-main);
  opacity: 0.2;
}
.reservation-calendar__reservation .wp-block-heading strong {
  color: var(--color-secondary);
}
.reservation-calendar__reservation ul {
  margin-top: 1.5em;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
.reservation-calendar__reservation li {
  padding-left: 1.4em;
  font-size: var(--font-size-20);
}
.reservation-calendar__reservation li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0.8em;
  height: 1em;
  mask: var(--icon-checked) center/contain no-repeat;
  background-color: var(--color-secondary);
  top: 0.15em;
}
.reservation-calendar__reservation p {
  font-size: var(--font-size-20);
}
.reservation-calendar__calendar {
  padding: var(--box-padding);
}
.reservation-calendar__calendar-inner {
  max-width: calc(var(--content-small) / 1.75);
}
.reservation-calendar__calendar-inner > *:first-child {
  margin-top: 0;
}
.reservation-calendar__calendar-inner > *:last-child {
  margin-bottom: 0;
}
.reservation-calendar__calendar .wp-block-heading small {
  font-size: 0.5em;
  font-weight: var(--font-weight-light);
  display: block;
}
.reservation-calendar .wp-block-heading {
  color: var(--color-text);
}
.reservation-calendar .wp-block-heading strong {
  text-transform: uppercase;
  font-size: 1em;
}
@media screen and (max-width: 1360px) {
  .reservation-calendar__reservation-inner::before {
    left: auto;
    right: -10px;
    top: -20px;
  }
}
@media screen and (max-width: 768px) {
  .reservation-calendar {
    grid-template-columns: 1fr;
  }
  .reservation-calendar__reservation-inner {
    margin-left: 0;
    max-width: none;
  }
}