/* 상단 safe area — 텔레그램 인앱 브라우저 닫기 버튼 아래로 여백 */
.safe-top {
    height: calc(env(safe-area-inset-top, 0px) + 56px);
    min-height: 56px;
}

/* 하단 safe area */
.safe-bottom {
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 8px);
}

/* PWA standalone 모드에서 safe area 조정 */
@media (display-mode: standalone) {
    .safe-top {
        height: calc(env(safe-area-inset-top, 0px) + 20px);
        min-height: 20px;
    }
}

/* 데스크탑: 텔레그램/PWA가 아닌 일반 브라우저에서는 safe-top 최소화 */
@media (min-width: 768px) {
    .safe-top {
        height: 0;
        min-height: 0;
    }
}

/* 텍스트 줄임 유틸리티 */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
