.meals {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6vw 10vw;
  background-color: #0A0A0A;
  gap: 6vw;
}
.meals__text {
  width: 35vw;
}
.meals__text h2 {
  font-size: 2.8vw;
  color: white;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 1vw;
}
.meals__text p {
  font-size: 1.2vw;
  color: #d6d6d6;
  font-family: "Montserrat", sans-serif;
  line-height: 1.8vw;
}
.meals__gallery {
  display: flex;
  gap: 2vw;
}
.meals__gallery img {
  width: 12vw;
  height: 12vw;
  object-fit: cover;
  border-radius: 0.8vw;
  transition: transform 0.4s ease;
}
.meals__gallery img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .meals {
    flex-direction: column;
    text-align: center;
  }
  .meals__text {
    width: 90vw;
  }
  .meals__text h2 {
    font-size: 8vw;
  }
  .meals__text p {
    margin-top: 5vw;
    font-size: 4vw;
    line-height: 5vw;
  }
  .meals__gallery {
    flex-direction: column;
    gap: 6vw;
  }
  .meals__gallery img {
    border-radius: 4vw;
    width: 70vw;
    height: 45vw;
  }
}

/*# sourceMappingURL=meals.css.map */
