/* DBP Lite module: hd01 */
.dbp-hd01 {
    width: 100%;
    background: var(--dbp-surface, #ffffff);
    border-bottom: 1px solid var(--dbp-border, #e7edf5);
}

.dbp-hd01__inner {
    max-width: 1600px;
    min-height: 68px;
    margin: 0 auto;
    padding: 0 14px;
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr) 340px 44px;
    align-items: center;
    gap: 14px;
}

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

.dbp-hd01__mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--dbp-primary, #1f6feb);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

.dbp-hd01__name {
    font-size: 20px;
    font-weight: 900;
    color: var(--dbp-text, #172033);
}

.dbp-hd01__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-width: 0;
}

.dbp-hd01__nav a {
    font-size: 14px;
    font-weight: 700;
    color: var(--dbp-text-muted, #526277);
    text-decoration: none;
    white-space: nowrap;
}

.dbp-hd01__nav a:hover {
    color: var(--dbp-primary, #1f6feb);
}

.dbp-hd01__search input {
    width: 100%;
    height: 38px;
    border: 1px solid var(--dbp-border, #dfe8f3);
    border-radius: 9px;
    padding: 0 14px;
    font-size: 14px;
    outline: none;
    background: var(--dbp-bg-soft, #f8fbff);
    color: var(--dbp-text, #172033);
}

.dbp-hd01__menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--dbp-border, #dfe8f3);
    border-radius: 9px;
    background: #fff;
    color: var(--dbp-text, #172033);
    font-size: 20px;
    cursor: pointer;
}

@media (max-width: 1100px) {
    .dbp-hd01__inner {
        grid-template-columns: 180px minmax(0, 1fr) 44px;
    }

    .dbp-hd01__search {
        display: none;
    }
}

@media (max-width: 768px) {
    .dbp-hd01__inner {
        grid-template-columns: 1fr 44px;
        min-height: 58px;
    }

    .dbp-hd01__nav {
        display: none;
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0;
        border-top: 1px solid var(--dbp-border, #e7edf5);
    }

    .dbp-hd01__nav a {
        padding: 12px 4px;
    }

    .dbp-hd01__menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .dbp-hd01.is-open .dbp-hd01__nav {
        display: flex;
    }
}