/* === CONTENEDOR SWIPER === */
.fama-provincias-destacadas-swiper {
  overflow: hidden;
  padding: 10px 0;
}

.fama-provincias-destacadas-swiper .swiper-slide {
  width: auto !important;
  margin-right: 12px !important;
  display: flex;
  align-items: stretch; /* ✅ Forza altura uniforme */
}

/* === CARD GENERAL === */
.fama-provincia-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffffe6;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  padding: 10px 16px;
  max-width: 250px;
  flex: 0 0 auto;
  box-sizing: border-box;
}

.fama-provincia-card:hover {
  transform: translateY(-5px);
}

.fama-provincia-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.fama-provincia-header h3 {
  margin: 0;
  font-size: 20px !important;
  line-height: 1.2em !important;
  font-weight: bold;
  color: #22231D;
  font-family: 'Inter', sans-serif;
}

.fama-provincia-icon {
  width: 48px !important;
  height: 48px !important;
}

.fama-provincia-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  aspect-ratio: 5 / 3;
}

/* === CARD VER TODAS === */
.fama-provincia-card.provincia-todas {
  text-align: center;
  height: 100%;
  width: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 10px 16px;
  min-height: 205px;
}

.fama-ver-todas-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 10px;
}

.fama-ver-todas-content h3 {
  font-size: 16px !important;
  margin: 0;
  font-weight: bold;
  color: #22231D;
  font-family: 'Inter', sans-serif;
}

.fama-ver-todas-content .fama-provincia-icon {
  width: 48px;
  height: 48px;
}

@media (min-width: 769px) {
  .fama-provincias-destacadas-swiper .swiper-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    transform: none !important;
  }

  .fama-provincias-destacadas-swiper .swiper-slide {
    width: auto !important;
    margin-right: 12px;
  }
}