/* ==========================================
   포토뉴스 슬라이더 (v3 + 라운드) 스타일
   ========================================== */
.gn-photo-slide-v3-2 {
    width: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    box-sizing: border-box;
}
.gn-photo-slide-v3-2__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
    margin-bottom: 12px;
}
.gn-photo-slide-v3-2__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}
.gn-photo-slide-v3-2__title a {
    color: #0f172a;
    text-decoration: none;
}
.gn-photo-slide-v3-2__title .text-blue {
    color: #2563eb;
}
.gn-photo-slide-v3-2__nav {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 2px 10px;
    background-color: #ffffff;
    font-size: 0.8rem;
}
.gn-photo-slide-v3-2__fraction {
    color: #94a3b8;
    margin-right: 6px;
    font-weight: 600;
}
.gn-photo-slide-v3-2__fraction .swiper-pagination-current {
    color: #0f172a;
}
.gn-photo-slide-v3-2__btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #64748b;
    font-size: 0.75rem;
    padding: 0 4px;
    line-height: 1;
}
.gn-photo-slide-v3-2__btn:hover {
    color: #0f172a;
}
.gn-photo-slide-v3-2__main-swiper {
    width: 100%;
    height: 280px;
    background-color: #0f172a;
    overflow: hidden;
    border-radius: 8px;
}
.gn-photo-slide-v3-2__main-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
.gn-photo-slide-v3-2__main-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.gn-photo-slide-v3-2__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
    padding: 20px 14px 10px 14px;
}
.gn-photo-slide-v3-2__caption h3 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gn-photo-slide-v3-2__thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-top: 8px;
}
.gn-photo-slide-v3-2__thumb-item {
    position: relative;
    height: 60px;
    cursor: pointer;
    overflow: hidden;
    opacity: 0.55;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    box-sizing: border-box;
    border-radius: 6px;
}
.gn-photo-slide-v3-2__thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.gn-photo-slide-v3-2__thumb-item:hover,
.gn-photo-slide-v3-2__thumb-item.is-active {
    opacity: 1;
    border-color: #2563eb;
}

/* Responsive Breakpoints */
@media (max-width: 640px) {
    .gn-photo-slide-v3-2__main-swiper {
        height: 210px;
    }
    .gn-photo-slide-v3-2__thumb-item {
        height: 45px;
    }
}