.opiniones-wrapper {
    width: 100%;
    margin: 40px 0;
    font-family: 'Figtree', sans-serif;
    overflow: visible;
}

.main-slider {
  padding-left: 48px;
  padding-right: 180px;
}


.swiper-slide {
    width: 670px !important;
    height: auto !important;
    flex-shrink: 0;
}

.swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    box-sizing: border-box;
}

.opinion-card {
    width: 670px;
    background: #fff;
    border: 2px solid #191919;
    border-radius: 32px;
    padding: 56px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.opiniones-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-top: 8px;
}
.opt-btn {
    
    font-family: 'Figtree', sans-serif;
    padding: 8px 24px;
    border-radius: 50px;
    border: 1.5px solid #191919;
    background: #fff;
    cursor: pointer;
    font-size: 20px;
}
.opt-btn.active {
    background: #191919;
    color: #fff;
}

.card-header-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.pfp {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.header-meta {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.name-and-stars {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-top: -4px;
}
.name-style {
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    color: #191919;
    margin: 0;
}
.stars-row {
    display: flex;
    gap: 2px;
}
.stars-row svg {
    width: 34.5px;
    height: 34.5px;
}
.cargo-style {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
    color: #191919;
    margin: 4px 0 0 0;
}
.body-style {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
    color: #191919;
}
.card-tags-row {
    display: flex;
    gap: 8px;
}
.pill {
    font-size: 14px;
    border: 1px solid #191919;
    border-radius: 50px;
    padding: 8px 16px;
    display: inline-block;
}

.video-box {
  width: 300px;
  height: 174px;

  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #eee;

  transition: all 0.35s ease;
}

.video-box.is-playing {
  width: 100%;
  height: 250px;
}


.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 50px;
  color: white;
  background: rgba(0,0,0,0.35);
  transition: 0.2s;
}

.video-box:hover .video-play-btn {
  background: rgba(0,0,0,0.55);
}

@media (max-width: 767px) {

  .main-slider {
    padding: 0 16px;
  }

  .swiper-slide {
    width: 100% !important;
  }

  .opinion-card {
    width: 100%;
    padding: 24px;
    border-radius: 24px;
  }

}

@media (max-width: 767px) {

  .pfp {
    width: 55px;
    height: 55px;
  }

  .name-style {
    font-size: 22px;
    font-weight: 600;
  }

  .cargo-style {
    font-size: 18px;
    line-height: 1.25;
  }

  .stars-row svg {
    width: 18px;
    height: 18px;
  }

  .pill {
    font-size: 14px;
    padding: 8px 16px;
  }

  .body-style {
    font-size: 14px;
    line-height: 1.25;
  }

}

@media (max-width: 767px) {

  .video-box {
    width: 100%;
    height: 200px;
  }

  .video-box.is-playing {
    height: 250px;
  }

}

@media (max-width: 767px) {

  .name-and-stars {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

}

@media (max-width: 767px) {
  .opiniones-filters {
    display: none;
  }
}
