@charset "utf-8";
/* CSS Document */
/* WDHQ header + logo */
.wdhq-header {
    background: #ffffff;
    border-bottom: 1px solid #dbe1ea;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    padding: 10px 16px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.wdhq-header-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.wdhq-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.wdhq-logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2a76ff, #1462e6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(20,98,230,0.35);
}

.wdhq-logo-mark svg {
    display: block;
}

.wdhq-logo-text-main {
    font-size: 16px;
    font-weight: 700;
    color: #1d2b45;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wdhq-logo-text-sub {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6b7485;
}

.wdhq-logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.wdhq-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.wdhq-nav a {
    text-decoration: none;
    color: #6b7485;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid transparent;
}

.wdhq-nav a:hover {
    color: #2a76ff;
    border-color: rgba(42,118,255,0.3);
    background: rgba(42,118,255,0.04);
}

.wdhq-nav a.wdhq-nav-active {
    color: #ffffff;
    background: linear-gradient(135deg, #2a76ff, #1462e6);
    border-color: transparent;
}

@media (max-width: 640px) {
    .wdhq-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .wdhq-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}


