/* main-content */
.talk-about-us-section {
  position: relative;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: padding 0.4s ease;
  margin-top: 120px;
}
.talk-about-us-section::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100vw;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand2);
  z-index: -1;
}
/* Review item */
.talkings-list {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 24px;
  transition: gap 0.4s ease;
}
.talkings-item {
  flex: 1 1 0;
  max-width: 350px;
  height: 400px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.name-age {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 6px;
  background: var(--brand1);
  border-radius: 4px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}
.name-age svg {
  height: 12px;
  width: 12px;
}
/* description */
.talkings-desc {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white1);
  padding: 24px;
  pointer-events: none; /* optional */
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.talkings-item:hover .talkings-desc {
  opacity: 1;
  visibility: visible;
  /* pointer-events: auto; */
}
/* Video */
.review-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.review-media iframe,
.review-media video,
.review-media img,
.review-media picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border: none;
  pointer-events: none;
}

/* Modal responsive media */
.product-modal .modal-inner iframe {
  height: 70vh;
  max-height: 90vh;
  max-width: 80vw;
  /* aspect-ratio: 16/9; */
  aspect-ratio: 9/16;
}

/* Responsive */
@media (max-width: 768px) {
  /* main content */
  .talk-about-us-section {
    position: relative;
    padding: 50px 24px;
    margin-top: 50px;
  }
  /* Review item */
  .talkings-list {
    gap: 12px;
    justify-content: unset;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }
  .talkings-item {
    flex: 0 0 auto;
    min-width: 242px;
  }
}
