:root {
    --seekpro-blue: #2563eb;
    --seekpro-blue-dark: #1d4ed8;
    --seekpro-ink: #111827;
    --seekpro-muted: #718096;
    --seekpro-line: #e4eaf2;
    --seekpro-soft: #f8fafc;
    --seekpro-footer: #e2e8f0;
}

.seekpro-home {
    position: relative;
    left: 50%;
    right: 50%;
    min-height: 100vh;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 -50vw !important;
    color: var(--seekpro-ink);
    background: var(--seekpro-soft);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.seekpro-homepage {
    margin: 0;
    background: var(--wp--preset--color--base, #fff);
}

body.seekpro-homepage .wp-site-blocks {
    padding: 0 !important;
    overflow: visible !important;
}

body.seekpro-homepage .wp-site-blocks > header,
body.seekpro-homepage .wp-site-blocks > footer,
body.seekpro-homepage .wp-block-template-part,
body.seekpro-homepage .wp-block-post-title,
body.seekpro-homepage .entry-title {
    display: none !important;
}

body.seekpro-homepage main,
body.seekpro-homepage .wp-block-group,
body.seekpro-homepage .wp-block-post-content,
body.seekpro-homepage .entry-content,
body.seekpro-homepage .is-layout-constrained,
body.seekpro-homepage .is-layout-flow {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.seekpro-homepage .wp-block-post-content > * {
    max-width: none !important;
}

.seekpro-home * {
    box-sizing: border-box;
}

.seekpro-sitebar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    min-height: 68px;
    padding: 0 max(24px, calc((100vw - 1020px) / 2));
    border-bottom: 1px solid var(--seekpro-line);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 2px 10px rgba(15, 23, 42, .05);
}

.seekpro-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--seekpro-ink);
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

.seekpro-brand:hover {
    color: var(--seekpro-ink);
}

.seekpro-brand-logo {
    display: block;
    width: 154px;
    max-width: 100%;
    height: auto;
}

.seekpro-sitebar .seekpro-brand-logo {
    width: 142px;
}

.seekpro-brand-logo-footer {
    width: 150px;
}

.seekpro-brand-logo-auth {
    width: 170px;
}

.seekpro-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border-radius: 8px;
    color: #fff;
    background: var(--seekpro-blue);
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(37, 99, 235, .28);
}

.seekpro-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.seekpro-nav a,
.seekpro-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 7px 16px;
    border-radius: 10px;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.seekpro-nav a.is-active {
    color: var(--seekpro-blue);
    background: #eef4ff;
}

.seekpro-login {
    justify-self: end;
    min-height: 34px;
    color: #fff;
    background: var(--seekpro-blue);
    box-shadow: 0 8px 18px rgba(37, 99, 235, .25);
}

.seekpro-login:hover,
.seekpro-button:hover,
.seekpro-card-button:hover {
    color: #fff;
    background: var(--seekpro-blue-dark);
}

.seekpro-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 490px;
    padding: 72px 20px 90px;
    text-align: center;
    background: linear-gradient(180deg, #f3f7fd 0%, #fbfdff 74%, var(--seekpro-soft) 100%);
}

.seekpro-hero-inner {
    width: min(820px, 100%);
    margin: 0 auto;
}

.seekpro-hero h1 {
    max-width: 820px;
    margin: 0 auto 18px;
    color: #111827;
    font-size: clamp(42px, 5.6vw, 62px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: 0;
}

.seekpro-hero p {
    max-width: 650px;
    margin: 0 auto 34px;
    color: var(--seekpro-muted);
    font-size: 22px;
    line-height: 1.35;
}

.seekpro-home-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    width: min(560px, 100%);
    margin: 0 auto 32px;
    padding: 8px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .09);
}

.seekpro-home-search input {
    min-width: 0;
    min-height: 42px;
    border: 1px solid #dbe4ee;
    border-radius: 9px;
    padding: 0 20px;
    color: #111827;
    background: #fff;
    font: inherit;
}

.seekpro-home-search button,
.seekpro-button,
.seekpro-card-button,
.seekpro-form button,
.seekpro-inline-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 23px;
    border: 0;
    border-radius: 9px;
    color: #fff;
    background: var(--seekpro-blue);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.seekpro-browse-button {
    min-height: 39px;
    padding-inline: 24px;
    border-radius: 18px;
}

.seekpro-wrap,
.seekpro-section {
    max-width: 1020px;
    margin: 0 auto;
    padding: 32px 20px;
}

.seekpro-featured {
    padding-top: 56px;
    padding-bottom: 76px;
}

.seekpro-section-heading {
    margin: 0 auto 52px;
    text-align: center;
}

.seekpro-section-heading h2,
.seekpro-section h2 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
}

.seekpro-section-heading p {
    margin: 0;
    color: var(--seekpro-muted);
    font-size: 16px;
}

.seekpro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.seekpro-card,
.seekpro-panel,
.seekpro-empty,
.seekpro-notice {
    border: 1px solid var(--seekpro-line);
    border-radius: 8px;
    background: #fff;
}

.seekpro-card {
    display: flex;
    flex-direction: column;
    min-height: 310px;
    padding: 22px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}

.seekpro-card:hover {
    box-shadow: 0 16px 34px rgba(15, 23, 42, .10);
}

.seekpro-card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.seekpro-card-heading h3 {
    margin: 0;
    color: #111827;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
}

.seekpro-card-heading span {
    flex: 0 0 auto;
    padding: 5px 11px;
    border-radius: 999px;
    color: var(--seekpro-blue);
    background: #edf4ff;
    font-size: 12px;
    font-weight: 800;
}

.seekpro-company {
    margin: 14px 0;
    color: var(--seekpro-muted);
    font-size: 13px;
    font-weight: 700;
}

.seekpro-meta {
    display: grid;
    gap: 9px;
    margin: 0 0 16px;
    color: var(--seekpro-muted);
    font-size: 14px;
}

.seekpro-meta span {
    position: relative;
    padding-left: 24px;
}

.seekpro-meta span::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    color: #7c8aa0;
    text-align: center;
}

.seekpro-meta-location::before {
    content: "o";
}

.seekpro-meta-salary::before {
    content: "$";
}

.seekpro-meta-date::before {
    content: "#";
}

.seekpro-card > p:not(.seekpro-company) {
    margin: 0 0 20px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.55;
}

.seekpro-card-button {
    width: 100%;
    margin-top: auto;
    min-height: 36px;
    border-radius: 7px;
    font-size: 14px;
}

.seekpro-center {
    display: flex;
    justify-content: center;
    margin-top: 54px;
}

.seekpro-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 28px;
    border: 1px solid var(--seekpro-line);
    border-radius: 999px;
    color: #1f2937;
    background: #fff;
    font-weight: 700;
    text-decoration: none;
}

.seekpro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1020px;
    margin: 0 auto;
    padding: 56px 20px;
    border-top: 1px solid #eef2f7;
    background: #fff;
}

.seekpro-stats div {
    display: grid;
    gap: 5px;
    justify-items: center;
    text-align: center;
}

.seekpro-stats div + div {
    border-left: 1px solid #e5eaf1;
}

.seekpro-stats strong {
    color: var(--seekpro-blue);
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
}

.seekpro-stats span {
    color: #64748b;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.seekpro-footer {
    background: var(--seekpro-footer);
}

.seekpro-footer-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1.45fr 1fr;
    gap: 48px;
    max-width: 1020px;
    margin: 0 auto;
    padding: 46px 20px 34px;
}

.seekpro-footer h3 {
    margin: 0 0 18px;
    color: #111827;
    font-size: 14px;
    font-weight: 900;
}

.seekpro-footer p,
.seekpro-footer a {
    display: block;
    margin: 0 0 10px;
    color: #52616b;
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
}

.seekpro-footer .seekpro-brand {
    margin-bottom: 16px;
    color: #111827;
}

.seekpro-socials {
    display: flex;
    gap: 10px;
}

.seekpro-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    color: #334155;
    background: #cbd5e1;
    font-weight: 900;
}

.seekpro-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1020px;
    margin: 0 auto;
    padding: 22px 20px 34px;
    border-top: 1px solid #cbd5e1;
    color: #64748b;
    font-size: 13px;
}

.seekpro-footer-bottom a {
    display: inline-block;
    margin: 0 0 0 26px;
}

.seekpro-auth-page {
    display: flex;
    justify-content: center;
    padding: 56px 20px 80px;
}

.seekpro-auth-card {
    width: min(430px, 100%);
    padding: 32px;
    border: 1px solid var(--seekpro-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

.seekpro-auth-brand {
    margin-bottom: 22px;
}

.seekpro-auth-card h1 {
    margin: 0 0 8px;
    font-size: 32px;
    font-weight: 900;
}

.seekpro-auth-card > p {
    margin: 0 0 22px;
    color: var(--seekpro-muted);
}

.seekpro-auth-card .seekpro-button {
    width: 100%;
}

.seekpro-checkbox {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center;
    gap: 9px !important;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
}

.seekpro-checkbox input {
    width: auto !important;
}

.seekpro-auth-help {
    margin-top: 18px !important;
    text-align: center;
}

.seekpro-auth-help a {
    color: var(--seekpro-blue);
    font-weight: 700;
    text-decoration: none;
}

.seekpro-link {
    color: var(--seekpro-blue);
    font-weight: 700;
}

.seekpro-search {
    display: flex;
    gap: 10px;
    margin: 22px 0 26px;
}

.seekpro-search input {
    min-height: 44px;
    flex: 1;
}

.seekpro-form {
    display: grid;
    gap: 16px;
}

.seekpro-form label {
    display: grid;
    gap: 6px;
    font-weight: 700;
}

.seekpro-form input,
.seekpro-form select,
.seekpro-form textarea,
.seekpro-search input,
.seekpro-inline-form select {
    width: 100%;
    border: 1px solid #cbd5df;
    border-radius: 6px;
    padding: 10px 12px;
    background: #fff;
    color: #172026;
}

.seekpro-panel {
    padding: 20px;
    margin-bottom: 24px;
}

.seekpro-detail h1 {
    margin-bottom: 12px;
}

.seekpro-prose {
    margin: 20px 0;
}

.seekpro-table-wrap {
    overflow-x: auto;
    margin: 14px 0 30px;
    border: 1px solid #d9e2e7;
    border-radius: 8px;
}

.seekpro-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.seekpro-table th,
.seekpro-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #edf2f5;
    text-align: left;
    vertical-align: top;
}

.seekpro-table th {
    background: #f7fafb;
    color: #24313a;
}

.seekpro-inline-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.seekpro-empty,
.seekpro-notice {
    padding: 16px;
}

.seekpro-notice {
    margin: 14px 0;
    border-color: #86efac;
    background: #f0fdf4;
}

.seekpro-notice-error {
    border-color: #fecaca;
    background: #fef2f2;
}

.seekpro-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

@media (max-width: 920px) {
    .seekpro-grid,
    .seekpro-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .seekpro-sitebar {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 16px 20px;
    }

    .seekpro-login {
        justify-self: center;
    }

    .seekpro-hero {
        min-height: 0;
        padding: 56px 20px 64px;
    }

    .seekpro-hero p {
        font-size: 18px;
    }

    .seekpro-home-search,
    .seekpro-search,
    .seekpro-inline-form {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .seekpro-grid,
    .seekpro-stats,
    .seekpro-footer-grid,
    .seekpro-two-col {
        grid-template-columns: 1fr;
    }

    .seekpro-stats div + div {
        padding-top: 28px;
        border-top: 1px solid #e5eaf1;
        border-left: 0;
    }

    .seekpro-footer-bottom {
        flex-direction: column;
    }

    .seekpro-footer-bottom a {
        margin: 0 22px 0 0;
    }
}
