.entrevistas-slider-wrapper {
  position: relative;
  margin-top: 60px;
}

.entrevistas-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.entrevistas-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.entrevistas-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.entrevistas-titulo {
  font-size: 32px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #042354;
}

/* === SLIDER === */
.entrevistas-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 30px;
  padding-bottom: 8px;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.entrevistas-slider::-webkit-scrollbar {
  display: none;
}

.entrevista-card {
  max-width: 380px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  font-family: 'Montserrat', sans-serif;
}

.entrevista-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
}

.entrevista-row-top {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.entrevista-categoria {
  font-size: 14px;
  font-weight: 700;
  color: #042354;
  text-transform: uppercase;
}

.entrevista-edicion {
  font-size: 14px;
  font-weight: 600;
  color: #667892;
}

.entrevista-title-h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 12px;
  color: #042354;
  line-height: 130%;
  letter-spacing: -0.36px;
}

.entrevista-meta {
  margin-top: 14px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: "TT Norms Pro", sans-serif;
  font-size: 14px;
  color: #667892;
}

.entrevista-meta img {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 4px;
}

/* === CONTROLES DE NAVEGACIÓN === */
.entrevistas-slider-controls {
  position: absolute;
  right: 120px;
  top: -121px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.entrevistas-slider-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid #8BB733;
  border-radius: 10px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease-in-out;
}

.entrevistas-slider-controls button svg {
  width: 20px;
  height: 18px;
}

.entrevistas-slider-controls button svg path {
  stroke: #8BB733;
  transition: stroke 0.3s ease-in-out;
}

.entrevistas-slider-controls button:hover {
  background: #ADD754;
}

.entrevistas-slider-controls button:hover svg path {
  stroke: #042354;
}

/* ✅ CORRECTO: solo la flecha izquierda se rota */
.entrevistas-prev svg {
  transform: rotate(180deg);
}

.entrevistas-next svg {
  transform: none;
}


/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .entrevistas-slider-controls {
    right: 40px;
    top: -100px;
  }

  .entrevistas-titulo {
    font-size: 28px;
  }

  .entrevista-card {
    max-width: 260px;
  }

  .entrevista-img {
    height: 220px;
  }
}

/* Móvil grande (max-width: 768px) */
@media (max-width: 768px) {
  .entrevistas-slider-controls {
    display: none; /* Ocultar flechas en móvil */
  }

  .entrevistas-titulo {
    font-size: 24px;
  }

  .entrevista-card {
    max-width: 340px;
  }

  .entrevista-img {
    height: 200px;
  }

  .entrevista-title-h3 {
    font-size: 16px;
  }

  .entrevista-meta {
    font-size: 13px;
  }
}

/* Móvil pequeño (max-width: 480px) */
@media (max-width: 480px) {
  .entrevista-card {
    max-width: 300px;
  }

  .entrevista-img {
    height: 180px;
  }

  .entrevista-title-h3 {
    font-size: 15px;
  }

  .entrevista-categoria,
  .entrevista-edicion {
    font-size: 13px;
  }

  .entrevista-meta {
    font-size: 12px;
  }
}

.entrevista-img-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
	aspect-ratio: 4/2.6;
	background-color: #000;
}

.entrevista-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.entrevista-card:hover .entrevista-img {
  transform: scale(1.1);
}

.entrevista-card:hover .entrevista-title-h3 {
	text-decoration: underline #042354;
}
