/* ==== SLIDER PERSONALIZADO ==== */
  .entry-media {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }

  .entry-media .swiper {
    width: 100%;
    height: 100%;
  }

  .entry-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
  }

  /* Flechas personalizadas */
  .swiper-button-prev,
  .swiper-button-next {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
  }

  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background-color: black;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
  }

  /* Posición ligeramente dentro del slider */
  .swiper-button-prev {
    left: 10px;
  }

  .swiper-button-next {
    right: 10px;
  }

  /* Paginación (puntitos) */
  .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.8);
    opacity: 1;
  }

  .swiper-pagination-bullet-active {
    background: #000;
  }