body {
    margin: 0;
    padding: 0;
}

.main_banner {
    width: 100%;
    margin: 0;
    padding: 0;
}

.main_banner_image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner-image {
    pointer-events: none;        /* 우클릭/드래그/길게누르기 방지 */
    -webkit-user-drag: none;
    user-select: none;
    -webkit-touch-callout: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-click-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;             /* 클릭 가능해 보이게 */
    z-index: 10;
    background: rgba(0,0,0,0);   /* 완전 투명 */
}

/* 공통 스타일 */
.banner-label {
    position: absolute;
    bottom: 15px;
    z-index: 20;
    color: #ffffff;
    font-size: 6rem;
    font-weight: 600;
    letter-spacing: 1px;

    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.55);
    pointer-events: none; /* 클릭 방해 X */
}

.label-left {
    left: 20px;
}

/* 오른쪽 하단 */
.label-right {
    right: 20px;
}

/* 모바일에서 글자 작게 */
@media (max-width: 480px) {
    .banner-label {
        font-size: 2rem;
        padding: 5px 8px;
    }
    .label-left { left: 15px; }
    .label-right { right: 15px; }
}

