.site-header {
    height: 68px;
    background: #ffffff;
    border-bottom: 1px solid #D6E4F0;
}

.site-header__inner {
    width: 100%;
    max-width: 1200px;
    min-height: 68px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-wordmark {
    color: #1F4E79;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
    text-decoration: none;
    white-space: nowrap;
}

.site-wordmark:hover {
    color: #2E75B6;
    text-decoration: none;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.site-nav a {
    color: #1F4E79;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.site-nav a:hover {
    color: #2E75B6;
    text-decoration: none;
}

.site-nav .site-nav__cta {
    padding: 10px 16px;
    color: #ffffff;
    background: #2E75B6;
    border-radius: 6px;
}

.site-nav .site-nav__cta:hover {
    color: #ffffff;
    background: #1F4E79;
}

@media (max-width: 820px) {
    .site-header,
    .site-header__inner {
        height: 60px;
        min-height: 60px;
    }

    .site-header__inner {
        padding: 0 16px;
        gap: 12px;
    }

    .site-nav {
        gap: 0;
    }

    .site-nav__secondary {
        display: none;
    }
}

@media (max-width: 360px) {
    .site-header__inner {
        padding: 0 12px;
        gap: 8px;
    }

    .site-wordmark {
        font-size: 0.88rem;
    }

    .site-nav .site-nav__cta {
        padding: 8px 10px;
        font-size: 0.78rem;
    }
}
