<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:20px;overflow:hidden;border: 1px solid #c6cacc;background:#fff}
.pic_lt .lat_title {display:block;background:#fcfcfc;padding:0 20px;line-height:45px;font-size:1.083em;border-bottom:1px solid #e2e2e2;color:#253dbe;}
.pic_lt .lat_title a{color:#253dbe;display:inline-block;position:relative}
.pic_lt .lat_title a:after{position:absolute;bottom:-1px;left:0;width:100%;height:2px;background:#253dbe;content:''}
.pic_lt .lt_more {position:absolute;top:11px;right:10px;display:block;width:25px;line-height:25px;color:#aaa;border-radius:3px;text-align:center;}
.pic_lt .lt_more:hover{color:#777}
.pic_lt ul:after {display:block;visibility:hidden;clear:both;content:""}
.pic_lt ul{padding:20px 15px }
.pic_lt li{float:left;width:20%;padding:0 10px}
.pic_lt li .lt_img{margin:5px 0;display:block}
.pic_lt li .lt_img img{width:100%;height:auto}
.pic_lt li a:hover{color:#a22121}
.pic_lt li .fa-heart{color:#ff0000;}
.pic_lt li .fa-lock{display: inline-block;line-height: 14px;width: 16px;font-size: 0.833em;color: #4f818c;background: #cbe3e8;text-align: center;border-radius: 2px;font-size: 12px;border:1px solid #a2c6ce}
.pic_lt li .new_icon{display:inline-block;width: 16px;line-height:16px ;font-size:0.833em;color:#ffff00;background:#6db142;text-align:center;border-radius: 2px;}
.pic_lt li .hot_icon{display:inline-block;width: 16px;line-height:16px ;font-size:0.833em;color:#fff;background:#e52955;text-align:center;border-radius: 2px;}
.pic_lt li .fa-caret-right{color:#bbb}
.pic_lt .lt_cmt{background:#5c85c1;color:#fff; font-size:11px;height:16px;line-height:16px;padding:0 5px;border-radius:3px;white-space: nowrap;
-webkit-box-shadow: inset 0 2px 5px  rgba(255,255,255,0.4);
-moz-box-shadow: inset 0 2px 5px  rgba(255,255,255,0.4);
box-shadow: inset 0 2px 5px  rgba(255,255,255,0.4);}
.pic_lt .lt_date{display:block;margin-top:5px;color: #888;}


/* Swiper 컨테이너 기본 크기 (필요에 따라 조정) */
.pic_lt.swiper-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  --swiper-theme-color: #333;
}
.lat_title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* 슬라이드 안에 들어갈 이미지나 텍스트 정렬 */
.pic_lt .swiper-slide {
  position: relative;
  /* 백그라운드 이미지가 자연스럽게 표시되도록 설정 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 56.25%; /* 16:9 비율을 유지하기 위한 값 */
}
/* 오버레이: 흰색 반투명 배경 */
.slide_overlay {
  display: block;           /* a 태그이므로 block 또는 flex로 설정 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.4); /* 흰색, 투명도 0.4 (원하는 투명도 조정) */
  /* 수직 수평 중앙정렬 */
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;    /* 링크 밑줄 제거 */
  color: #333;              /* 폰트 색상 */
}


/* 실제 텍스트 영역 */
.slide_text_area {
  text-align: center;
}

/* 제목 스타일 */
.slide_title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333; /* 제목 색상 */
}

/* 댓글 수, 날짜 등 부가정보 스타일 */
.slide_comment {
  color: #f00;
  margin-bottom: 5px;
}
.slide_date {
  color: #555;
  font-size: 0.9rem;
}

.lt_img img {
  display: block;
  width: 100%;
  height: auto; /* 고정 크기 대신 비율 유지 */
  object-fit: cover; /* 필요에 따라 조정 */
}

.slide_info {
  margin-top: 10px;
}

.lt_tit {
  display: block;
  font-size: 1rem;
  margin-top: 5px;
  text-decoration: none;
  color: #333;
}

.lt_cmt {
  margin-left: 5px;
  color: #f00;
}
.lt_date {
  display: inline-block;
  margin-left: 10px;
  color: #888;
}

/* Swiper 내비게이션 버튼 커스터마이징 */
.pic_lt .swiper-button-prev, .pic_lt .swiper-button-next {
  color: #333;
  display:none;
  /* 위치나 크기 조정 가능 */
}

/* Swiper 페이지네이션 */
.pic_lt .swiper-pagination-bullet {
  background: #333;
  opacity: 0.7;
}
.pic_lt .swiper-pagination-bullet-active {
  background: #ff6600;
  opacity: 1;
}

/* 카드 전체 스타일 */
.card {
  background: #fff;
  border: 1px solid #c6cacc;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 100%;
}

/* 카드 이미지 영역: 16:9 비율 (padding-top: 56.25% = 9/16) */
.card-image {
  width: 100%;
  padding-top: 56.25%; /* 16:9 비율 */
  background-size: cover;
  background-position: center;
  position: relative;
}

/* 카드 오버레이 (전체 링크 기능) */
.card-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* 카드 내용 영역 */
.card-body {
  padding: 15px;
}

/* 카드 제목 */
.card-title {
  font-size: 1.5rem;
  margin: 0 0 10px;
  color: #333;
}

/* 카드 내용 (wr_content) */
.card-content {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}
.card-slider{
  overflow: hidden;
}
/* Swiper 슬라이드 기본 설정 (필요시 조정) */
.card-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
}</pre></body></html>