/* Outer container to hide overflow */
.cpt-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Scroll track: holds all post cards side-by-side */
.cpt-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

/* Each post card */
.cpt-carousel-item {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  scroll-snap-align: start;
  padding: 12px;
  box-sizing: border-box;
}

/* Actual card content inside each item */
.cpt-carousel-item > div {
  padding: 12px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

/* Headline */
.cpt-carousel-item h4 {
  font-weight: 600;
  margin: 10px 0;
  text-align: center;
}

/* Featured image full width */
.cpt-carousel-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  margin-bottom: 10px;
}

/* Optional scrollbars */
.cpt-carousel-track::-webkit-scrollbar {
  height: 8px;
}

.cpt-carousel-track::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.cpt-carousel-dots {
  text-align: center;
  margin-top: -15px;
  margin-bottom: 15px;
}

.cpt-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cpt-dot.active {
  background-color: #333333;
}

.cpt-block-title {
  font-family: inherit;
  font-weight: 600;
  color: #222;
}
