/* ====================================
   Variables globales
   ==================================== */
:root {
  --ugc-gap: 1rem;
}

/* ====================================
   Sección UGC
   ==================================== */
.fppd-ugc-section {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

/* ====================================
   Swiper Container
   ==================================== */
.fppd-ugc-swiper {
  padding: 2rem 0;
}

/* ====================================
   Slides Wrapper
   ==================================== */
.fppd-ugc-swiper .swiper-wrapper {
  display: flex;
}

/* ====================================
   Slide (cada tarjeta)
   ==================================== */
.fppd-ugc-swiper .swiper-slide {
  flex: 0 0 auto;
  /* width: auto !important; */
  margin-right: var(--ugc-gap);
  box-sizing: border-box;
}

/* ====================================
   Tarjeta de vídeo
   ==================================== */
.video-card-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-card-wrapper video {
  flex: 1;
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
}

/* ====================================
   Botón Play / Audio
   ==================================== */
.play-btn {
  position: absolute;
  top: 90%; right: -10%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border: none;
  background: transparent;
  /* width: 3rem; height: 3rem; */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-btn img {
  width: 3rem;
  height: auto;
}


/* ====================================
   Pie de vídeo (caption)
   ==================================== */
.ugc-caption-overlay {
  position: relative;
  margin-top: -10px;
  padding: 0.75rem 1rem;
  background: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ugc-caption-text {
  margin: 0;
  font-style: italic;
  font-size: 0.9rem;
  color: #333;
}

/* ====================================
   Swiper Pagination & Navigation
   ==================================== */
.swiper-pagination {
  bottom: 10px !important;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.25rem;
}

/* ====================================
   Responsive Breakpoints
   ==================================== */
@media (max-width: 575.98px) {
  .fppd-ugc-swiper .swiper-slide {
    margin-right: calc(var(--ugc-gap)/2) !important;
  }
}


