/* ==========================================================================
   🧩 CUSTOM COMPONENTS – Expedition Card (modularizar en el futuro)
   ========================================================================== */

.expedition-card {
  /* Espacio reservado para futuros estilos */
  max-width: 400px; /*new*/
  margin: auto; /*new*/
}

.expedition-image-tags {
  position: relative;
  overflow: hidden; /*new*/
}

.expedition-image-tags img { /*new */
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
  transition: transform 0.3s ease; /* old */
}


.expedition-image-tags:hover img {
  transform: scale(1.05);
}

.expedition-tags {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  gap: 0;
  padding: 0;
  background: transparent;
}

.expedition-tags .wp-block-group {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  padding: 0;
  text-align: center;
  line-height: 1;
  overflow: hidden;
}

.expedition-description {
  margin-top: 0.5em;
  
  display: -webkit-box;
  -webkit-line-clamp: 2; /* máximo 2 líneas */
  -webkit-box-orient: vertical;
  
  overflow: hidden;
  text-overflow: ellipsis;

  line-height: 1.4em;       /* altura de línea */
  height: calc(1.4em * 2); /* 2 líneas */
}
