.asta-posts-carousel {
  position: relative;
  overflow: hidden;
  margin: 1.5em 0 2em;
  padding: 0 44px;
}

.asta-pc-track {
  display: flex;
  transition: transform 0.45s ease-in-out;
  will-change: transform;
}

.asta-pc-slide {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

@media (min-width: 600px) {
  .asta-pc-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 900px) {
  .asta-pc-slide {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

.asta-pc-link {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
}

.asta-pc-link:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.asta-pc-image-wrap {
  overflow: hidden;
  background: #f5f5f5;
}

.asta-pc-image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.asta-pc-link:hover .asta-pc-image {
  transform: scale(1.03);
}

.asta-pc-noimg {
  display: block;
  background: linear-gradient(135deg, #750041 0%, #a1005c 100%);
  min-height: 120px;
}

.asta-pc-body {
  padding: 16px;
}

.asta-pc-cat {
  display: inline-block;
  background: #ffcd2a;
  color: #333;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 8px;
}

.asta-pc-title {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.35;
  color: #222;
}

.asta-pc-excerpt {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #666;
}

.asta-pc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.9);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  color: #444;
  padding: 0;
}

.asta-pc-nav:hover {
  background: #fff;
  border-color: #750041;
  color: #750041;
}

.asta-pc-prev { left: 2px; }
.asta-pc-next { right: 2px; }

.asta-pc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.asta-pc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}

.asta-pc-dot.active {
  background: #750041;
  border-color: #750041;
}

.asta-pc-dot:hover {
  border-color: #750041;
}
