/* HUMANGRID 공통 스타일 */

/* 타이틀 영역 여백 */
.page-title {
    margin-top: 16px;
    margin-bottom: 32px;
}
.title-wrap {
    margin-top: 16px;
    margin-bottom: 40px;
}
.title-wrap .page-title {
    margin-top: 0;
    margin-bottom: 0;
}

/* 스크롤 잠금 안내 배너 */
.scroll-lock-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    text-align: center;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.85);
    color: #aaa;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.scroll-lock-banner.show {
    transform: translateY(0);
}
