/* Estilos para el widget Flight Cards List siguiendo el diseño Figma */
.srm-flights-list-widget {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.srm-flight-card {
  display: flex;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
}
.srm-flight-card__info {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 36px 40px;
}
.srm-flight-card__pretitulo {
  font-size: 14px;
  color: #b4b4b4;
  margin-bottom: 6px;
}
.srm-flight-card__titulo {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 12px 0;
}
.srm-flight-card__texto {
  font-size: 16px;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.6;
}
.srm-flight-card__precio {
  font-size: 22px;
  font-weight: 600;
  color: #23388e;
  margin-top: 12px;
}
.srm-flight-card__image {
  flex: 0 0 40%;
  display: block;
  min-height: 220px;
}
.srm-flight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.srm-load-more-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 32px auto 0 auto;
  padding: 6px 8px;
  background: transparent;
  background-color: transparent !important;
  color: #111112 !important;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.srm-load-more-btn:focus {
  outline: none;
}
.srm-load-more-btn::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #23388e;
  border-bottom: 2px solid #23388e;
  transform: rotate(45deg);
  margin-top: 2px;
}

.srm-load-more-btn:hover::after,
.srm-load-more-btn:hover {
  color: #23388e;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .srm-flight-card {
    flex-direction: column-reverse;
  }
  .srm-flight-card__info {
    flex: 0 0 auto;
    padding: 20px 18px;
  }
  .srm-flight-card__image {
    flex: 0 0 auto;
    min-height: 180px;
    width: 100%;
  }
  .srm-flights-list-widget {
    gap: 20px;
  }
}
