/* ===== Scrolling Carousel ===== */
.scrolling-carousel-container {
  width: 100%;
  margin: 20px 0;
}
.gd-scrolling-carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.gd-scrolling-carousel::-webkit-scrollbar {
  display: none;
}
/* ===== Scrolling Carousel Items ===== */
.scrolling-carousel-item {
  display: flex;
  outline: none;
  flex: 0 0 auto;
  transition: all 0.2s ease-in-out;
}
.scrolling-carousel-item .scrolling-carousel-item-inner {
  position: relative;
  display: flex;
  display: inline-block;
  flex-direction: column;
  justify-content: end;
  height: 100%;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.scrolling-carousel-item .overlay,
.scrolling-carousel-item .scrolling-carousel-item-background {
  position: absolute;
  /* top: 0;
  left: 0; */
  width: 100%;
  height: 100%;
  z-index: 12;
}
.scrolling-carousel-item .scrolling-carousel-item-background {
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  transition: all 0.35s ease-in-out;
  z-index: 10;
}
.scrolling-carousel-item:hover .scrolling-carousel-item-background {
  transform: scale(1.1);
}
.scrolling-carousel-item .scrolling-carousel-item-image {
  padding: 0 2rem;
}
.scrolling-carousel-item .scrolling-carousel-item-image img {
  
}
.scrolling-carousel-item .scrolling-carousel-item-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  padding: 2rem;
  z-index: 15;
}
.scrolling-carousel-item a {
  color: inherit;
  text-decoration: none;
  cursor: none;
  transition: all 0.15s ease-in-out;
}
.scrolling-carousel-item a:hover * {
  color: var(--nectar-accent-color) !important;
}
/* ===== Scrolling Carousel Content ===== */
.scrolling-carousel-item .scrolling-carousel-item-title {
 
}
.scrolling-carousel-item .scrolling-carousel-item-excerpt {
  
}
.scroll-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.scrolling-carousel-item:hover {
  /* Add hover effects if needed */
}
/* ===== Drag Cursor Graphic ===== */
.scrolling-carousel-container.hover-drag {
  cursor: none;
}
#carousel-cursor {
  position: absolute;
  pointer-events: none;
  width: 60px;
  height: 60px;
  margin-top: -45px;
  margin-left: -30px;
  z-index: 100;
}
#carousel-cursor > img {
  transition: all 0.15s ease-in-out; 
}
/* ===== Nav ===== */
.scrolling-carousel-nav {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50%;
}
.scrolling-carousel-prev,
.scrolling-carousel-next {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  background: var(--nectar-white);
  border-radius: 25px;
}
.scrolling-carousel-prev.disabled,
.scrolling-carousel-next.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.scrolling-carousel-prev { left: -5%; }
.scrolling-carousel-next { right: -5%; }
.scrolling-carousel-prev:hover, 
.scrolling-carousel-next:hover {
  background: var(--nectar-accent-color);
}
.scrolling-carousel-prev i,
.scrolling-carousel-next i {
  color: var(--nectar-black);
  font-size: 16px;
}