/* Notice Component Styles */
.notice-container {
    position: relative; /* 위치 고정 */
    z-index: 2; /* 레이어 순서 보장 */
    transform: translateZ(0); /* GPU 가속 활성화 */
    width: 558px;
    margin: 30px auto;
}

/* 상단 고정 유의사항 */
.honey_noti_dot_list--top {
    margin-bottom: 20px;
}

.honey_noti_dot_list {
    width: 558px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.honey_noti_dot_li {
    position: relative;
    padding-left: 12px;
    font-size: 15px;
    color: #666;
    font-weight: 300;
    line-height: 175%;
    letter-spacing: -0.16px;
    word-break: keep-all;
    text-wrap: nowrap;
}

.honey_noti_dot_li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

/* 토글 버튼 */
.honey_toggle {
    margin-top: 20px;
}

.toggle-btn {
    max-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}

.ic_arrow {
    width: 10px;
    height: 10px;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.icon-notice {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

/* 토글 컨텐츠 */
.honey_toggle_wrap {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border-top: none;
    transform: translateZ(0); /* GPU 가속 활성화 */
    will-change: max-height, padding; /* 브라우저 최적화 힌트 */
}

.honey_toggle_wrap.active {
    max-height: 2000px; /* 충분한 높이 확보 */
    overflow: visible;
}

.honey_toggle_tit {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 16px 0 8px 0;
}

.honey_toggle_tit:first-child {
    margin-top: 0;
}

.honey_toggle_wrap .honey_noti_dot_list {
    margin-bottom: 16px;
}

.honey_toggle_wrap .honey_noti_dot_li {
    font-size: 15px;
    color: #666;
    font-weight: 300;
}
