@charset "utf-8";
/* SCOREBOOK_MOBILE_PORTAL_NEWS_HIDE_STYLE */

/*
 * 모바일 화면에서는 모든 페이지의 공통 포털에서
 * 최신글 + 최신 커뮤니티 상단 패널만 숨깁니다.
 * 페이지별 서브메뉴(.portal-section-nav)와 본문은 유지합니다.
 */
@media screen and (max-width: 768px) {
    html body #scorebook-reference-app .global-portal-slot > .portal-news-grid,
    html body [data-scorebook-reference-design] .global-portal-slot > .portal-news-grid,
    html body .global-portal-slot > .portal-news-grid,
    html body .global-portal-slot .portal-news-grid {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        min-width: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }

    /* 과거/대체 템플릿에서 news-grid 없이 직접 출력되는 경우의 안전장치 */
    html body .global-portal-slot > .portal-share-board,
    html body .global-portal-slot > .portal-community-board {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }

    /* 숨긴 상단 패널의 빈 공간을 제거하고 서브메뉴를 바로 붙입니다. */
    html body .global-portal-slot {
        min-height: 0 !important;
    }

    html body .global-portal-slot > .portal-section-nav {
        margin-top: 0 !important;
        border-top: 3px solid #073f70;
    }

    /* 첫 번째 표시 요소가 서브메뉴인 경우 카드 상단 모서리를 자연스럽게 유지합니다. */
    html body .global-portal-slot > .portal-section-nav:first-of-type {
        border-radius: inherit inherit 0 0;
    }
}
