/* prosave.kr 포털 공통 상단 메뉴 */
:root {
    --bg: #0f1419;
    --surface: #1a2332;
    --surface2: #141c28;
    --border: #2d3a4f;
    --text: #e8edf4;
    --muted: #8b9cb3;
    --accent: #3d8bfd;
    --accent-hover: #2563c4;
    --danger: #f87171;
    --ok: #4ade80;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    font-family: "Pretendard Variable", Pretendard, -apple-system, system-ui, sans-serif;
    min-height: 100vh;
}

.portal-nav {
    background: #0a0e14;
    border-bottom: 1px solid var(--border);
    font-family: "Pretendard Variable", Pretendard, -apple-system, system-ui, sans-serif;
}
.portal-nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0.65rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}
.portal-nav-brand {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
    color: #e8edf4;
    text-decoration: none;
}
.portal-nav-brand:hover {
    color: #3d8bfd;
}
.portal-nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.15rem;
}
.portal-nav-link {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 550;
    color: #8b9cb3;
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.12s ease, background 0.12s ease;
}
.portal-nav-link:hover {
    color: #e8edf4;
    background: rgba(61, 139, 253, 0.1);
}
.portal-nav-link.is-active {
    color: #3d8bfd;
    background: rgba(61, 139, 253, 0.15);
}
