/* Banner Styling */
.jlp-job-cover img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
}
.jlp-job-cover {
    text-align: center;
    margin: 15px 0;
}

/* Filters Section (Two Column Layout) */
.jlp-filters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.jlp-filters input,
.jlp-filters select,
.jlp-filters button {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Responsive for Tablets (2 columns) */
@media (max-width: 900px) {
    .jlp-filters {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive for Mobile (1 column) */
@media (max-width: 500px) {
    .jlp-filters {
        grid-template-columns: 1fr;
    }
}

/* Job Grid */
.jlp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px auto;
    max-width: 1200px;
}

/* Job Card */
.jlp-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.jlp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.jlp-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.jlp-card h3 {
    font-size: 20px;
    margin: 15px;
    font-weight: 600;
    color: #333;
}
.jlp-card p {
    font-size: 15px;
    color: #666;
    padding: 0 15px;
    margin-bottom: 15px;
    min-height: 45px;
}
.jlp-btn {
    display: inline-block;
    margin: 0 15px 15px;
    padding: 10px 16px;
    background: #0073aa;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}
.jlp-btn:hover {
    background: #005f8d;
}

/* Load More Button */
#jlp-load-more {
    display: block;
    margin: 20px auto;
    padding: 12px 24px;
    background: #0073aa;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}
#jlp-load-more:hover {
    background: #005f8d;
}

/* Loading Spinner */
.jlp-loading {
    display: none;
    text-align: center;
    margin: 20px 0;
}
.jlp-loading img {
    width: 40px;
}
.jlp-job-cover {
    position: relative;
    text-align: center;
    margin: 0 0 20px;
}

.jlp-job-cover img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.jlp-banner-text {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: #ffffff !important;
    font-size: 28px !important;
    font-weight: bold !important;
    text-shadow: 0 3px 6px rgba(255, 255, 255, 0.6) !important;
    text-align: center;
    width: 90%;
}
.jlp-meta {
    padding: 10px 15px;
    background: #f8f8f8;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #333;
}
.jlp-meta p {
    margin: 5px 0;
}

