.destinies-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: row;
  gap: 44px;
  padding: 0 32px;
  background-color: #ffffff;
  margin: 0 auto;
  margin-bottom: var(--space-between-sections);
}

/* Intro izquierda */
.destinies-list__intro {
  color: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 33%;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.destinies-list__intro-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  padding: 40px;
}

.destinies-list__title {
  color: #FFF;
  font-family: Comfortaa;
  margin-bottom: 24px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.52px;
  font-size: unset;
}

.destinies-list__title--small {
  font-size: 19px;
  line-height: 34px;
  margin-bottom: 16px;
}

.destinies-list__title--big {
  font-size: 25px;
  line-height: 42px;
  text-transform: uppercase;
}

.destinies-list__description {
  display: block;
  color: #FFF;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.64px;
}

/* Versión mobile de la descripción: oculta por defecto, solo se muestra dentro
   del popup en móvil (ver media query <= 992px) */
.destinies-list__description--mobile {
  display: none;
}

/* Tarjetas */
.destinies-list__cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 66%;
  gap: 16px;
}

.destinies-list__card {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: Poppins;
}

.destinies-list__card a {
  text-decoration: none;
}

.destinies-list__card-image img {
  width: 100%;
  height: 55vh;
  display: block;
  object-fit: cover;
}

.destinies-list__card-content {
  padding: 18px;
  padding-bottom: unset;
  padding-block: 8px;
}

.destinies-list__card-wrapper {
  display: flex;
  align-items: end;
}

.destinies-list__card-title {
  text-transform: uppercase;
  color: #2CCCD3;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 22px;
}

.destinies-list__card-from {
  display: flex;
  flex-direction: column;
  color: #97999B;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 9px;
  letter-spacing: 0.64px;
  margin-bottom: unset;
}

.destinies-list__card-price {
  color: #97999B;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.52px;
}

.destinies-list__card-action {
  margin-bottom: 5px;
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
}

.destinies-list__card-action .btn {
  width: 51px;
  height: 51px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .destinies-list__card-image img {
    height: 250px;
  }

  .destinies-list__title--small {
    font-size: 25px;
    line-height: 42px;
    letter-spacing: unset;
    margin-bottom: 20px;
  }
}

@media (max-width: 992px) {
  .destinies-list {
    margin-bottom: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: unset;
    padding: 0 30px;
  }

  .destinies-list__card-image img {
    height: 131px;
  }

  .destinies-list__intro-content {
    left: unset;
    padding: 30px 30px;
    position: relative;
    transform: none;
    top: auto;
    width: 100%;
    text-align: center;
  }

  .destinies-list__description {
    display: none;
  }

  .destinies-list__description--mobile {
    display: block;
    font-weight: lighter;
    font-family: 'Comfortaa';
  }

  .destinies-list__card-title {
    border-bottom: none;
    font-size: 16px;
  }

  .destinies-list__intro {
    width: 100%;
    height: auto;
    min-height: 350px;
    border-radius: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .destinies-list__cards {
    width: 100%;
  }

  .destinies-list__card {
    width: 100%;
    border-radius: 25px;
  }

  .destinies-list__card-from {
    font-size: 16px;
    margin-bottom: 0;
  }

  .destinies-list__card-content {
    padding: 14px;
    padding-bottom: 5px;
  }

  .destinies-list__card-price {
    font-size: 21px;
  }

  .destinies-list__card-action {
    padding: unset;
  }

  .destinies-list__card-action .btn {
    width: 39px;
    height: 39px;
    cursor: pointer;
  }

  /* Fondo con contenedor de altura auto */
  .destinies-list__intro .background-degree {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

/* Tablet: Limitar altura del description para mostrar botón "Leer más" */
@media (min-width: 992px) and (max-width: 1024px) {
  .destinies-list__title--small {
    font-size: 18px;
    line-height: 25px;
    display: none;
  }
  
  .destinies-list__title--big {
    font-size: 17px;
    line-height: 26px;
  }

  .destinies-list__description {
    /* Fallback para navegadores antiguos sin soporte line-clamp */
    max-height: 168px;
    overflow: hidden;

    /* Solución moderna con ellipsis (Chrome, Safari, Edge, Firefox 68+) */
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-bottom: 17px;
  }
}