/* Footer smaller middle column */
.ast-builder-grid-row-3-equal .ast-builder-grid-row {
	grid-template-columns: 4fr 1fr 4fr;
}

/** Start Template Kit CSS: Professional Services (css/customizer.css) **/

.download-application-text {
	color: #fff;
	font-size: 24px;
  font-weight: 600;
	margin: 0;
	margin-bottom:10px;
  margin-right: 40px;
	display:inline-block;
	font-family: 'Poppins', sans-serif;
}
.download-application-btn {
	color: #fff;
	background: #26bdef;
	padding: 15px 40px;
	font-size:16px;
	font-family: 'Poppins', sans-serif;
	transition:.5s ease;
	display:inline-block;
}
.download-application-btn:hover{
	color: #26bdef;
	background: #fff;
}
.display-inline {
	display: inline-block;
}

@media (max-width: 1024px) {
	.responsive-column {
		width: 50% !important;
	}
}

@media (max-width: 600px) {
	.responsive-column {
		width: 100% !important;
	}
}

/** End Template Kit CSS: Professional Services (css/customizer.css) **/


/* WP Job Manager Single Page Customizations - Adjusted for Astra 1140px Boxed */

/* Overall single job container - Target Astra's article wrapper for isolation */
.ast-article-single .single-job_listing {
    max-width: 1140px; /* Match your boxed content width */
    margin: 0 auto; /* Center it within full-width page */
    padding: 30px;
    background: #ffffff; /* White bg for contrast */
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: inherit; /* Inherit site's font (likely Poppins from your kit) */
}

/* Job title - More specificity to avoid global title overrides */
.ast-article-single .single-job_listing .entry-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

/* Meta (location, type, etc.) - Flex for responsive stacking */
.ast-article-single .job_listing-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 5px;
}
.ast-article-single .job_listing-meta li {
    list-style: none;
    font-size: 1em;
    color: #666;
}

/* Company section */
.ast-article-single .company {
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}
.ast-article-single .company img { /* Logo */
    max-width: 150px;
    border-radius: 50%;
}

/* Description (Elementor-friendly) */
.ast-article-single .job_description {
    line-height: 1.6;
    color: #444;
}

/* Apply button - Tie to your kit's blue for branding */
.ast-article-single .application_button {
    background: #26bdef; /* Match your template kit's CTA color */
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: .5s ease; /* Match kit's transition */
}
.ast-article-single .application_button:hover {
    background: #005177; /* Darker hover for contrast */
    color: #fff;
}

/* Header Menu Fix: Add background for white text visibility */
.ast-header-break-point .ast-primary-menu-enabled .main-header-bar {
    background: #26bdef; /* Your kit's blue - or use rgba(0,0,0,0.8) for semi-dark */
    padding: 10px 0; /* Light padding for spacing */
}
.ast-primary-menu a {
    color: #fff !important; /* Ensure white text pops */
}

/* Mobile responsiveness - Align with Astra's breakpoints */
@media (max-width: 921px) { /* Astra's tablet breakpoint */
    .ast-article-single .single-job_listing {
        padding: 20px;
        max-width: 90%; /* Flexible for smaller screens */
    }
    .ast-article-single .job_listing-meta {
        flex-direction: column;
    }
}
@media (max-width: 544px) { /* Astra's mobile */
    .ast-article-single .single-job_listing {
        padding: 15px;
    }
}