/* ===== PC 플로팅 배너 ===== */
.fb-floating--pc {
    position: fixed;
    z-index: 9998;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.fb-floating__trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--fb-w, 100px);
    height: var(--fb-h, 280px);
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    box-shadow: -4px 4px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.2s ease;
    text-decoration: none;
}
.fb-floating__trigger:hover {
    transform: scale(1.03);
    text-decoration: none;
}

.fb-floating__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fb-floating__text {
    writing-mode: vertical-rl;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #fff;
    background: #333;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== 모바일 배너 목록 ===== */
.fb-floating--mobile {
    display: none;
    position: fixed;
    z-index: 9998;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--fb-h-m, 60px);
    flex-direction: row;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

.fb-mb-item {
    display: block;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
    text-decoration: none;
}

.fb-mb-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== 반응형 ===== */
@media (max-width: 767px) {
    .fb-floating--pc {
        display: none;
    }
    .fb-floating--mobile {
        display: flex;
    }
}
