/* BlinQ Job Listings Styles - Customizable CSS File */

/* Container */
.blinq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Filter Section */
.blinq-filter {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
}

.blinq-filter-form {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.blinq-filter-group {
    /*flex: 1;*/
    min-width: 300px;
}

.blinq-filter-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.blinq-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d1d1;
    border-radius: 6px;
    font-size: 16px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.blinq-select:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.blinq-filter-btn {
    padding: 9px 30px !important;
    background: var( --e-global-color-primary ) !important;
    color: white !important;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.blinq-filter-btn:hover {
    background: #cc1a21 !important;
}

.blinq-clear-filter {
    padding: 12px 20px;
    background: #f0f0f0;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
}

.blinq-clear-filter:hover {
    background: #e0e0e0;
}

/* Job List */
.blinq-job-list {
    display: grid;
    gap: 25px;
}

/* Job Item */
.blinq-job-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.blinq-job-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #000000;
}

.blinq-job-header {
    margin-bottom: 20px;
}

.blinq-job-title {
    margin: 0 0 15px 0;
    font-size: 25px !important;
    line-height: 1.3;
	font-weight: bolder;
	
}

.blinq-job-title a {
    color: #1a0dab;
    text-decoration: none;
}

.blinq-job-title a:hover {
    color: #0c5cb1;
    text-decoration: underline;
}

.blinq-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.blinq-location-tag {
    background: #e8f0fe;
    color: #1967d2;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #d2e3fc;
}

.blinq-work-type {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    background: #ED1E24;
    padding: 6px 14px;
    border-radius: 20px;
}

.blinq-job-type {
    color: #5f6368;
    font-size: 14px;
    font-weight: 500;
    background: #f1f3f4;
    padding: 6px 14px;
    border-radius: 20px;
}

.blinq-job-excerpt {
    color: #5f6368;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.blinq-job-footer {
    padding-top: 15px;
}

.blinq-view-details {
    display: inline-block;
    color: var(--e-global-color-secondary) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.blinq-view-details:hover {
    color: #005a87;
    text-decoration: underline;
}

.blinq-no-jobs {
    text-align: center;
    padding: 60px 40px;
    background: #f9f9f9;
    border-radius: 10px;
    color: #666;
    font-size: 18px;
    border: 2px dashed #ddd;
}

/* Single Job Page Styles */
.blinq-single-job-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.blinq-single-job {
    background: white;
    padding: 50px;
	padding-top: 100px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.blinq-single-job h1 {
	font-weight: bolder !important;
    font-size: 33px !important;
	margin-top: 20px;
    margin-bottom: 25px;
    color: #202124;
    line-height: 1.2;
}

.blinq-job-meta-single {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid #ed1e24;
}

.blinq-meta-item {
    margin-bottom: 12px;
    font-size: 17px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.blinq-meta-item:last-child {
    margin-bottom: 0;
}

.blinq-meta-item strong {
    color: #5f6368;
    min-width: 100px;
}

.blinq-location-badge {
    background: #1967d2;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 500;
}

.blinq-job-description {
    line-height: 1.8;
    font-size: 16px;
    color: #3c4043;
    margin-bottom: 40px;
}

.blinq-job-description h2,
.blinq-job-description h3 {
    color: #202124;
	font-size: 25px !important;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.blinq-job-description ul,
.blinq-job-description ol {
    padding-left: 25px;
    margin-bottom: 25px;
}

.blinq-job-description li {
    margin-bottom: 10px;
}

/* Contact Form Section */
.blinq-form-section {
    margin-top: 50px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.blinq-form-title {
    font-weight:bolder !important;
    font-size: 25px !important;
    margin-bottom: 25px;
    color: #202124;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #000000;
}

.blinq-form-note {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

/* Contact Form 7 Specific Styles */
.blinq-form-section .wpcf7-form {
    max-width: 600px;
    margin: 0 auto;
}

.blinq-form-section .wpcf7-form-control {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.blinq-form-section .wpcf7-submit {
    background: #0073aa;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0;
}

.blinq-form-section .wpcf7-submit:hover {
    background: #005a87;
}

/* WPForms Specific Styles */
.blinq-form-section .wpforms-container {
    max-width: 600px;
    margin: 0 auto;
}

.blinq-back-link {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.blinq-back-link a {
    background-color: var(--e-global-color-primary) !important;
	color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid var(--e-global-color-primary) !important;
    border-radius: 6px;
    transition: all 0.3s;
}

.blinq-back-link a:hover {
    background: #cc1a21 !important;
	border: #cc1a21!important
    color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .blinq-filter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .blinq-filter-group {
        min-width: 100%;
    }
    .blinq-job-title {
    font-size: 25px !important;
	
}
    .blinq-filter-btn,
    .blinq-clear-filter {
        width: 100%;
        text-align: center;
    }
    
    .blinq-single-job {
        padding: 16px;
    }
    
    .blinq-single-job h1 {
		text-align:center;
        font-size: 25px !important;
		margin-top: 80px !important;
    }
    
    .blinq-job-title {
        font-size: 20px;
    }
  	.blinq-form-title {
        font-size: 25px !important;
    }
    
    .blinq-job-item {
        padding: 20px;
    }
    
    .blinq-form-section {
        padding: 25px;
    }
}

/* New Tab Indicator */
.blinq-job-title a:after {
    /*content: "↗";*/
    font-size: 14px;
    margin-left: 5px;
    opacity: 0.7;
}

.blinq-view-details:after {
    content: " ↗";
    opacity: 0.7;
}