



.gallery-latest-wrap {
  max-width: 1200px;
      margin: 40px 0 90px 0;
  padding: 0 20px;
  box-sizing: border-box;
  font-family: 'Noto Sans KR', sans-serif;
  position: relative;
}

.lt_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.lt_title {
  font-size: 24px;
  font-weight: 700;
}

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

.lt_more a {
  font-size: 14px;
  color: #888;
  text-decoration: none;
}

.gallery-nav-buttons {
  position: relative;
  height: 0;
}

.custom-prev,
.custom-next {
  color: #222;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-prev {
  left: -30px; top: 150px;
}

.custom-next {
  right: -30px; top: 150px;
}

.custom-prev::after,
.custom-next::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}

.custom-prev::after {
  transform: rotate(-135deg);
}

.custom-next::after {
  transform: rotate(45deg);
}

.gallery-swiper {
 overflow: hidden;     padding: 0 15px 90px;
}

.gallery-swiper .swiper-wrapper {
  display: flex;
}

.gallery-swiper .swiper-slide {
  background: #fff;
  
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease;
  
}

.gallery-swiper .swiper-slide:hover {
  transform: scale(0.95);
}

.gallery-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #333;
  height: 100%;
}

.gallery-item .thumb {
  width: 100%;
  aspect-ratio: 5 / 3;
  overflow: hidden;
}

.gallery-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item .title {
  padding: 12px 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  word-break: break-word;
}

.no-image {
  width: 100%;
  height: 180px;
  background: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #999;
  font-size: 14px;
}

.no-post {
  padding: 40px;
  font-size: 18px;
  text-align: center;
  color: #888;
}
