/* 슬라이드 컨테이너 */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    touch-action: pan-y; /* 모바일에서 세로 스크롤 방지 */
}
.content-title {
    display: flex;
    width: 100%;
    height: 4.6rem;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}
.content-title a{
    text-decoration: none;
    color: white;
}
.content-title h3,
.content-title p{
    margin: 0;
    padding: 1rem 0;
}
/* 슬라이더 */
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    gap: 1.1rem;
    cursor: pointer;
}
.slider.dragging {
    transition: none; /* 드래그 중에는 transition 비활성화 */
    cursor: grabbing;
}

/* 각 슬라이드 아이템 */
.item {
    min-width: 14rem;
    max-width: 14rem;
    height: auto;
    box-sizing: border-box;
    text-align: center;
}
.item a {
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.item a:focus  {
    outline: none;
}
.item a img {
    width: 100%;
    height: auto;
    user-drag: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* 인덱스 점 (Dots) */
.dots-container {
    text-align: center;
    margin: 0.6rem 0 3rem;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 5px;
    background-color: #333;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #ccc;
}
@media (min-width: 430px) {
    .slider-container {
        margin: 0 auto;
    }
}
