/* --- Explore Jobs Layout --- */
.explore-header {
    background: var(--primary-light);
    padding: 140px 24px 60px;
    text-align: center;
}

.explore-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.explore-search-bar {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 10px;
    border-radius: var(--radius-full);
    display: flex;
    box-shadow: var(--shadow-sm);
    gap: 10px;
}

.explore-search-bar .filter-group {
    flex: 1;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--border-color);
    padding: 0 15px;
}

.explore-search-bar .filter-group:last-of-type {
    border-right: none;
}

.explore-search-bar i {
    color: var(--text-muted);
    margin-right: 10px;
}

.explore-search-bar input,
.explore-search-bar select {
    border: none;
    outline: none;
    width: 100%;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: transparent;
}

.explore-search-bar .btn-search {
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.explore-search-bar .btn-search:hover {
    background: #e68a00;
}

.explore-layout {
    max-width: 1320px;
    margin: 60px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* --- Sidebar Filters --- */
.filters-sidebar {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    height: fit-content;
}

.filter-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.filter-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
    cursor: pointer;
}

.checkbox-list input[type="checkbox"] {
    accent-color: var(--primary-color);
    width: 16px;
    height: 16px;
}

/* --- Job Cards Grid --- */
.jobs-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.jobs-list-header p {
    color: var(--text-muted);
}

.sort-by select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    color: var(--text-dark);
    outline: none;
}

.jobs-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.job-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-mid);
    transform: translateY(-2px);
}

.job-card-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.job-card-logo img {
    max-height: 80%;
    max-width: 80%;
}

.job-card-content {
    flex: 1;
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.job-card-title h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    transition: var(--transition);
}

.job-card-title h3:hover {
    color: var(--primary-color);
}

.job-card-school {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.job-badge {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.job-card-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.job-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.job-posted-time {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .explore-search-bar {
        flex-direction: column;
        border-radius: var(--radius-md);
        padding: 20px;
    }
    .explore-search-bar .filter-group {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 10px 0;
    }
    .explore-search-bar .filter-group:last-of-type {
        border-bottom: none;
    }
    .explore-search-bar .btn-search {
        margin-top: 10px;
    }
    .explore-layout {
        grid-template-columns: 1fr;
    }
}

/* Mobile (≤768px): assets/css/mobile-768.css */
