/* ARL-029 공통 레이아웃 */
.arl-029 {
  width: 100%;
  background-color: #009d9617;
  padding: 20px 18px;
  margin: 0 auto;
  border-radius: 4px;
  position: relative;
  color: #333;
  box-sizing: border-box; /* 패딩 포함 크기 계산 */
}

/* 상단 카테고리 타이틀 (Special Edition) */
.arl-029 h5.tit {
  font-size: 14px;
  margin: 0 0 12px 0;
  color: #3bb5a9;
  font-family: 'Noto Sans KR', sans-serif;
}

.arl-029 h5.tit::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 15px;
  background-color: #50b4a8;
  vertical-align: middle;
  margin: -4px 5px 0px 0px;
  border-radius: 2px;
}

/* 유동적인 메인 제목 영역 */
.arl-029 .top {
  margin: 18px 0 4px 0;
  min-height: 52px;
}

/* 제목 클릭 시 이동을 위한 스타일 */
.arl-029 .top .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 24px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  cursor: pointer; /* 클릭 가능 표시 */
  transition: color 0.2s;
}

.arl-029 .top .title:hover {
  color: #009592; /* 호버 시 강조색 */
}

/* 스와이퍼 컨테이너 */
.arl-029 .rolling-box {
  margin: 0 auto;
  overflow: hidden;
}

.arl-029 .swiper-slide {
  width: 100%;
}

/* 이미지 영역 */
.arl-029 .card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 180px;
  overflow: hidden;
  margin: 0;
}

.arl-029 .card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 카드 본문 영역 및 링크 스타일 */
.arl-029 .card-body {
  padding: 0 10px 15px 10px;
}

.arl-029 .card-body a {
  text-decoration: none; /* 링크 밑줄 제거 */
  display: block;
}

.arl-029 .description {
  font-size: 13px;
  color: #666;
  margin: 10px 0 0 0;
  height: 80px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-height: 20px;
  transition: color 0.2s;
}

.arl-029 .card-body a:hover .description {
  color: #333; /* 본문 호버 시 글자색 진하게 */
}

/* 컨트롤러 (이전/다음/페이지네이션) */
.arl-029 .controls {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 15px;
  margin-top: 0px;
}

.arl-029 .swiper-prev,
.arl-029 .swiper-next {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.arl-029 .swiper-prev::after {
  content: '';
  width: 8px;
  height: 8px;
  border-left: 2px solid #009592;
  border-bottom: 2px solid #009592;
  transform: rotate(45deg);
  margin-left: 2px;
}

.arl-029 .swiper-next::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid #009592;
  border-bottom: 2px solid #009592;
  transform: rotate(-45deg);
  margin-right: 2px;
}

/* 페이지네이션 */
.arl-029 .swiper-pagination {
  display: flex;
  align-items: center;
}

.arl-029 .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #060606;
  margin: 0 4px !important;
  border-radius: 50%;
  opacity: 0.3;
}

.arl-029 .swiper-pagination-bullet-active {
  background: #009592;
  opacity: 1;
}

/* 모바일 대응 반응형 */
@media screen and (max-width: 768px) {
  .arl-029 {
    margin-top: 20px;
  }
  .arl-029 .rolling-box {
    max-height: 288px;
  }
  .arl-029 .swiper-pagination {
    position: static;
    width: auto;
  }
}