@charset "utf-8";

/* 종료된 배너 스타일 */
.banner-expired img {
    width: 100%;
    height: auto;
    display: block;
    filter: blur(4px) grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

/* 광고종료 중앙 문구 */
.expired-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
    z-index: 10;
    pointer-events: none; /* 클릭 방지 보조 */
}

/* 종료 시 마우스 커서 변경 */
.banner-expired {
    position: relative;
    display: block; /* 혹은 inline-block */
    border-radius: 10px !important;
    overflow: hidden; /* 안쪽 내용을 다 깎아버림 */
    isolation: isolate; /* z-index 레이어 꼬임 방지 */
}