/* ==========================================================================
   Postlist Slider Component Styling (Slick Slider Integration - SCSS)
   ========================================================================== */
.postlist_scroll {
  position: relative !important;
  /* Adjust Slick track viewport spacing to prevent clipping vertical transforms (lifts/shadows) */
}
.postlist_scroll .slick-list {
  overflow: hidden !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  margin-top: -12px !important;
  margin-bottom: -12px !important;
}
.postlist_scroll {
  /* Align heights across cards in the slider row */
}
.postlist_scroll .slick-track {
  display: flex !important;
  align-items: stretch !important;
}
.postlist_scroll {
  /* Slide item sizing handled by Slick */
}
.postlist_scroll .slick-slide {
  height: auto !important;
  outline: none !important;
}
.postlist_scroll .cat_postlist__li {
  box-sizing: border-box !important;
  display: block !important;
}
.postlist_scroll {
  /* Premium Slider Navigation Buttons */
}
.postlist_scroll__btn {
  position: absolute !important;
  top: 50% !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10 !important;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.2s ease, box-shadow 0.2s ease !important;
  padding: 0 !important;
  color: #333333 !important;
  opacity: 1;
  /* Always visible on screens >= 768px */
  outline: none !important;
}
.postlist_scroll__btn--prev {
  left: 16px !important;
  transform: translateY(-50%) scale(1) !important;
}
@media only screen and (min-width: 1100px) {
  .postlist_scroll__btn--prev {
    left: -48px !important;
  }
}
.postlist_scroll__btn--prev:hover svg {
  transform: translateX(-2px);
}
.postlist_scroll__btn--next {
  right: 16px !important;
  transform: translateY(-50%) scale(1) !important;
}
@media only screen and (min-width: 1100px) {
  .postlist_scroll__btn--next {
    right: -48px !important;
  }
}
.postlist_scroll__btn--next:hover svg {
  transform: translateX(2px);
}
.postlist_scroll__btn:hover {
  background: #ffffff !important;
  color: #000000 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-50%) scale(1.1) !important;
}
.postlist_scroll__btn:active {
  transform: translateY(-50%) scale(0.95) !important;
}
.postlist_scroll__btn svg {
  width: 26px !important;
  height: 26px !important;
  fill: currentColor !important;
  transition: transform 0.2s ease;
}
.postlist_scroll__btn:disabled {
  opacity: 0 !important;
  pointer-events: none !important;
}
@media only screen and (max-width: 767px) {
  .postlist_scroll__btn {
    display: none !important;
  }
}