.kitchen-hours-note {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #EBB667;
  font-family: var(--font-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 550;
  line-height: 1.4;
}

.kitchen-hours-note__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 49px;
  height: 36px;
  flex: 0 0 49px;
}

.kitchen-hours-note__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 32px;
  background: rgba(235, 182, 103, .48);
  transform: translateY(-50%);
}

.kitchen-hours-note__icon img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.kitchen-hours-note--hours {
  max-width: 440px;
  margin-top: 16px;
  padding: 16px 22px;
  border: 1px solid rgba(235, 182, 103, .42);
  border-radius: 11px;
  background: linear-gradient(105deg, rgba(10, 24, 16, .95), rgba(24, 17, 9, .86));
  box-shadow:
    inset 0 1px 0 rgba(255, 238, 205, .025),
    0 8px 18px rgba(0, 0, 0, .16);
}

.kitchen-hours-note--reservation {
  width: 100%;
  padding: 16px 22px;
  border: 1px solid rgba(235, 182, 103, .42);
  border-top-color: rgba(235, 182, 103, .58);
  border-radius: 11px;
  background: linear-gradient(105deg, rgba(10, 24, 16, .96), rgba(24, 17, 9, .88));
  box-shadow:
    inset 0 1px 0 rgba(255, 238, 205, .025),
    0 8px 18px rgba(0, 0, 0, .18);
}
.contact__detail--time {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
}

.contact__detail--time > .contact__feature-icon {
  grid-column: 1;
  grid-row: 1;
}

.contact__detail--time > .contact__content {
  grid-column: 2;
  grid-row: 1;
}

.contact__detail--time > .kitchen-hours-note--hours {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 49px minmax(0, 1fr);
  column-gap: 16px;
  width: min(440px, 100%);
  max-width: 100%;
  padding-left: 16px;
}

.contact-page .contact-card > .kitchen-hours-note--hours {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 49px minmax(0, 1fr);
  column-gap: 16px;
  width: 100%;
  max-width: 100%;
  padding-left: 16px;
}

.kitchen-hours-widget-group {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 48px;
}

.kitchen-hours-widget-group > .restocraft-booking-host,
.kitchen-hours-widget-group > .kitchen-hours-note--reservation {
  width: 100%;
  max-width: 100%;
}

.kitchen-hours-widget-group restocraft-booking {
  display: block;
  width: 100%;
  --rc-bootstrap-min-height: auto;
}

.kitchen-hours-widget-group > .kitchen-hours-note--reservation {
  position: static;
  margin: 0;
  transform: none;
}

@media (max-width: 1023px) {
  .kitchen-hours-widget-group {
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .kitchen-hours-widget-group {
    gap: 24px;
  }

  .kitchen-hours-note {
    gap: 14px;
    font-size: 15px;
    line-height: 1.4;
  }

  .kitchen-hours-note__icon {
    width: 47px;
    height: 34px;
    flex-basis: 47px;
  }

  .kitchen-hours-note__icon::after {
    height: 30px;
  }

  .kitchen-hours-note__icon img {
    width: 34px;
    height: 34px;
  }

  .kitchen-hours-note--hours {
    margin-top: 14px;
    padding: 14px 16px;
  }

  .kitchen-hours-note--reservation {
    padding: 14px 16px;
  }

  .contact__detail--time > .kitchen-hours-note--hours,
  .contact-page .contact-card > .kitchen-hours-note--hours {
    grid-template-columns: 47px minmax(0, 1fr);
    column-gap: 14px;
    width: 100%;
    max-width: 100%;
    padding-left: 14px;
  }
}
