<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* 새글 스킨 (latest) - 트렌디한 푸른색 그라데이션 테마 */

/* 기본 레이아웃 */
.pic_lt {
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
}

/* 제목 영역 제거 */

/* 제목 관련 스타일 제거 */

/* 슬라이더 레이아웃 */
.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 16px;
  background: #fff;
  width: 90%;
  padding: 15px;
  border: 1px solid #e0e7ff;
  box-shadow: 0 2px 6px rgba(0, 0, 100, 0.05);
  border-radius: 6px;
  transition: 0.3s ease all;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 2px; /* hover 시 위로 올라가므로 기본 상태에서 여백 추가 */
}

.swiper-slide:nth-child(1n),
.swiper-slide:nth-child(2n),
.swiper-slide:nth-child(3n) {
  width: 90%;
}

.swiper-slide:hover {
  border: 1px solid #1e5799;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 150, 0.1);
  z-index: 1; /* hover된 슬라이드가 다른 슬라이드 위에 오도록 z-index 설정 */
}

/* 페이징 Dot 기본 */
.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  display: inline-block !important;
  border-radius: 100% !important;
  background: #000 !important;
  opacity: 0.15 !important;
  transition: all 0.3s ease;
}

/* 페이징 Dot ON 일때 */
.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: linear-gradient(135deg, #1e5799 0%, #2989d8 100%) !important;
  transform: scale(1.2);
}

/* 게시물 레이아웃 */
.sw_tit {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  display: block;
  margin-bottom: 8px;
}

.sw_sub {
  font-size: 13px;
  color: #333;
  margin-top: 6px;
  line-height: 20px;
  text-align: left;
}

.sw_sub p {
  border: 1px solid #2989d8;
  margin-right: 6px;
  color: #2989d8;
  padding: 1px 8px;
  display: inline-block;
  border-radius: 12px;
  font-weight: 500;
  font-size: 11px;
  background-color: rgba(41, 137, 216, 0.05);
}

.kmt-10 {
  margin-top: 8px;
}

.bd {
  border-top: 1px solid #e0e7ff;
  padding-top: 10px;
  letter-spacing: -0.5px;
  text-align: center !important;
  margin-top: 10px;
}

.bd p {
  padding: 4px 15px;
  border: 1px solid #2989d8;
  font-size: 13px;
  transition: 0.2s ease all;
  border-radius: 20px;
  background: linear-gradient(135deg, #2989d8 0%, #1e5799 100%);
  color: white;
  display: inline-block;
}

.bd p:hover {
  padding: 4px 17px;
  background: linear-gradient(135deg, #1e5799 0%, #2989d8 100%);
  transition: 0.2s ease all;
  color: #fff;
  border: 1px solid #1e5799;
  box-shadow: 0 2px 5px rgba(0, 0, 100, 0.2);
}

/* 추가 스타일 - 킥 추가 */
.swiper-container {
  padding: 5px 0 25px;
  position: relative;
  margin-bottom: 10px;
}

.swiper-pagination {
  bottom: 10px !important;
  position: absolute;
  margin-top: 5px;
}

/* 전체적인 킥을 위한 애니메이션 효과 */
@keyframes slideInFromBottom {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.swiper-slide {
  animation: 0.3s ease-out 0s 1 slideInFromBottom;
}

/* 반응형 조정 */
@media (max-width: 768px) {
  .swiper-slide,
  .swiper-slide:nth-child(1n),
  .swiper-slide:nth-child(2n),
  .swiper-slide:nth-child(3n) {
    width: 92%;
  }
  
  .sw_tit {
    font-size: 15px;
  }
  
  .sw_sub {
    font-size: 12px;
  }
  
  .bd p {
    padding: 3px 12px;
    font-size: 12px;
  }
}</pre></body></html>