.mb-front-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mb-front-cat-card {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  overflow: hidden;
}

.mb-front-cat-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.28);
}

.mb-front-cat-card__title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  padding: 20px;
}

.mb-front-section {
  margin-bottom: 72px;
}

.mb-front-section__title {
  font-size: 34px;
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.1;
}

.mb-front-section__divider {
  width: 220px;
  height: 1px;
  background: rgba(0,0,0,.25);
  margin: 0 0 22px;
}

.mb-front-dish {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.mb-front-dish__main {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  flex: 1;
}

.mb-front-dish__image-wrap {
  flex: 0 0 88px;
}

.mb-front-dish__image {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.mb-front-dish__image--placeholder {
  background: #ddd;
}

.mb-front-dish__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.mb-front-dish__title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.mb-front-dish__desc {
  font-size: 18px;
  line-height: 1.5;
  opacity: .85;
}

.mb-front-dish__price {
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .mb-front-categories {
    grid-template-columns: 1fr;
  }

  .mb-front-dish {
    align-items: flex-start;
  }

  .mb-front-dish__main {
    align-items: flex-start;
  }

  .mb-front-dish__image-wrap {
    flex-basis: 72px;
  }

  .mb-front-dish__image {
    width: 72px;
    height: 72px;
  }

  .mb-front-dish__title {
    font-size: 20px;
  }

  .mb-front-dish__desc {
    font-size: 16px;
  }
}