#block-allschedules {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 90rem;
  padding: 2.625rem 1.75rem;
  flex-direction: column;
  gap: 1.25rem;
  border-radius: 2.8125rem;
  background: var(--Alias-Neutral-White);
  box-shadow: 0 0 38px 0 rgba(106, 122, 147, 0.24);
  margin: 0 auto;

  @media (width > 760px) {
    border-radius: 3rem;
    padding: 3.75rem 3rem;
    gap: 2.5rem;
  }

  .field--name-field-tour-reference a {
    font-size: var(--heading-xsm-font-size);
    line-height: var(--heading-xsm-line-height);
    margin-bottom: var(--heading-xsm-paragraph-spacing);
    font-weight: bold;
    color: var(--Alias-Secondary-500);
  }

  .field--name-field-date {
    font-weight: 300;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
    font-size: 1.125rem;
  }
}

.todays-schedule__list-items-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1.5rem;
  width: 100%;
  justify-content: center;

  >* {
    @media (width > 760px) {
      flex-basis: calc(33.33% - 3rem);
    }
  }
}

.schedule-wrapper .container {
  width: 100%;
}

@media (min-width: 360px) {
  .schedule-wrapper .container {
    max-width: 360px;
  }
}

@media (min-width: 500px) {
  .schedule-wrapper .container {
    max-width: 500px;
  }
}

@media (min-width: 640px) {
  .schedule-wrapper .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .schedule-wrapper .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .schedule-wrapper .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .schedule-wrapper .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .schedule-wrapper .container {
    max-width: 1536px;
  }
}

/* layer: default */
.schedule-wrapper .block {
  display: block;
}