/**
 * WPIP Frontend Styles
 * Modern Job Board Design
 */

/* ===== Reset & Variables ===== */
:root {
    --wpip-primary: #4F6AF5;
    --wpip-primary-dark: #3D56D6;
    --wpip-primary-gradient: linear-gradient(145deg, #5B7BF7 0%, #4361EE 50%, #3A56D4 100%);
    --wpip-text: #1F2937;
    --wpip-text-light: #6B7280;
    --wpip-text-muted: #9CA3AF;
    --wpip-bg: #F3F4F6;
    --wpip-bg-light: #F9FAFB;
    --wpip-white: #FFFFFF;
    --wpip-border: #E5E7EB;
    --wpip-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --wpip-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --wpip-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --wpip-radius: 16px;
    --wpip-radius-sm: 10px;
}

/* ===== Base Container Override ===== */
.wpip-homepage,
.wpip-listings-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--wpip-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ===== TWENTY TWENTY-ONE FULL WIDTH FIX ===== */
/* Override tema container kısıtlamalarını */
body.page .site-main > article > .entry-content,
body.page .entry-content,
.entry-content {
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Ana site wrapper'ı da full width yap */
body.page .site-main,
body.page article.page {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Header spacing fix */
body.page .entry-header {
    display: none; /* Sayfa başlığını gizle, shortcode içinde var */
}

/* Full width override for Twenty Twenty-One */
.wpip-homepage {
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    max-width: none !important;
    overflow-x: hidden;
}

/* Entry content içindeki homepage için ekstra fix */
.entry-content .wpip-homepage,
.entry-content > .wpip-homepage {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    max-width: none !important;
    left: auto;
    right: auto;
}

/* ===== HERO SECTION ===== */
.wpip-hero {
    background: var(--wpip-primary-gradient);
    padding: 100px 24px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100% !important;
    box-sizing: border-box;
}

/* Decorative background pattern */
.wpip-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
    pointer-events: none;
}

.wpip-hero-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.wpip-hero-title {
    color: var(--wpip-white);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin: 0 0 24px 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.wpip-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 400;
    margin: 0 0 48px 0;
    line-height: 1.6;
}

/* ===== SEARCH FORM ===== */
.wpip-search-form {
    display: flex;
    max-width: 580px;
    margin: 0 auto;
    background: var(--wpip-white);
    border-radius: 60px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.2);
}

.wpip-search-input {
    flex: 1;
    border: none !important;
    padding: 20px 28px !important;
    font-size: 1.05rem !important;
    outline: none !important;
    background: transparent !important;
    color: var(--wpip-text) !important;
    box-shadow: none !important;
}

.wpip-search-input::placeholder {
    color: var(--wpip-text-muted) !important;
}

.wpip-search-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.wpip-search-btn {
    background: var(--wpip-text) !important;
    color: var(--wpip-white) !important;
    border: none !important;
    padding: 20px 28px !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 0 56px 56px 0 !important;
}

.wpip-search-btn:hover {
    background: var(--wpip-primary) !important;
    transform: scale(1.02);
}

.wpip-search-btn svg {
    width: 22px;
    height: 22px;
}

/* ===== JOBS SECTION ===== */
.wpip-jobs-section {
    padding: 80px 24px 60px;
    max-width: 1280px;
    margin: 0 auto;
}

.wpip-section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--wpip-text);
    margin: 0 0 48px 0;
    letter-spacing: -0.01em;
}

/* ===== JOBS GRID ===== */
.wpip-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .wpip-jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .wpip-jobs-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== JOB CARD ===== */
.wpip-job-card {
    background: var(--wpip-white);
    border: 1px solid var(--wpip-border);
    border-radius: var(--wpip-radius);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.wpip-job-card:hover {
    box-shadow: var(--wpip-shadow-lg);
    border-color: transparent;
    transform: translateY(-4px);
}

.wpip-job-card-link {
    display: block;
    padding: 28px;
    text-decoration: none !important;
    color: inherit !important;
    background: transparent !important;
}

.wpip-job-card-link:hover,
.wpip-job-card-link:focus,
.wpip-job-card-link:visited {
    color: inherit !important;
    background: transparent !important;
    text-decoration: none !important;
}

.wpip-job-company {
    display: inline-block;
    color: var(--wpip-primary) !important;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.wpip-job-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--wpip-text) !important;
    margin: 0 0 14px 0;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.wpip-job-card:hover .wpip-job-title {
    color: var(--wpip-primary) !important;
}

.wpip-job-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--wpip-text-light) !important;
    font-size: 0.9rem;
}

.wpip-job-location svg {
    flex-shrink: 0;
    opacity: 0.6;
}

/* ===== VIEW ALL BUTTON ===== */
.wpip-view-all-wrap {
    text-align: center;
    margin-top: 48px;
}

.wpip-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.wpip-btn-primary {
    background: var(--wpip-primary) !important;
    color: var(--wpip-white) !important;
    box-shadow: 0 4px 14px 0 rgba(79, 106, 245, 0.35);
}

.wpip-btn-primary:hover,
.wpip-btn-primary:focus {
    background: var(--wpip-primary-dark) !important;
    color: var(--wpip-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px 0 rgba(79, 106, 245, 0.4);
}

/* ===== FEATURES SECTION ===== */
.wpip-features-section {
    background: var(--wpip-bg-light);
    padding: 90px 24px;
}

.wpip-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .wpip-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.wpip-feature {
    text-align: center;
    padding: 24px;
}

.wpip-feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.wpip-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wpip-text);
    margin: 0 0 14px 0;
}

.wpip-feature-desc {
    color: var(--wpip-text-light);
    font-size: 1rem;
    margin: 0;
    line-height: 1.7;
}

/* ===== LISTINGS PAGE ===== */

/* Full width override for listings page */
.wpip-listings-page {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding: 0;
    overflow-x: hidden;
}

/* Listings Header */
.wpip-listings-header {
    background: var(--wpip-primary-gradient);
    padding: 70px 24px 80px;
    text-align: center;
    position: relative;
}

.wpip-listings-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
    pointer-events: none;
}

.wpip-listings-title {
    color: white !important;
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.wpip-listings-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Listings Content Area */
.wpip-listings-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    background: var(--wpip-bg-light);
}

.wpip-listings-page .wpip-jobs-grid {
    max-width: 1280px;
    margin: 0 auto;
}

/* Listings Info Bar */
.wpip-listings-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto 30px;
    padding: 16px 20px;
    background: white;
    border-radius: var(--wpip-radius-sm);
    box-shadow: var(--wpip-shadow-sm);
    border: 1px solid var(--wpip-border);
}

.wpip-job-count {
    font-weight: 600;
    color: var(--wpip-text);
    font-size: 1rem;
}

.wpip-page-info {
    color: var(--wpip-text-light);
    font-size: 0.9rem;
}

/* Listings pagination centered */
.wpip-listings-content .wpip-pagination {
    margin-top: 50px;
}

/* ===== PAGINATION ===== */
.wpip-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.wpip-pagination a,
.wpip-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: var(--wpip-radius-sm);
    text-decoration: none !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.wpip-pagination a {
    background: var(--wpip-white) !important;
    color: var(--wpip-text) !important;
    border: 1px solid var(--wpip-border);
}

.wpip-pagination a:hover {
    background: var(--wpip-primary) !important;
    color: var(--wpip-white) !important;
    border-color: var(--wpip-primary);
    transform: translateY(-1px);
}

.wpip-pagination .current,
.wpip-pagination span.current {
    background: var(--wpip-primary) !important;
    color: var(--wpip-white) !important;
    border: none;
}

.wpip-pagination .prev,
.wpip-pagination .next {
    padding: 0 20px;
}

/* ===== NO JOBS MESSAGE ===== */
.wpip-no-jobs {
    text-align: center;
    color: var(--wpip-text-light);
    padding: 80px 24px;
    font-size: 1.15rem;
    grid-column: 1 / -1;
}

/* ===== INLINE SEARCH ===== */
.wpip-search-inline {
    max-width: 500px;
    margin: 30px auto;
    border-radius: var(--wpip-radius);
    box-shadow: var(--wpip-shadow);
    border: 1px solid var(--wpip-border);
}

.wpip-search-inline .wpip-search-btn {
    border-radius: 0 var(--wpip-radius) var(--wpip-radius) 0 !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .wpip-hero {
        padding: 70px 20px 90px;
    }
    
    .wpip-search-form {
        flex-direction: column;
        border-radius: var(--wpip-radius);
    }
    
    .wpip-search-input {
        text-align: center;
        border-bottom: 1px solid var(--wpip-border) !important;
    }
    
    .wpip-search-btn {
        border-radius: 0 0 var(--wpip-radius) var(--wpip-radius) !important;
        padding: 18px !important;
    }
    
    .wpip-jobs-section {
        padding: 50px 16px 40px;
    }
    
    .wpip-features-section {
        padding: 60px 16px;
    }
}

/* ===== DARK LINK FIX ===== */
.wpip-job-card a,
.wpip-job-card a:link,
.wpip-job-card a:visited,
.wpip-job-card a:hover,
.wpip-job-card a:active,
.wpip-job-card a:focus {
    color: inherit !important;
    text-decoration: none !important;
    background-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Twenty Twenty-One specific overrides */
.is-link-style a.wpip-job-card-link,
body .wpip-job-card-link,
.entry-content .wpip-job-card-link {
    color: inherit !important;
    text-decoration: none !important;
    background: transparent !important;
}

.entry-content .wpip-btn-primary,
.entry-content .wpip-btn-primary:hover {
    color: var(--wpip-white) !important;
}

/* ============================================== */
/* ===== JOB PAGE STYLES ===== */
/* ============================================== */

/* ====== TWENTY TWENTY-ONE AGRESSIVE OVERRIDE ====== */
/* Tüm tema kısıtlamalarını kaldır */
body.wpip-job-page,
body.wpip-job-page .site,
body.wpip-job-page .site-content,
body.wpip-job-page .content-area,
body.wpip-job-page .site-main,
body.wpip-job-page .site-main > article,
body.wpip-job-page .site-main > article.page,
body.wpip-job-page .entry-content,
body.wpip-job-page article.page > .entry-content,
body.wpip-job-page .entry-content > * {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

body.wpip-job-page .entry-header {
    display: none !important;
}

/* Footer spacing fix */
body.wpip-job-page .site-footer {
    margin-top: 0 !important;
}

/* ====== JOB PAGE WRAPPER ====== */
.wpip-job-page-wrap {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--wpip-text);
    line-height: 1.7;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

/* ====== JOB HEADER - FULL WIDTH ====== */
.wpip-job-header {
    background: var(--wpip-primary-gradient);
    padding: 70px 24px 80px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    position: relative;
}

.wpip-job-header-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.wpip-job-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.wpip-job-page-title {
    color: white !important;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 24px 0;
    line-height: 1.25;
}

.wpip-job-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.wpip-job-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.wpip-job-meta-item svg {
    opacity: 0.8;
}

.wpip-job-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.wpip-btn-lg {
    padding: 18px 40px !important;
    font-size: 1.05rem !important;
}

.wpip-btn-outline {
    background: transparent !important;
    color: var(--wpip-primary) !important;
    border: 2px solid var(--wpip-primary) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wpip-btn-outline:hover {
    background: var(--wpip-primary) !important;
    color: white !important;
}

/* Content Layout - Full Width Container */
.wpip-job-content-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 24px 70px;
    background: white;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .wpip-job-content-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .wpip-job-sidebar {
        order: -1;
    }
}

/* Job Description */
.wpip-job-main {
    min-width: 0;
}

.wpip-job-description {
    background: white;
    border-radius: var(--wpip-radius);
    padding: 40px;
    box-shadow: var(--wpip-shadow);
    border: 1px solid var(--wpip-border);
}

.wpip-job-description h2,
.wpip-job-description h3,
.wpip-job-description h4 {
    color: var(--wpip-text);
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.wpip-job-description h2:first-child,
.wpip-job-description h3:first-child {
    margin-top: 0;
}

/* Posted Date */
.wpip-posted-date {
    color: var(--wpip-text-light);
    font-size: 0.9rem;
    margin: 0 0 24px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--wpip-border);
}

.wpip-job-description h2 {
    font-size: 1.5rem;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--wpip-primary);
}

.wpip-job-description h3 {
    font-size: 1.25rem;
}

.wpip-job-description h4 {
    font-size: 1.1rem;
    color: var(--wpip-primary);
}

.wpip-job-description ul {
    margin: 16px 0;
    padding-left: 0;
    list-style: none;
}

.wpip-job-description ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.wpip-job-description ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--wpip-primary);
    border-radius: 50%;
}

.wpip-job-description p {
    margin-bottom: 16px;
    color: var(--wpip-text);
}

.wpip-job-description strong {
    color: var(--wpip-text);
    font-weight: 600;
}

.wpip-job-description hr {
    border: none;
    border-top: 1px solid var(--wpip-border);
    margin: 32px 0;
}

/* Content Apply CTA */
.wpip-content-apply-cta {
    margin-top: 48px;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--wpip-radius);
    text-align: center;
}

.wpip-content-apply-cta p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 1.15rem;
    margin: 0 0 20px 0;
}

.wpip-content-apply-cta .wpip-btn {
    background: white !important;
    color: #4338ca !important;
}

.wpip-content-apply-cta .wpip-btn:hover {
    background: #f0f0ff !important;
    color: #3730a3 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Sidebar */
.wpip-job-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wpip-sidebar-card {
    background: white;
    border-radius: var(--wpip-radius);
    padding: 28px;
    box-shadow: var(--wpip-shadow);
    border: 1px solid var(--wpip-border);
}

.wpip-sidebar-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--wpip-text);
    margin: 0 0 20px 0;
}

.wpip-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wpip-summary-list li {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--wpip-border);
}

.wpip-summary-list li:last-child {
    border-bottom: none;
}

.wpip-summary-list .label {
    color: var(--wpip-text-light);
    font-size: 0.9rem;
}

.wpip-summary-list .value {
    color: var(--wpip-text);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: right;
}

.wpip-apply-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    text-align: center;
}

.wpip-apply-card h3 {
    color: white !important;
}

.wpip-apply-card p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}

.wpip-btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Related Section - Full Width Background */
.wpip-related-section {
    width: 100% !important;
    max-width: 100% !important;
    padding: 70px 24px 90px;
    background: var(--wpip-bg-light);
    box-sizing: border-box;
}

.wpip-related-section h2 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 40px;
    color: var(--wpip-text);
    max-width: 1200px;
}

.wpip-related-section .wpip-jobs-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.wpip-related-section .wpip-view-all-wrap {
    max-width: 1200px;
    margin: 40px auto 0;
}

.wpip-jobs-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .wpip-jobs-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ===== TWENTY TWENTY-ONE PAGE TEMPLATE FIX ===== */
/* Sayfa tam genişlik olsun */
body.page-template-default .site-main {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body.page-template-default .site-main > article {
    max-width: 100% !important;
}

body.page-template-default .site-main > article > .entry-content {
    max-width: 100% !important;
    width: 100% !important;
}

/* Remove default page padding */
body.page .site-main > article.page {
    padding: 0 !important;
}

/* Hide default page title when using shortcode */
body.page .entry-header.has-text-align-center {
    display: none;
}

/* Content area fix */
.post-template-default .entry-content > *,
.page-template-default .entry-content > * {
    max-width: none;
}

/* Alignfull support */
.wpip-homepage,
.alignfull {
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    max-width: 100vw !important;
    width: 100vw !important;
}

/* ===== JOB PAGE MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .wpip-job-header {
        padding: 50px 20px 60px;
    }
    
    .wpip-job-page-title {
        font-size: 1.5rem !important;
    }
    
    .wpip-job-meta {
        gap: 12px;
    }
    
    .wpip-job-meta-item {
        font-size: 0.9rem;
    }
    
    .wpip-job-content-wrap {
        padding: 30px 16px 40px;
    }
    
    .wpip-job-description {
        padding: 24px;
    }
    
    .wpip-sidebar-card {
        padding: 20px;
    }
    
    .wpip-related-section {
        padding: 50px 16px 60px;
    }
}
