/*
Theme Name: Jobify Child
Theme URI: http://themeforest.net/item/jobify-wordpress-job-board-theme/5247604?ref=Astoundify
Template: jobify
Author: Astoundify
Author URI: http://themeforest.net/item/jobify-wordpress-job-board-theme/5247604?ref=Astoundify
Description: Everything you need to build a professional job board.
Tags: one-column,right-sidebar,custom-background,custom-header,custom-menu,translation-ready,full-width-template,featured-images,flexible-header
Version: 4.3.1.1775721129
Updated: 2026-04-09 09:52:09
*/

/* Hide map section completely on all pages 
#gjm-map-wrapper-job_map_listing,
.gjm-map-wrapper,
[id^="gjm-map-wrapper"] {
    display: none !important;
}
*/

/* ===== CUSTOM SINGLE JOB LISTING ===== */

.custom-single-job .job-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.custom-single-job .company-logo img {
    max-height: 120px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.custom-single-job .job-title {
    font-size: 1.8rem;
    margin: 0 0 5px;
}

.custom-single-job .company-name {
    font-size: 1.1rem;
    margin: 0;
    color: #555;
    font-weight: 400;
}

.job-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px 30px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
}

.job-meta-grid div {
    font-size: 0.95rem;
    color: #444;
}

.job-meta-grid strong {
    color: #222;
    display: block;
    margin-bottom: 3px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deadline span {
    color: #e74c3c;
    font-weight: bold;
}

.custom-single-job .job-description {
    margin-bottom: 30px;
}

.custom-single-job .job-description h2 {
    font-size: 1.3rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.apply-section {
    text-align: center;
    margin: 40px 0;
}

.apply-section .application_button,
.apply-section a.button {
    padding: 16px 50px !important;
    font-size: 1.1rem !important;
    background: #27ae60 !important;
    color: white !important;
    border-radius: 6px !important;
    border: none !important;
    display: inline-block;
    text-decoration: none;
}

.company-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    border: 1px solid #e9ecef;
}

.company-details h3 {
    margin-top: 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.company-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.company-links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.company-links a:hover {
    background: #27ae60;
    color: white;
    border-color: #27ae60;
}

@media (max-width: 768px) {
    .custom-single-job .job-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .job-meta-grid {
        grid-template-columns: 1fr 1fr;
    }
    .company-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .job-meta-grid {
        grid-template-columns: 1fr;
    }
}

/* Job title smaller, company name bigger */
.single-job_listing h1 {
    font-size: 1.1rem !important;

}
.company-name {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    color: #333 !important;
}