/* Kontainer Swiper */
.as-home-swiper {
  margin: 12px 0;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 10px;
  background: #fff;
}

/* Layout slide: kiri gambar, kanan teks */
.as-slide.as-slide--grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 14px;
  align-items: start;
}

.as-slide-media {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.as-slide-media img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.as-slide-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.as-slide-title {
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.25;
}
.as-slide-title a {
  color: #111827;
  text-decoration: none;
}
.as-slide-title a:hover { text-decoration: underline; }
.as-slide-text {
  color: #4b5563;
  line-height: 1.55;
}

/* Swiper controls */
.as-home-swiper .swiper-button-prev,
.as-home-swiper .swiper-button-next {
  color: #111827;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.95);
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.as-home-swiper .swiper-button-prev:after,
.as-home-swiper .swiper-button-next:after {
  font-size: 16px;
  font-weight: 700;
}
.as-home-swiper .swiper-pagination-bullet {
  background: #9ca3af;
  opacity: .6;
}
.as-home-swiper .swiper-pagination-bullet-active {
  background: #111827;
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .as-slide-media img { max-height: 280px; }
}
@media (max-width: 768px) {
  .as-slide.as-slide--grid { grid-template-columns: 1fr; }
  .as-slide-media img { max-height: 240px; }
}
