@charset "utf-8";

/* =============================================
   활동소식 Swiper 슬라이더
============================================= */

.pic_lt_swiper {
  position: relative;
  width: 100%;
}

/* 헤더: 타이틀 + 더보기 */
.pic_lt_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.pic_lt_header .lat_title {
  font-size: 1.25em;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.pic_lt_header .lat_title a {
  color: #222;
  text-decoration: none;
}

.pic_lt_header .lt_more_btn {
  font-size: 0.88em;
  color: #5a8a3c;
  border: 1px solid #5a8a3c;
  border-radius: 20px;
  padding: 4px 14px;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.pic_lt_header .lt_more_btn:hover {
  background: #5a8a3c;
  color: #fff;
}

/* 슬라이더 래퍼 (버튼 + swiper) */
.pic_swiper_wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 이전/다음 버튼 */
.pic_swiper_prev,
.pic_swiper_next {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #5a8a3c;
  background: #fff;
  color: #5a8a3c;
  font-size: 1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
  z-index: 10;
  outline: none;
}

.pic_swiper_prev:hover,
.pic_swiper_next:hover {
  background: #5a8a3c;
  color: #fff;
}

.pic_swiper_prev.swiper-button-disabled,
.pic_swiper_next.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

/* Swiper 컨테이너 */
.pic_swiper_wrap .swiper-container {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

/* 각 슬라이드 카드 */
.pic_swiper_wrap .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s;
}

.pic_swiper_wrap .swiper-slide:hover {
  box-shadow: 0 4px 16px rgba(90, 138, 60, 0.18);
}

/* 이미지 영역 */
.pic_swiper_wrap .lt_img_wrap {
  display: block;
  width: 100%;
  overflow: hidden;
}

.pic_swiper_wrap .lt_img_wrap img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.pic_swiper_wrap .swiper-slide:hover .lt_img_wrap img {
  transform: scale(1.04);
}

/* 타이틀 (2줄 중앙정렬) */
.pic_swiper_wrap .lt_slide_title {
  width: 100%;
  padding: 10px 12px 14px;
  box-sizing: border-box;
  text-align: center;
  background: #fff;
}

.pic_swiper_wrap .lt_slide_title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.88em;
  line-height: 1.5;
  color: #333;
  text-decoration: none;
  word-break: break-all;
  min-height: 2.8em;
}

.pic_swiper_wrap .lt_slide_title a:hover {
  color: #5a8a3c;
}

/* 게시물 없을 때 */
.pic_swiper_wrap .empty_li {
  padding: 40px 0;
  color: #999;
  text-align: center;
  font-size: 0.95em;
}

