/* Job Detail Pages — matches v2 black/yellow theme */

body {
    background: #0a0a0f;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* Nav */
.job-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px clamp(24px, 4vw, 48px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.job-nav-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.job-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    padding: 10px 24px;
    border: 2.5px solid #ffffff;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.job-nav-back:hover {
    background: #FFD600;
    color: #000;
    border-color: #FFD600;
}

/* Page Content */
.job-detail-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 140px 24px 60px;
}

.job-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFD600;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 40px;
    transition: opacity 0.3s;
}

.job-back-link:hover { opacity: 0.7; }

.job-detail-page h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.job-detail-page h1 i {
    color: #FFD600;
    margin-right: 12px;
}

/* Meta Tags */
.job-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.job-meta .meta-tag {
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    background: rgba(255, 214, 0, 0.1);
    color: #FFD600;
}

.job-meta .meta-location {
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

/* Sections */
.job-section {
    margin-bottom: 48px;
}

.job-section h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #FFD600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-section h2 i {
    color: #FFD600;
}

.job-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-section ul li {
    position: relative;
    padding: 14px 0 14px 28px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.65;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.job-section ul li:last-child { border-bottom: none; }

.job-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 10px;
    height: 10px;
    background: #FFD600;
    border-radius: 50%;
}

/* Contact Bar — two-column layout */
.job-contact {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 214, 0, 0.05);
    border: 2px solid rgba(255, 214, 0, 0.15);
    border-radius: 20px;
    margin-top: 56px;
    overflow: hidden;
}

.job-contact-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    text-align: center;
}

.job-contact-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
    align-self: stretch;
}

.job-contact h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.job-contact .email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: #FFD600;
    transition: opacity 0.3s;
}

.job-contact .email-link:hover { opacity: 0.8; }

.job-contact .hint {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 12px;
}

.job-contact .qr-img {
    width: 140px;
    height: 140px;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 14px;
}

.job-contact .wechat-num {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFD600;
    font-size: 1.1rem;
    font-weight: 700;
}

.job-contact .wechat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .job-contact { flex-direction: column; }
    .job-contact-divider { width: 80%; height: 1px; align-self: center; }
}

/* Footer */
.job-footer {
    text-align: center;
    padding: 40px 24px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.job-footer p {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.job-footer a {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .job-detail-page h1 { font-size: 1.8rem; }
    .job-section h2 { font-size: 1.2rem; }
    .job-section ul li { font-size: 0.95rem; }
}
