body {
    background: #eef3f6;
}

body,
body * {
    box-sizing: border-box;
}

#hd,
#aside,
#ft,
#gnb,
#tnb {
    display: none !important;
}

/* default.css 가 이 파일보다 뒤에 로드되어 #wrapper{min-width:1200px},
   #container{width:930px;float:left} 등 고정폭을 강제하므로, 반응형이
   깨지지 않도록 !important 로 확실히 덮어쓴다. */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

#wrapper,
#container_wr,
#container {
    float: none !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 0;
    height: auto;
    margin: 0 auto;
    padding: 0;
}

#container {
    min-height: 560px;
}

/* 홈(_INDEX_)이 아닌 커뮤니티/게시판 등 내부 페이지의 콘텐츠 폭/여백 */
.mt-wrapper:not(.mt-index-wrapper) #container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 28px 24px 64px;
}

#container_title {
    max-width: 1120px;
    margin: 0 auto;
    padding: 34px 24px 12px;
    color: #10202d;
    font-size: 26px;
}

.mt-topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 88px;
    padding: 0 max(24px, calc((100vw - 1160px) / 2));
    background: linear-gradient(180deg, rgba(9, 23, 38, 0.98) 0%, rgba(3, 9, 18, 0.98) 100%), #050b14;
    color: #e9f6f6;
    border-bottom: 1px solid rgba(94, 234, 212, 0.2);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
    overflow: hidden;
    isolation: isolate;
}

.mt-topbar::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 18% 20%, rgba(94, 234, 212, 0.16), transparent 25%),
        radial-gradient(circle at 82% 30%, rgba(245, 158, 11, 0.12), transparent 22%);
    opacity: 0.9;
    animation: mtTopbarGlow 8s ease-in-out infinite alternate;
}

.mt-topbar::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -28%;
    width: 24%;
    z-index: -1;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
    transform: skewX(-18deg);
    animation: mtLightSweep 7s ease-in-out infinite;
}

.mt-topbar--report {
    border-bottom-color: rgba(245, 158, 11, 0.34);
}

.mt-topbar--cases {
    border-bottom-color: rgba(45, 212, 191, 0.36);
}

.mt-topbar--free {
    border-bottom-color: rgba(99, 102, 241, 0.34);
}

.mt-topbar--help {
    border-bottom-color: rgba(96, 165, 250, 0.34);
}

.mt-topbar--community {
    border-bottom-color: rgba(148, 163, 184, 0.32);
}

.mt-brand {
    display: inline-flex;
    align-items: center;
    width: 276px;
    max-width: calc(100vw - 96px);
    height: 68px;
    padding: 4px 10px 4px 0;
    text-decoration: none;
    flex: 0 1 276px;
}

.mt-brand img {
    display: block;
    width: 100%;
    height: auto;
}

.mt-nav,
.mt-account {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.mt-nav a,
.mt-account a {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 13px;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #c9d6df;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.mt-nav a.is-active,
.mt-nav a:hover,
.mt-account a:hover {
    border-color: rgba(94, 234, 212, 0.2);
    background: rgba(20, 184, 166, 0.13);
    color: #ffffff;
    transform: translateY(-1px);
}

.mt-account .mt-primary-link {
    border-color: rgba(245, 158, 11, 0.44);
    background: linear-gradient(180deg, #f7b43c 0%, #f59e0b 100%);
    color: #111827;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.18);
}

.mt-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(94, 234, 212, 0.2);
    border-radius: 6px;
    background: rgba(20, 184, 166, 0.13);
    color: #fff;
    font-size: 18px;
}

.mt-mobile-menu {
    display: none;
}

/* 메뉴 아래 한 줄 공지 롤링 티커 */
.mt-ticker {
    background: #fff;
    border-bottom: 1px solid #e2e8ee;
    box-shadow: 0 6px 18px rgba(10, 27, 40, 0.05);
}

.mt-ticker-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    height: 50px;
}

.mt-ticker-tag {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: #0f766e;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.mt-ticker-tag:hover {
    background: #0b5f59;
}

.mt-ticker-viewport {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    height: 50px;
    overflow: hidden;
}

.mt-ticker-list {
    margin: 0;
    padding: 0;
    list-style: none;
    will-change: transform;
}

.mt-ticker-list li {
    height: 50px;
}

.mt-ticker-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 50px;
    color: #28323f;
    text-decoration: none;
}

.mt-ticker-date {
    flex: 0 0 auto;
    color: #0f766e;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.mt-ticker-text {
    min-width: 0;
    overflow: hidden;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mt-ticker-list li a:hover .mt-ticker-text {
    color: #0f766e;
    text-decoration: underline;
}

/* 실시간 조회 현황 라인 (모바일 전용) */
.mt-livestat {
    display: none;
}

.mt-livestat-inner {
    display: flex;
    align-items: stretch;
    max-width: 1160px;
    margin: 0 auto;
}

.mt-livestat-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 10px;
}

.mt-livestat-item + .mt-livestat-item {
    border-left: 1px solid #d7e6ea;
}

.mt-livestat-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #5b6b76;
    font-size: 11.5px;
    font-weight: 700;
}

.mt-livestat-label i {
    color: #0f766e;
}

.mt-livestat-num {
    color: #0b3b36;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
    .mt-livestat {
        display: block;
        background: linear-gradient(90deg, #f0fdfa, #eef6ff);
        border-bottom: 1px solid #dbe7ec;
    }
}

.mt-page-banner {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(7, 19, 29, 0.92), rgba(12, 31, 47, 0.86)),
        #07131d;
    isolation: isolate;
}

.mt-page-banner::before,
.mt-page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.mt-page-banner::before {
    background:
        linear-gradient(115deg, transparent 0 32%, rgba(255, 255, 255, 0.08) 44%, transparent 56% 100%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 76px);
    transform: translateX(-18%);
    animation: mtBannerDrift 12s linear infinite;
}

.mt-page-banner::after {
    background: radial-gradient(circle at 72% 38%, rgba(94, 234, 212, 0.22), transparent 28%);
    animation: mtBannerPulse 6s ease-in-out infinite alternate;
}

.mt-page-banner--report {
    background:
        linear-gradient(120deg, rgba(7, 19, 29, 0.94), rgba(103, 63, 8, 0.78)),
        #0f172a;
}

.mt-page-banner--cases {
    background:
        linear-gradient(120deg, rgba(7, 19, 29, 0.94), rgba(15, 118, 110, 0.72)),
        #0f172a;
}

.mt-page-banner--free {
    background:
        linear-gradient(120deg, rgba(7, 19, 29, 0.94), rgba(67, 56, 202, 0.72)),
        #0f172a;
}

.mt-page-banner--search {
    background:
        linear-gradient(120deg, rgba(7, 19, 29, 0.94), rgba(29, 78, 216, 0.68)),
        #0f172a;
}

.mt-page-banner--help {
    background:
        linear-gradient(120deg, rgba(7, 19, 29, 0.94), rgba(30, 64, 175, 0.72)),
        #0f172a;
}

.mt-page-banner--community {
    background:
        linear-gradient(120deg, rgba(7, 19, 29, 0.94), rgba(51, 65, 85, 0.82)),
        #0f172a;
}

.mt-page-banner-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 38px 24px 42px;
}

.mt-page-banner span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 30px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #bff6ef;
    font-size: 13px;
    font-weight: 800;
}

.mt-page-banner h1 {
    margin: 14px 0 8px;
    color: #fff;
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.mt-page-banner p {
    max-width: 720px;
    margin: 0;
    color: #c9d6df;
    font-size: 15px;
    line-height: 1.7;
}

/* 함께하는 공익·신고 기관 (패밀리 사이트 가로 롤링) */
.mt-family {
    background: #0b1825;
    border-top: 1px solid rgba(94, 234, 212, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mt-family-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 1160px;
    margin: 0 auto;
    padding: 16px 24px;
}

.mt-family-label {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #5eead4;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.mt-family-label i {
    font-size: 14px;
}

.mt-family-viewport {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.mt-family-viewport::-webkit-scrollbar {
    display: none;
}

.mt-family-track {
    display: flex;
    align-items: stretch;
    gap: 10px;
    width: max-content;
}

.mt-family-item {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 54px;
    padding: 0 16px 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: #d3e0e7;
    text-decoration: none;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.mt-family-item:hover {
    border-color: rgba(94, 234, 212, 0.4);
    background: rgba(20, 184, 166, 0.12);
    transform: translateY(-2px);
}

.mt-family-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 8px;
    background: linear-gradient(135deg, #0f766e, #134e4a);
    color: #ccfbf1;
    font-size: 16px;
}

.mt-family-item:hover .mt-family-mark {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    color: #fff;
}

.mt-family-name {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    white-space: nowrap;
    color: #eef6f7;
    font-size: 14px;
    font-weight: 700;
}

.mt-family-name small {
    color: #8fa3b0;
    font-size: 11px;
    font-weight: 600;
}

.mt-footer {
    background: #07131d;
    color: #93a8b6;
}

.mt-footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 34px 24px 42px;
}

.mt-footer img {
    width: 210px;
    height: auto;
    margin-bottom: 18px;
}

.mt-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 10px;
}

.mt-footer a {
    color: #e6f2f2;
    text-decoration: none;
}

.mt-footer-info {
    max-width: 760px;
}

.mt-footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
}

.mt-footer-meta span {
    color: #e6f2f2;
    font-weight: 800;
}

.mt-scroll-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1100;
    display: none;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(94, 234, 212, 0.34);
    border-radius: 50%;
    background: linear-gradient(180deg, #0f766e 0%, #0b4f4a 100%);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(3, 9, 18, 0.28);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 14px, 0) scale(0.92);
    transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.mt-scroll-top i {
    font-size: 18px;
}

.mt-scroll-top:focus {
    outline: 3px solid rgba(94, 234, 212, 0.35);
    outline-offset: 3px;
}

.mt-scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
}

.mt-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 560ms ease, transform 560ms ease, filter 560ms ease;
    transition-delay: var(--mt-reveal-delay, 0ms);
    filter: blur(2px);
}

.mt-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

#bo_list,
#bo_v,
.tbl_head01,
.tbl_frm01 {
    animation: mtSoftRise 520ms ease both;
}

#bo_list a:hover,
#bo_v a:hover {
    color: #0f766e;
}

@keyframes mtTopbarGlow {
    0% { transform: translate3d(-1%, 0, 0) scale(1); opacity: 0.72; }
    100% { transform: translate3d(1.5%, 0, 0) scale(1.05); opacity: 1; }
}

@keyframes mtLightSweep {
    0%, 42% { transform: translateX(0) skewX(-18deg); opacity: 0; }
    52% { opacity: 1; }
    72%, 100% { transform: translateX(620%) skewX(-18deg); opacity: 0; }
}

@keyframes mtBannerDrift {
    0% { transform: translateX(-18%); }
    100% { transform: translateX(18%); }
}

@keyframes mtBannerPulse {
    0% { opacity: 0.55; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.06); }
}

@keyframes mtSoftRise {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .mt-reveal {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

.mt-footer p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .mt-topbar {
        height: 72px;
        gap: 12px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .mt-brand {
        width: 220px;
        height: 54px;
    }

    .mt-menu-toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
    }

    .mt-nav,
    .mt-account {
        display: none;
    }

    body.mt-nav-open {
        overflow: hidden;
    }

    .mt-mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 1800;
        display: block;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease, visibility 180ms ease;
    }

    .mt-nav-open .mt-mobile-menu {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .mt-mobile-menu-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(3, 9, 18, 0.62);
        backdrop-filter: blur(5px);
    }

    .mt-mobile-menu-panel {
        position: absolute;
        right: 12px;
        left: 12px;
        top: max(84px, env(safe-area-inset-top));
        max-height: calc(100vh - 106px);
        overflow-y: auto;
        padding: 16px;
        border: 1px solid rgba(203, 213, 225, 0.8);
        border-radius: 8px;
        background: #ffffff;
        box-shadow: 0 28px 70px rgba(3, 9, 18, 0.34);
        transform: translateY(-10px) scale(0.985);
        transition: transform 180ms ease;
    }

    .mt-nav-open .mt-mobile-menu-panel {
        transform: translateY(0) scale(1);
    }

    .mt-mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 14px;
        padding-bottom: 14px;
        border-bottom: 1px solid #e5edf2;
    }

    .mt-mobile-menu-head span {
        display: block;
        margin-bottom: 3px;
        color: #0f766e;
        font-size: 12px;
        font-weight: 800;
    }

    .mt-mobile-menu-head strong {
        display: block;
        color: #10202d;
        font-size: 19px;
        line-height: 1.25;
    }

    .mt-mobile-menu-close {
        display: inline-grid;
        place-items: center;
        width: 40px;
        height: 40px;
        flex: 0 0 auto;
        border: 1px solid #d7e3ea;
        border-radius: 8px;
        background: #f8fbfc;
        color: #334155;
        font-size: 18px;
    }

    .mt-mobile-menu-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .mt-mobile-menu-grid a {
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 10px;
        align-items: center;
        min-height: 74px;
        padding: 12px 10px;
        border: 1px solid #dce7ed;
        border-radius: 8px;
        background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
        color: #10202d;
        text-decoration: none;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    }

    .mt-mobile-menu-grid a i {
        grid-row: 1 / span 2;
        display: grid;
        place-items: center;
        width: 38px;
        height: 38px;
        border-radius: 8px;
        background: #ecfdf5;
        color: #0f766e;
        font-size: 16px;
    }

    .mt-mobile-menu-grid a span {
        min-width: 0;
        color: #10202d;
        font-size: 15px;
        font-weight: 800;
        line-height: 1.25;
    }

    .mt-mobile-menu-grid a small {
        min-width: 0;
        margin-top: 3px;
        color: #64748b;
        font-size: 11.5px;
        font-weight: 600;
        line-height: 1.3;
    }

    .mt-mobile-menu-grid a.is-active {
        border-color: #14b8a6;
        background: linear-gradient(180deg, #ecfdf5 0%, #ffffff 100%);
        box-shadow: 0 12px 26px rgba(15, 118, 110, 0.16);
    }

    .mt-mobile-menu-grid a.is-active i {
        background: #0f766e;
        color: #fff;
    }

    .mt-page-banner-inner {
        padding-top: 30px;
        padding-bottom: 34px;
    }

    .mt-page-banner h1 {
        font-size: 28px;
    }
}

@media (max-width: 1120px) and (min-width: 901px) {
    .mt-topbar {
        gap: 14px;
    }

    .mt-brand {
        width: 230px;
        flex-basis: 230px;
    }

    .mt-nav a,
    .mt-account a {
        padding: 0 10px;
        font-size: 13px;
    }
}

@media (max-width: 560px) {
    .mt-topbar {
        padding-right: 16px;
        padding-left: 16px;
    }

    .mt-brand {
        width: 190px;
        max-width: calc(100vw - 78px);
        height: 46px;
    }

    .mt-nav a,
    .mt-account a {
        flex: 0 0 auto;
        height: 38px;
        padding: 0 10px;
        font-size: 13px;
    }

    .mt-page-banner-inner {
        padding: 24px 16px 28px;
    }

    .mt-page-banner h1 {
        font-size: 25px;
    }

    .mt-page-banner p {
        font-size: 14px;
    }

    .mt-wrapper:not(.mt-index-wrapper) #container {
        padding: 18px 14px 48px;
    }

    #container_title {
        padding: 22px 14px 10px;
        font-size: 21px;
    }
}

/* =========================================================
   전 페이지 공통 반응형 (로그인/회원가입/문의/검색/FAQ 등
   그누보드 기본 폼·표 클래스에 모두 적용)
   ========================================================= */
@media (max-width: 768px) {
    /* 그누보드 기본 본문 글자(0.75em=12px)가 모바일에서 너무 작아 가독성 보정 */
    body {
        font-size: 0.875em;
    }

    /* 넓은 데이터 표는 레이아웃을 깨지 않고 가로 스크롤 */
    .tbl_wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* 본문(사용자 작성)의 넓은 콘텐츠가 화면을 넘지 않도록 */
    #bo_v_con img,
    #bo_v_con video,
    #bo_v_con iframe,
    #bo_v_con table {
        max-width: 100% !important;
        height: auto;
    }

    #bo_v_con {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* 입력 요소가 화면을 넘지 않도록 */
    .frm_input,
    input[type="text"],
    input[type="password"],
    input[type="email"],
    input[type="number"],
    input[type="tel"],
    select,
    textarea {
        max-width: 100%;
    }

    /* 폼 테이블(글쓰기/로그인/회원가입/1:1문의 등)을 세로 스택 */
    .tbl_frm01 table,
    .tbl_frm01 tbody,
    .tbl_frm01 tr {
        display: block;
        width: 100%;
    }

    .tbl_frm01 th,
    .tbl_frm01 td {
        display: block;
        width: 100% !important;
        border: 0;
        padding: 6px 0;
    }

    .tbl_frm01 th {
        background: transparent;
        text-align: left;
        font-weight: bold;
    }

    /* 페이징 가운데 정렬 + 줄바꿈 */
    .pg_wrap {
        float: none;
        display: block;
        text-align: center;
    }

    .pg {
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* 확인/취소 버튼 영역 */
    .btn_confirm {
        text-align: center;
    }

    .btn_confirm .btn_submit,
    .btn_confirm .btn_cancel {
        margin: 4px 2px;
    }

    /* 패밀리 사이트: 라벨을 윗줄로 */
    .mt-family-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 16px;
    }

    .mt-family-viewport {
        width: 100%;
    }

    /* 공지 티커 */
    .mt-ticker-inner {
        gap: 10px;
        padding: 0 14px;
        height: 46px;
    }

    .mt-ticker-viewport,
    .mt-ticker-viewport .mt-ticker-list li,
    .mt-ticker-list li a {
        height: 46px;
    }

    .mt-ticker-tag {
        height: 26px;
        padding: 0 9px;
        font-size: 12px;
    }

    .mt-ticker-text {
        font-size: 13.5px;
    }

    .mt-scroll-top {
        display: grid;
        right: max(14px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
    }
}
