/* ═══ ND PC 전용 윙 배너 (우측 세로 2개) ═══
   본문 컬럼 1320px 바깥에 붙이되, 화면이 좁으면 우측 끝에서 10px 띄운다. */

.nd-wing {
    display: none;
}

@media (min-width: 1025px) {
    .nd-wing {
        position: fixed;
        top: calc(var(--site-top-offset, 0px) + 380px);
        /* 877px = 본문 절반(660px) + 배너 폭(187px) + 오른쪽 이동 30px */
        right: max(10px, calc(50% - 877px));
        z-index: 900;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }

    .nd-wing-item {
        display: block;
    }

    .nd-wing-item img {
        display: block;
    }
}
