.vf-chefs {
  max-width: 1920px;
  margin: 0 auto;
  padding: 80px 256px;
  box-sizing: border-box;
  color: var(--primary-color);
}

.vf-chefs__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.vf-chefs-card {
  position: relative;
  height: 819px;
  min-width: 0;
  border-radius: 40px;
  overflow: hidden;
  box-sizing: border-box;
}

.vf-chefs-card--text {
  background: var(--white);
}

.vf-chefs-card--photo {
  background: var(--blue-soft);
}

.vf-chefs-card__body {
  width: 100%;
  height: 100%;
  padding: 214px 88px 206px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.vf-chefs__heading {
  font-size: 54px;
  line-height: 1.1;
}

.vf-chefs__cta {
  margin-top: 42px;
  min-width: 244px;
}

.vf-chefs-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.vf-chefs-slider__track {
  height: 100%;
  display: flex;
  transition: transform 520ms ease;
  will-change: transform;
}

.vf-chefs-slide {
  flex: 0 0 100%;
  height: 100%;
}

.vf-chefs-slide__image {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center;
}

.vf-chef-caption {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  min-height: 130px;
  padding: 24px 27px;
  border-radius: 32px;
  box-sizing: border-box;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--primary-color);
  transition: opacity 360ms cubic-bezier(0.22, 1, 0.36, 1), transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.vf-chef-caption.is-changing {
  opacity: 0.82;
  transform: translate3d(0, 4px, 0);
}

.vf-chef-caption__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.vf-chef-caption__first-name {
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.vf-chef-caption__last-name {
  margin-top: 4px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.vf-chef-caption__experience {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.vf-chef-caption__controls {
  display: flex;
  gap: 16px;
}

.vf-chef-caption__button {
  width: 56px;
  min-width: 56px;
  height: 56px;
  min-height: 56px;
}

.vf-chef-caption__button img {
  width: 16px;
  height: 16px;
  max-width: none;
}
