/*!
 * LS Theme v4.0 (https://lunestudio.com.ar)
 * Copyright 2006-2021 Lunestudio.
 * Licensed under the GPLv3+ https://www.gnu.org/licenses/gpl.html
 */
.lst-block-carrousel {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.lst-block-carrousel .main-title {
  color: #141215;
  font-weight: 400;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  border-bottom: #DD003B 0.1rem solid;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.lst-block-carrousel .main-cta {
  color: #DD003B;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  border: #DD003B 0.1rem solid;
  border-radius: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.25rem 1rem;
}
.lst-block-carrousel .main-cta:hover, .lst-block-carrousel .main-cta:active, .lst-block-carrousel .main-cta:focus {
  color: #ffffff;
  background-color: #DD003B;
}
.lst-block-carrousel .lst-slide {
  position: relative;
}
.lst-block-carrousel .lst-slide .content {
  padding: 0.5rem;
}
.lst-block-carrousel .lst-slide .content .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #F7F7F7;
  aspect-ratio: 1.25/1;
  margin-bottom: 1rem;
  border-radius: 1.5rem;
}
@supports not (aspect-ratio: 1.25/1) {
  .lst-block-carrousel .lst-slide .content .image {
    width: 100%;
    min-height: 20rem;
  }
}
@media (max-width: 767px) {
  .lst-block-carrousel .lst-slide .content .image {
    aspect-ratio: unset;
    width: 100%;
    min-height: 20rem;
  }
}
.lst-block-carrousel .lst-slide .content .date {
  color: #8A8C8E;
  font-size: 0.7rem;
  margin-bottom: 0.5rem;
}
.lst-block-carrousel .lst-slide .content .title {
  color: #DD003B;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.lst-block-carrousel .lst-slide .content .bajada {
  color: #141215;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.lst-block-carrousel .lst-slide .content .cta {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  background-color: #DD003B;
  border-radius: 1rem;
  padding: 0.25rem 1rem;
  display: inline-block;
}
.lst-block-carrousel .lst-slide .content .cta:hover, .lst-block-carrousel .lst-slide .content .cta:active, .lst-block-carrousel .lst-slide .content .cta:focus {
  background-color: #141215;
}
.lst-block-carrousel .slick-next,
.lst-block-carrousel .slick-prev {
  background-color: transparent;
  border: none;
  outline: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 20;
  cursor: pointer;
}
.lst-block-carrousel .slick-next {
  left: auto;
  right: -3rem;
}
@media (max-width: 767px) {
  .lst-block-carrousel .slick-next {
    right: -2rem;
  }
}
.lst-block-carrousel .slick-prev {
  left: -3rem;
}
@media (max-width: 767px) {
  .lst-block-carrousel .slick-prev {
    left: -2rem;
  }
}