.catering-page-hero {
  display: block;
  text-align: left;
}

.catering-page-hero h1 {
  max-width: 850px;
}

/* Event cards */
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.event-card {
  background: rgba(255,255,255,.78);
  border: 2px solid rgba(29,29,29,.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 45px rgba(65, 20, 10, .1);

  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.event-card i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(214, 40, 40, .1);
  color: var(--red);
  font-size: 1.8rem;
  margin-bottom: 20px;

  display: grid;
  place-items: center;
}

.event-card h3 {
  margin-bottom: 8px;
}

.event-card p {
  margin-bottom: 0;
}

/* Booking steps section */
.booking-steps {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: start;
}

.booking-steps > div:first-child {
  position: sticky;
  top: 120px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps div {
  background: rgba(255,255,255,.78);
  border: 2px solid rgba(29,29,29,.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 45px rgba(65, 20, 10, .1);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;
  border-radius: 50%;

  background: var(--red);
  color: white;
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);

  font-weight: 900;
  margin-bottom: 18px;
}

.steps h3 {
  margin-bottom: 8px;
}

.steps p {
  margin-bottom: 0;
}

/* Tablet */
@media (max-width: 900px) {
  .event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-steps {
    grid-template-columns: 1fr;
  }

  .booking-steps > div:first-child {
    position: static;
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 650px) {
  .catering-page-hero h1 {
    max-width: 100%;
  }

  .event-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .event-card {
    padding: 24px;
    border-radius: 22px;
  }

  .event-card i {
    width: 52px;
    height: 52px;
    font-size: 1.55rem;
    border-radius: 16px;
  }

  .booking-steps {
    gap: 22px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .steps div {
    padding: 24px;
    border-radius: 22px;
  }
}