.celito-job-post-widget {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 30px;
    font-feature-settings: 'kern' 1, 'liga' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.job-filters-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.job-filters {
    display: flex;
    gap: 20px;
    align-items: center;
}

.job-sorting {
    display: flex;
    align-items: center;
}

.job-type-filter,
.job-location-filter,
.job-sort {
    padding: 10px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    background: #ffffff;
    color: #374151;
    transition: all 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.job-type-filter:focus,
.job-location-filter:focus,
.job-sort:focus {
    outline: none;
    border-color: #1B35B5;
    box-shadow: 0 0 0 3px rgba(27, 53, 181, 0.1);
    background: #fefefe;
}

.job-type-filter:hover,
.job-location-filter:hover,
.job-sort:hover {
    border-color: #d1d5db;
    background: #fafafa;
}

.job-location-filter {
    min-width: 220px;
}

.job-location-filter::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.job-posts-grid {
    display: grid;
    gap: 25px;
}

.job-posts-grid.columns-1 {
    grid-template-columns: 1fr;
}

.job-posts-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.job-posts-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.celito-job-post-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    cursor: pointer;
    overflow: hidden;
}

.celito-job-post-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #1B35B5 0%, #122580 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.celito-job-post-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.06);
    border-color: #e5e7eb;
    background-color: #f1f5fa;
}

.celito-job-post-box:hover::before {
    transform: scaleY(1);
}

.job-header {
    margin-bottom: 5px;
}

.job-title {
    color: #111827;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.5;
    letter-spacing: -0.025em;
    transition: all 0.3s ease;
}

.celito-job-post-box:hover .job-title {
    color: #1B35B5;
    text-decoration: underline;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f9fafb;
}

.job-location,
.job-type {
    display: inline-flex;
    align-items: center;
    color: #4b5563;
    font-size: 13px;
    font-weight: 500;
    background: none;
    padding: 0;
    border: none;
}

.job-icon {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    opacity: 0.7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.job-icon svg {
    width: 100%;
    height: 100%;
    fill: #6b7280;
}

.job-icon.location-icon::before {
    content: "";
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b7280'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.job-icon.type-icon::before {
    content: "";
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b7280'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z'/%3E%3Cpath d='M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67V7z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.job-actions {
    margin-top: 0;
    display: flex;
    justify-content: flex-start;
}

.apply-now-btn {
    background: #ffffff;
    color: #1B35B5;
    font-weight: 700;
    font-size: 13px;
    padding: 5px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #1B35B5;
    text-transform: none;
    letter-spacing: normal;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none !important;
}

.apply-now-btn::after {
    content: "";
    width: 12px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12' fill='%231B35B5'%3E%3Cpath d='M10 0l1.41 1.41L7.83 5H16v2H7.83l3.58 3.59L10 12l-6-6 6-6z' transform='rotate(180 8 6)'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.apply-now-btn:hover {
    background: #1B35B5;
    color: #ffffff;
    text-decoration: none;
    transform: none;
    box-shadow: none;
    border-color: #1B35B5;
}

.apply-now-btn:hover::after {
    transform: translateX(2px);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12' fill='%23ffffff'%3E%3Cpath d='M10 0l1.41 1.41L7.83 5H16v2H7.83l3.58 3.59L10 12l-6-6 6-6z' transform='rotate(180 8 6)'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .job-filters-container {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
        padding: 20px;
    }
    
    .job-filters {
        flex-direction: column;
        gap: 12px;
    }
    
    .job-type-filter,
    .job-location-filter,
    .job-sort {
        width: 100%;
        padding: 12px 16px;
    }
    
    .job-posts-grid.columns-2,
    .job-posts-grid.columns-3 {
        grid-template-columns: 1fr;
    }
    
    .celito-job-post-box {
        padding: 20px;
    }
    
    .job-title {
        font-size: 20px;
    }
    
    .job-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .job-actions {
        justify-content: flex-start;
        margin-top: 0;
    }
    
    .apply-now-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .job-filters-container {
        padding: 18px;
        margin-bottom: 25px;
    }
    
    .job-location-filter {
        min-width: auto;
        width: 100%;
    }
    
    .job-type-filter,
    .job-location-filter,
    .job-sort {
        font-size: 14px;
        padding: 11px 14px;
    }
    
    .celito-job-post-box {
        padding: 18px;
        border-radius: 10px;
    }
    
    .job-title {
        font-size: 16px;
    }
    
    .apply-now-btn {
        padding: 7px 14px;
        font-size: 12px;
    }
}

/* Hide metadata on single job post pages */
.single-job_post .entry-meta,
.single-job_post .post-meta,
.single-job_post .entry-header .posted-on,
.single-job_post .entry-header .byline,
.single-job_post .entry-header .cat-links,
.single-job_post .entry-header .tags-links,
.single-job_post .entry-header .comments-link,
.single-job_post .entry-footer,
.single-job_post .post-navigation,
.single-job_post .author-info,
.single-job_post .entry-date,
.single-job_post .updated,
.single-job_post .published {
    display: none !important;
}

/* Common theme meta selectors */
.single-job_post .meta-wrapper,
.single-job_post .entry-meta-wrapper,
.single-job_post .post-meta-wrapper,
.single-job_post .article-meta,
.single-job_post .post-details,
.single-job_post .entry-details {
    display: none !important;
}

/* Popular theme-specific selectors */
.single-job_post .elementor-post-info,
.single-job_post .ast-single-post-meta,
.single-job_post .generate-post-meta,
.single-job_post .oceanwp-post-meta,
.single-job_post .kadence-post-meta {
    display: none !important;
}

/* Single Job Post Page Styling */
.single-job_post .go-back-btn {
    background: #f8f9fa;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 35px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none !important;
}

.single-job_post .go-back-btn:hover {
    background: #1B35B5;
    color: #ffffff;
    border-color: #1B35B5;
}

.single-job_post .entry-header {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    position: relative;
    overflow: hidden;
    display: none !important;
}

.single-job_post .entry-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #1B35B5 0%, #122580 100%);
}

.single-job_post .entry-title,
.single-job_post .page-title,
.single-job_post h1.entry-title {
    color: #111827 !important;
    font-size: 28px !important;
    font-weight: 600 !important;
    margin: 0 0 20px 0 !important;
    line-height: 1.4 !important;
    letter-spacing: -0.025em !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
}

/* Inline Job Info */
.single-job_post .job-info-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.single-job_post .job-details-left {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    align-items: center;
}

.single-job_post .job-detail-item {
    display: inline-flex;
    align-items: center;
    color: #4b5563;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.single-job_post .job-detail-icon {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    opacity: 0.7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.single-job_post .job-detail-icon.location-icon::before {
    content: "";
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b7280'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.single-job_post .job-detail-icon.type-icon::before {
    content: "";
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b7280'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z'/%3E%3Cpath d='M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67V7z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.single-job_post .job-apply-inline {
    margin-top: 0;
    display: flex;
    justify-content: flex-start;
}

.single-job_post .job-apply-bottom {
    display: flex;
    justify-content: flex-start;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.single-job_post .job-apply-btn {
    background: #ffffff;
    color: #1B35B5;
    font-weight: 700;
    font-size: 13px;
    padding: 5px 16px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    border: 1px solid #1B35B5;
    text-transform: none;
    letter-spacing: normal;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.job_post {
    background-color: transparent !important;
}

.single-job_post .job-apply-btn::after {
    content: "";
    width: 12px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12' fill='%231B35B5'%3E%3Cpath d='M10 0l1.41 1.41L7.83 5H16v2H7.83l3.58 3.59L10 12l-6-6 6-6z' transform='rotate(180 8 6)'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.single-job_post .job-apply-btn:hover {
    background: #1B35B5;
    color: #ffffff;
    text-decoration: none !important;
    border-color: #1B35B5;
}

.single-job_post .job-apply-btn:hover::after {
    transform: translateX(2px);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12' fill='%23ffffff'%3E%3Cpath d='M10 0l1.41 1.41L7.83 5H16v2H7.83l3.58 3.59L10 12l-6-6 6-6z' transform='rotate(180 8 6)'/%3E%3C/svg%3E");
}

/* Content Area */
.single-job_post .entry-content,
.single-job_post .post-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #374151;
}

.single-job_post .entry-content h2,
.single-job_post .entry-content h3,
.single-job_post .entry-content h4 {
    color: #111827;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.single-job_post .entry-content p {
    margin-bottom: 16px;
    color: #374151;
}

.single-job_post .entry-content ul,
.single-job_post .entry-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.single-job_post .entry-content li {
    margin-bottom: 8px;
    color: #374151;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .single-job_post .entry-header,
    .single-job_post .job-details-section,
    .single-job_post .entry-content {
        padding: 24px 20px;
    }
    

    
    .single-job_post .entry-title,
    .single-job_post h1.entry-title {
        font-size: 24px !important;
    }
    
    .single-job_post .job-info-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .single-job_post .job-apply-inline .job-apply-btn,
    .single-job_post .job-apply-bottom .job-apply-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .single-job_post .job-apply-inline {
        justify-content: center;
    }
}
