/*$color-palette: (
        "orange": #FF6B35,
        "light-orange": #F7C59F,
        "lightest-orange": #EFEFD0,
        "blue": #004E89,
        "light-blue": #1A659E,
) !default;

$gradients: (
        "orange": (
                "start": #FF6B35,
                "end": #F7C59F
        ),
        "blue": (
                "start": #004E89,
                "end": #1A659E
        ),
) !default;

$orange: map-get($color-palette, "orange") !default;
$light-orange: map-get($color-palette, "light-orange") !default;
$lightest-orange: map-get($color-palette, "lightest-orange") !default;
$blue: map-get($color-palette, "blue") !default;
$light-blue: map-get($color-palette, "light-blue") !default;*/
.block--double-slide {
  height: auto !important;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition-property: opacity;
}

.block--double-slide .row {
  display: flex;
  flex-wrap: nowrap;
}

.block--double-slide .blog-slide,
.block--double-slide .product-update-slide {
  flex: 0 0 50%;
  max-width: 50%;
}

.block--double-slide .swiper {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.block--double-slide .swiper .swiper-wrapper {
  display: flex;
}

.block--double-slide .swiper-slide {
  height: 100%;
  width: 100% !important;
  flex-shrink: 0;
}

.block--double-slide .swiper-slide.swiper-slide-active {
  opacity: 1;
  position: relative;
}

.block--double-slide .category {
  font-size: 0.7rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #000;
}

.block--double-slide h6 {
  margin-bottom: 0.2rem;
  font-weight: bold;
}

.block--double-slide h6 a {
  color: inherit;
  text-decoration: none;
}

.block--double-slide h6 a:hover {
  text-decoration: underline;
}

.block--double-slide p {
  font-size: 0.9rem;
  color: #000;
}

.block--double-slide .col-12 {
  position: relative;
}

.block--double-slide .col-12::before {
  content: "";
  position: absolute;
  left: 0%;
  top: 46%;
  transform: translateY(-50%);
  width: 3px;
  height: 74%;
  background-color: black;
}

.block--double-slide .swiper-button-prev,
.block--double-slide .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.block--double-slide .swiper-button-prev svg,
.block--double-slide .swiper-button-next svg {
  width: 24px;
  height: 24px;
}

.block--double-slide .swiper-button-prev {
  left: 10px;
}

.block--double-slide .swiper-button-next {
  right: 10px;
}

.editor-styles-wrapper .block--double-slide {
  margin-bottom: 1rem;
}
