.highlight-swiper-container
{
    width: 100%;
    padding: 20px 0;

     margin-top: 0px;   /* ↑ 위쪽 간격 */
}

.myHighlightSwiper
{
    width: 100%;
}

.myHighlightSwiper .swiper-slide
{
    width: 320px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.myHighlightSwiper .swiper-slide img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-prev,
.highlight-next
{
    width: 46px;
    height: 46px;

    background: none;
    backdrop-filter: none;
    border-radius: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 20px;
    font-weight: 800;

    opacity: 0;
    transition: 0.3s;

    box-shadow: none;
    top: 61%;
}

/* Hover 시 화살표 아이콘 자체만 Glow */
.highlight-prev:hover::after,
.highlight-next:hover::after
{
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

/* Hover 시 opacity만 유지 */
.highlight-swiper-container:hover .highlight-prev,
.highlight-swiper-container:hover .highlight-next
{
    opacity: 1;
}

/* Swiper 기본 아이콘 제거하고 커스텀 추가 */
.highlight-prev::after,
.highlight-next::after
{
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 22px;

    /* 아이콘 Glow 애니메이션 */
    transition: 0.25s;
}

.highlight-prev::after
{
    content: "\f104"; /* ← 화살표 */
}

.highlight-next::after
{
    content: "\f105"; /* → 화살표 */
}

/* Disabled 상태 */
.highlight-prev.swiper-button-disabled,
.highlight-next.swiper-button-disabled
{
    opacity: 0 !important;
    pointer-events: none;
}

.proto-expand-card
{
    position: absolute;
    z-index: 9999;

    background: #181818;
    border-radius: 12px;
    overflow: hidden;

    width: 320px;
    min-height: 360px;

    opacity: 0;
    transform: translateY(20px) scale(0.92);
    transition: 0.22s ease;

    pointer-events: auto;   /* 변경 */
    box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}

.proto-expand-card.show
{
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* 이미지 영역 */
.expand-image-wrap img
{
    width: 100%;
    height: auto;
    display: block;
}

/* 정보 영역 */
.expand-info
{
    padding: 16px 18px 22px 18px;
}

.expand-info h3
{
    font-size: 25px;
    color: #fff;
    margin-bottom: 8px;
}

.expand-info p
{
    font-size: 14px;
    color: #ccc;
}

/* 버튼 영역 */
.expand-buttons
{
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.expand-buttons button
{
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    cursor: pointer;

    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.15s ease;
}

.expand-buttons button:hover
{
    background: #e8e8e8;
}

.expand-buttons i
{
    font-size: 16px;
    color: #000;
}

.info-box
{
    position: absolute;
    min-width: 180px;
    max-width: 240px;

    margin-top: 30px;
    margin-left: 20px;

    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);

    padding: 12px 14px;
    border-radius: 8px;

    color: #fff;
    font-size: 13px;
    line-height: 1.45;

    box-shadow: 0px 4px 18px rgba(0,0,0,0.4);

    opacity: 0;
    transform: translateY(6px);
    transition: 0.16s ease;

    pointer-events: none;
    white-space: pre-wrap;
}

.info-box.show
{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (max-width: 768px)
{
    .myHighlightSwiper .swiper-slide
    {
        width: 224px;
        height: 126px;
        border-radius: 7px;
    }
}