/* 공통 스타일 import */
@import 'base.css';

/* ----------------------------------------------
✅ 6. 테스트 카드 슬라이더 (front-page 전용)
----------------------------------------------- */
.test-slider {
  padding: 0 12px;
}
.slick-slide {
  display: flex;
  justify-content: center;
}
.test-card {
  width: 120px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  text-align: center;
  margin-right: 12px;
}
.test-card img {
  width: 100%;
  aspect-ratio: 210 / 297;
  object-fit: cover;
}
.test-title {
  font-size: 13px;
  padding: 6px 4px 2px;
}
.test-views {
  font-size: 12px;
  color: #888;
  padding-bottom: 6px;
}
