@charset "UTF-8";
.scf-carousel {
  position: relative;
  overflow: hidden;
  width: 90vw;
  max-width: 1200px;
  margin: auto;
}
.scf-carousel a {
  all: unset;
  cursor: default;
  text-decoration: none !important;
}
.scf-carousel__header {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 36px;
  padding-bottom: 18px;
}
.scf-carousel__all-title {
  font-family: "Inconsolata", monospace;
  font-weight: 500;
  font-size: 56px;
  color: #111d11;
  text-transform: uppercase;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}
.scf-carousel__all-subtitle {
  font-family: "Inconsolata", monospace;
  font-weight: 500;
  font-size: 20px;
  color: #111d11;
  text-transform: uppercase;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}
.scf-carousel__wrapper {
  display: flex;
}
.scf-carousel__slide {
  flex: 0 0 auto;
  width: auto;
  max-width: 360px;
  margin-right: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 8px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.scf-carousel__title, .scf-carousel__subtitle, .scf-carousel__button, .scf-carousel__image {
  margin: 0;
}
.scf-carousel__image {
  height: 443px !important;
  object-fit: cover;
  width: 100%;
}
.scf-carousel__title {
  font-family: "Inconsolata", monospace;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #111d11;
  margin-top: 22px;
  margin-bottom: 0px;
  min-height: 53px;
}
.scf-carousel__subtitle {
  font-family: "Inconsolata", monospace;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #111d11;
  margin-top: 0px;
  margin-bottom: 18px;
  height: 105px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.scf-carousel__button {
  display: inline-block;
  border: 1px solid #111d11;
  padding: 1rem;
  border-radius: 4px;
  color: #111d11;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
}
.scf-carousel__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.scf-carousel__nav {
  display: flex !important;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 24px;
  background-color: transparent;
  margin-bottom: 36px;
}
.scf-carousel__button-prev, .scf-carousel__button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.scf-carousel__button-prev img, .scf-carousel__button-next img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.scf-carousel__text-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* --- LÓGICA DE ORIENTACIÓN --- */
/* Por defecto (izquierda), el orden es texto y luego carrusel (no necesita cambio) */
/* Cuando la orientación es DERECHA */
.scf-carousel--orientation-right {
  flex-direction: row-reverse; /* ¡La magia de Flexbox! Invierte el orden. */
}

.scf-carousel--orientation-right .scf-carousel__header {
  text-align: right; /* Alineamos el texto a la derecha */
}

.scf-carousel--orientation-right .scf-carousel__nav {
  justify-content: flex-end; /* Movemos los botones de navegación a la derecha */
}

/* --- Ajustes responsivos --- */
@media (max-width: 768px) {
  .scf-carousel,
  .scf-carousel--orientation-right {
    flex-direction: column; /* Apilamos los elementos verticalmente en móviles */
    align-items: stretch; /* Ocupan todo el ancho */
  }
  .scf-carousel__header,
  .scf-carousel--orientation-right .scf-carousel__header {
    text-align: left; /* Siempre a la izquierda en móvil para consistencia */
  }
  .scf-carousel__nav,
  .scf-carousel--orientation-right .scf-carousel__nav {
    justify-content: flex-start; /* Siempre a la izquierda en móvil */
  }
}

/*# sourceMappingURL=scf-carousel.css.map */
