@charset "UTF-8";
/* Contenedor principal del widget */
.story-carousel-widget {
  position: relative;
  width: 100%;
  background-color: #F9F4EF;
  padding: 1.5rem;
  /* Columnas */
  /* Paginación */
  /* Navegación */
}
@media (min-width: 768px) {
  .story-carousel-widget {
    padding: 3rem;
    padding-top: 0;
  }
}
.story-carousel-widget .swiper-slide {
  display: flex;
  justify-content: center;
}
.story-carousel-widget .swiper-slide .story-carousel__slide-content {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  position: relative;
  min-height: 1000px;
  margin-top: 4rem;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .story-carousel-widget .swiper-slide .story-carousel__slide-content {
    flex-direction: row;
    width: 700px;
    min-height: 1100px;
  }
}
@media (min-width: 1000px) {
  .story-carousel-widget .swiper-slide .story-carousel__slide-content {
    width: 900px;
    min-height: 1000px;
  }
}
@media screen and (min-width: 1300px) {
  .story-carousel-widget .swiper-slide .story-carousel__slide-content {
    width: 1200px;
    min-height: 900px;
  }
}
.story-carousel-widget .story-carousel__image-column,
.story-carousel-widget .story-carousel__content-column {
  flex: 1 1 50%;
  position: relative;
  height: 100%;
  width: 100%;
  margin-top: 100px;
}
@media (min-width: 768px) {
  .story-carousel-widget .story-carousel__image-column,
  .story-carousel-widget .story-carousel__content-column {
    width: auto;
    margin-top: 0;
  }
}
.story-carousel-widget .story-carousel__image-column img {
  width: 100%;
  height: 40%;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .story-carousel-widget .story-carousel__image-column img {
    height: 100%;
  }
}
.story-carousel-widget .story-carousel__image-column .story-carousel__content-title {
  position: absolute;
  padding: 1rem 0;
  border-radius: 4px;
  top: -100px;
}
@media (min-width: 768px) {
  .story-carousel-widget .story-carousel__image-column .story-carousel__content-title {
    top: 5%;
    right: -44%;
    padding: 1rem 3rem;
    background-color: #F9F4EF;
  }
}
.story-carousel-widget .story-carousel__image-column .story-carousel__content-title .story-carousel__title {
  font-family: "Lora", sans-serif;
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1;
  margin: 0;
}
.story-carousel-widget .story-carousel__image-column .story-carousel__content-title .story-carousel__title p {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .story-carousel-widget .story-carousel__image-column .story-carousel__content-title .story-carousel__title {
    font-size: clamp(2.5rem, -3.5759rem + 12.6582vw, 6em);
  }
}
.story-carousel-widget .story-carousel__image-column .story-carousel__content-title .story-carousel__subtitle {
  right: 0;
  padding: 0 0.5rem;
}
@media (min-width: 768px) {
  .story-carousel-widget .story-carousel__image-column .story-carousel__content-title .story-carousel__subtitle {
    position: absolute;
    background: #F9F4EF;
  }
}
.story-carousel-widget .story-carousel__content-column {
  padding: 1rem 0;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  background-color: rgba(249, 244, 239, 0.9);
  font-family: "Inconsolata", monospace;
}
@media (min-width: 768px) {
  .story-carousel-widget .story-carousel__content-column {
    padding: 1rem;
    padding-left: 3rem;
    margin-top: 350px;
    position: static;
    background-color: transparent;
    transform: unset;
    top: 24%;
    width: 94%;
  }
}
.story-carousel-widget .story-carousel__content-column .story-carousel__year {
  font-family: "Lora", sans-serif;
  font-size: 2rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .story-carousel-widget .story-carousel__content-column .story-carousel__year {
    font-size: 1.5vw;
  }
}
.story-carousel-widget .story-carousel__content-column .story-carousel__heading {
  color: #B9924F;
  text-transform: uppercase;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .story-carousel-widget .story-carousel__content-column .story-carousel__heading {
    margin-bottom: 2rem;
    margin-top: 0;
  }
}
.story-carousel-widget .story-carousel__content-column .story-carousel__content {
  font-size: 1rem;
  font-weight: 800;
}
.story-carousel-widget .story-carousel__content-column .story-carousel__content p {
  margin-bottom: 0.5rem;
}
.story-carousel-widget .swiper-pagination {
  /* Lo reseteamos porque ahora está en un flex-container */
  width: auto;
  display: flex;
  gap: 0.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100px + 35%);
}
@media (min-width: 768px) {
  .story-carousel-widget .swiper-pagination {
    bottom: 11%;
    left: 31%;
    transform: unset;
    z-index: 2;
    top: auto;
  }
}
.story-carousel-widget .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .story-carousel-widget .swiper-pagination .swiper-pagination-bullet {
    left: 24%;
  }
}
.story-carousel-widget .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffffff;
}
.story-carousel-widget .story-carousel__navigation {
  display: flex;
  gap: 1rem;
  position: absolute;
  right: 0;
  transform: translateX(-50%);
  top: 54%;
  z-index: 2;
  justify-content: space-between;
  width: 70px;
  height: 25px;
}
@media (min-width: 768px) {
  .story-carousel-widget .story-carousel__navigation {
    left: calc(50% + 4.5rem);
    transform: none;
    bottom: 3rem;
    top: auto;
    right: auto;
    width: 72px;
    height: 36px;
  }
}
.story-carousel-widget .story-carousel__navigation .swiper-button-prev,
.story-carousel-widget .story-carousel__navigation .swiper-button-next {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  color: #111D11;
  font-weight: bold;
}
.story-carousel-widget .story-carousel__navigation .swiper-button-prev::after,
.story-carousel-widget .story-carousel__navigation .swiper-button-next::after {
  font-size: 1.5rem;
}

@media (max-width: 769px) {
  .desktop {
    display: none;
  }
}

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