/* Shared desktop header for remaining templates */
.pt-pc-header {
    display: none;
}

@media (min-width: 768px) {
    body {
        padding-top: 76px;
    }

    .pt-pc-header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: #fff;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .pt-pc-header-inner {
        max-width: 960px;
        height: 64px;
        margin: 0 auto;
        padding: 0 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .pt-pc-logo {
        font-size: 24px;
        font-weight: 700;
        line-height: 1;
    }

    .pt-pc-menu {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .pt-pc-menu-item {
        font-size: 15px;
        color: #333;
        padding: 8px 12px;
        border-radius: 6px;
        transition: background-color .2s ease, color .2s ease;
    }

    .pt-pc-menu-item:visited {
        color: #333;
    }

    .pt-pc-menu-item:hover {
        color: #f55;
        background: #fff1f1;
    }

    .pt-mobile-header {
        display: none !important;
    }

    /* PC fixes for pages using mobile search block */
    .searchForm {
        max-width: 960px;
        margin: 0 auto 12px;
    }

    .searchForm .pt-search {
        padding: 12px 16px;
    }

    .searchForm .pt-search-box {
        width: 100% !important;
        height: 38px !important;
        border-radius: 6px;
        padding-left: 12px !important;
    }

    .searchForm .pt-search .pt-search-icon {
        width: 20px;
        height: 20px;
    }

    .searchForm .pt-recall {
        min-width: 42px;
        margin-left: 12px;
        font-size: 14px !important;
        text-align: right;
    }
}
