.ldp-feedbacks {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fff;
}
.ldp-feedbacks-header {
  margin: 0 210px;
}
.ldp-feedbacks-header-title {
  color: #b48c72;
  text-align: center;
  font-family: "Averta Std CY";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 48px */
}
.ldp-feedbacks-header-subtitle {
  margin-top: 8px;
  color: var(--Black, #242424);
  text-align: center;
  font-family: "Averta Std CY";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 127.273% */
}
.ldp-feedbacks-slider {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.ldp-feedbacks-track {
  overflow: hidden;
  flex: 1;
}
.ldp-feedbacks-track-inner {
  display: flex;
  transition: transform 0.4s ease;
  gap: 32px;
}

.ldp-feedbacks-slide {
  /* mỗi slide chiếm (100% - 2*32px) / 3 */
  flex: 0 0 calc((100% - 64px) / 3);
  box-sizing: border-box;
}

.ldp-feedbacks-card {
  border: 1px solid #e0e0e0;
  background: #fdf9f3;
  padding: 32px;
  border-radius: 4px;
  position: relative;
}
.ldp-feedbacks-stars {
  font-size: 14px;
  color: #f8c555;
}
.ldp-feedbacks-stars img {
  width: 20px;
  height: 18.889px;
}
.ldp-feedbacks-text {
  color: var(--Black, #242424);
  font-family: "Averta Std CY";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: 0.15px;
  margin-top: 32px;
}
.ldp-feedbacks-footer {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
}
.ldp-feedbacks-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}
.ldp-feedbacks-avatar img {
  width: 56px;
  height: 56px;
  border-radius: 56px;
}
.ldp-feedbacks-info {
  font-size: 13px;
  color: #444;
}
.ldp-feedbacks-name {
  color: var(--Black, #242424);
  font-family: "Averta Std CY";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
}
.ldp-feedbacks-position {
  color: var(--Black, #242424);
  font-family: "Averta Std CY";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
.ldp-feedbacks-prev,
.ldp-feedbacks-next {
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  padding: 0 10px;
  color: #444;
  user-select: none;
  position: absolute;
  z-index: 1;
}
.ldp-feedbacks-prev img,
.ldp-feedbacks-next img {
  width: 20px;
  height: 30px;
  aspect-ratio: 2/3;
}
.ldp-feedbacks-prev {
  left: -50px;
}
.ldp-feedbacks-next {
  right: -50px;
}
.ldp-feedbacks-prev:disabled,
.ldp-feedbacks-next:disabled {
  opacity: 0.3;
  cursor: default;
}
.ldp-feedbacks-slider {
  margin-top: 60px;
}
.ldp-feedbacks-videos {
  margin-top: 64px;
  display: flex;
  gap: 32px;
  justify-content: space-between;
}
.ldp-feedbacks-videos-left {
  flex-basis: 72%;
}
.ldp-feedbacks-videos-right {
  flex-basis: 25%;
}
.ldp-feedbacks-videos-left video,
.ldp-feedbacks-videos-right video,
.ldp-feedbacks-videos-right img {
  width: 100%;
}
.ldp-feedbacks-videos-right-items {
  margin-bottom: 46px;
}
.ldp-feedbacks-videos-right-item-title {
  color: #3f3b36;
  font-family: "Averta Std CY";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 10px;
}
.video-wrapper {
  position: relative;
  display: inline-block;
}

.video-wrapper video {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.play-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}
#feedbacksRightPlay img {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 992px) {
  .ldp-feedbacks {
    padding: 12px 16px 44px 16px;
    max-width: 100%;
  }
  .ldp-feedbacks-slide {
    flex: 0 0 100%;
    /* flex: 0 0 calc((100% - 46px) / 2); */
  }
  .ldp-feedbacks-header-title {
    color: #b48c72;
    text-align: center;
    font-family: "Averta Std CY";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 28.8px */
  }
  .ldp-feedbacks-header {
    margin: 0 15px;
  }
  .ldp-feedbacks-header-subtitle {
    color: var(--Black, #242424);
    text-align: center;
    font-family: "Averta Std CY";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
  }
  .ldp-feedbacks-slider {
    margin-top: 32px;
  }
  .ldp-feedbacks-text {
    margin-top: 16px;
    color: var(--Black, #242424);
    font-family: "Averta Std CY";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
    letter-spacing: 0.15px;
  }
  .ldp-feedbacks-footer {
    margin-top: 16px;
  }
  .ldp-feedbacks-prev img,
  .ldp-feedbacks-next img {
    width: 10px;
    height: 15px;
    aspect-ratio: 2/3;
  }
  .ldp-feedbacks-prev {
    left: 0px;
  }
  .ldp-feedbacks-next {
    right: 0px;
  }
  .ldp-feedbacks-videos {
    margin-top: 32px;
    flex-direction: column;
  }
  .ldp-feedbacks-videos-right {
    flex-basis: 100%;
    display: flex;
    gap: 10px;
  }
  .ldp-feedbacks-videos-right-items {
    flex-basis: 50%;
    margin-bottom: 0;
  }
}
