/* --- wrapper & placeholder --- */
.R-full-img-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 10px 0;
    z-index: 50;
    pointer-events: auto;
    box-sizing: border-box;
}

/* 이미지는 원본 우선, 화면보다 크면 100vw */
.R-full-img-wrapper img {
    display: block;
    width: auto !important;
    max-width: 100vw !important;
    height: auto !important;
    box-sizing: border-box;
}

/* 본문에 남겨두는 플레이스홀더(원래 이미지 자리 유지) */
.R-full-img-placeholder {
    width: 100%;
    height: 1px; /* 실제 높이는 JS에서 업데이트 */
    overflow: visible;
    box-sizing: border-box;
}

/* 안전망: 기본적으로 .xe_content 내부 기본 규칙 건드리지 않음 */
.xe_content {
    overflow: visible !important;
}

/* 페이지 전체 가로스크롤 강제 방지 (필요시 제거) */
body {
    overflow-x: hidden !important;
}
