/* Section: Geust Chefs */
.section-guest-chefs {
  background-color: white;
  padding-top: 0;
}

.chef {
  display: flex;  
  margin-bottom: 90px;
}

.chef:last-child {
  margin-bottom: 0;
}

.chef-image-box {
  position: relative;
  width: 330px;
  min-width: 330px;
}

.chef-image-box::before {
  content: '';
  display: block;
  padding-top: 100%;
}

/* .chef-image-box::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 20px;
  left: -20px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--colorSecondary);
} */

.chef-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  object-fit: cover;
  max-width: auto;
  max-width: initial;
  max-height: auto;
  max-height: initial;
  width: 100%;
  height: 100%;
  transition: .3s;
}

.chef-image:hover {
  filter: grayscale(100%);
}

.chef-details {
  flex: 1;
  padding-left: 65px;
}

.list-details-chef {
  max-width: 440px;
  padding-top: 20px;
}

@media (max-width: 991px) {
  .chef-image-box {
    position: relative;
    width: 260px;
    min-width: 260px;
  }

  .chef {
    margin-bottom: 55px;
  }

  .chef-details {
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .chef {
    flex-direction: column;
    margin-bottom: 70px;
  }

  .chef-image-box {
    width: 100%;
    min-width: 100%;
    margin-bottom: 25px;
  }

  .chef-details {
    padding-left: 0;
  }
}