.aeteluq-latest-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  opacity: 0;
  margin: 1em auto;
}

.aeteluq-latest-carousel-wrapper.is-loaded {
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(.4,0,.2,1);
}
/* Glider.js carousel base styles */
.aeteluq-latest-carousel.glider {
  width: 100%;
  max-width: 100%;
  margin: 0px auto;
  position: relative;
}
.aeteluq-latest-carousel.glider {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.aeteluq-latest-carousel.glider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.aeteluq-latest-carousel .glider-track {
  display: flex;
  align-items: stretch;
  gap:0.5em;
}
.aeteluq-carousel-controls-top{
  margin-top:2.5em;
}
.glider-slide {
  background: #fff;
  border-radius: 1em;

  padding: 24px;
  border-radius: 8px;
  border: color(srgb 0 0.0235294 0.0392157 / 0.15) 1px solid;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 320px;
  overflow: hidden;
}
.carousel-thumb-wrapper{
  width: calc(100% + 49px);
  margin-left: -24px;
  margin-top: -25px;
  margin-bottom: 24px;
  border-bottom: color(srgb 0 0.0235294 0.0392157 / 0.15) 1px solid;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  height: 270px;
  overflow: hidden;
}
.carousel-thumb-wrapper .carousel-thumb{
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.aeteluq-latest-carousel .carousel-meta {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 0.95em;
}
.aeteluq-carousel-category {
  font-weight: 600;
  color: #111;
  background: #eee;
  border-radius: 1em;
  padding: 0.2em 0.9em 0.2em 0.6em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.95em;
  margin-bottom: 0;
}
.aeteluq-latest-carousel .carousel-date {
  color: #888;
  font-size: 0.95em;
}
.aeteluq-latest-carousel .carousel-content {
  flex: 1 1 auto;
  padding: 0.2em 0 0.2em 0;
  font-size: 1em;
  color: #222;
  margin-bottom: 1em;
}
.aeteluq-latest-carousel .carousel-title {
  margin: 1em 0 0.2em 0;
  color: #111;
  line-height: 1.25;
}
.aeteluq-latest-carousel .aeteluq-carousel-readmore {
  color: #111;
  text-decoration: underline dotted;
  transition: color .15s;
}
.aeteluq-latest-carousel .aeteluq-carousel-readmore:hover {
  color: var(--Color-Wave, #097ec1);
  text-decoration: underline;
}

.aeteluq-latest-carousel-wrapper .aeteluq-carousel-prev,
.aeteluq-latest-carousel-wrapper .aeteluq-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  border: none;
  transition:opacity 0.2s ease-in-out;
}
.aeteluq-latest-carousel-wrapper:hover .aeteluq-carousel-prev,
.aeteluq-latest-carousel-wrapper:hover .aeteluq-carousel-next {
  opacity: 1;
}
.aeteluq-carousel-prev {
  left: -72px;
}
.aeteluq-carousel-next {
  right: -72px;
}
.aeteluq-carousel-arrow {
  width: 36px;
  height: 36px;
}
.aeteluq-carousel-pagination.glider-dots {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
}
.aeteluq-carousel-pagination .glider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  margin: 0 2px;
  transition: background 0.2s;
  cursor: pointer;
}
.aeteluq-carousel-pagination .glider-dot.active {
  background: #097ec1;
}
@media (max-width: 1420px) {
  .aeteluq-carousel-prev {
    left: -50px;
  }
  .aeteluq-carousel-next {
    right: -50px;
  }
}
@media (max-width: 1200px) {
  .aeteluq-carousel-prev {
    left: -40px;
  }
  .aeteluq-carousel-next {
    right: -40px;
  }
  .aeteluq-carousel-prev,
  .aeteluq-carousel-next {
    width: 40px;
    height: 40px;
  }
  .aeteluq-carousel-arrow {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 900px) {
  .aeteluq-carousel-pagination .glider-dot {
  width: 10px;
  height: 10px;
  }
  .aeteluq-carousel-prev,
  .aeteluq-carousel-next {
    width: 40px;
    height: 40px;
  }
  .aeteluq-carousel-arrow {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 600px) {
  .aeteluq-latest-carousel-wrapper .aeteluq-carousel-prev,
  .aeteluq-latest-carousel-wrapper .aeteluq-carousel-next {
    display:none;
  }
  .glider-slide {
    min-height: 220px;
  }
}
