/* --- Breadcrumbs --- */
.breadcrumb {
    padding: 120px 24px 20px;
    background: var(--bg-main);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--primary-color);
    font-weight: 500;
}

.breadcrumb i {
    font-size: 0.8rem;
}

/* --- Job Header --- */
.job-header-section {
    background: var(--bg-main);
    padding: 0 24px 30px;
    border-bottom: 1px solid var(--border-color);
}

.job-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.job-title-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.job-header-actions {
    display: flex;
    gap: 12px;
}

.btn-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.btn-icon:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: var(--primary-light);
}

/* --- Job Layout --- */
.job-layout {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
}

/* --- Job Details Grid --- */
.job-specs {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.job-specs h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.spec-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* --- School Summary Card --- */
.school-summary-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    position: sticky;
    top: 100px;
}

.school-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.school-summary-card h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.school-quick-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    margin-bottom: 30px;
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quick-stat i {
    width: 30px;
    height: 30px;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.quick-stat-text span {
    display: block;
}

.quick-stat-text .val {
    font-weight: 600;
    color: var(--text-dark);
}

.btn-apply-large {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
}

/* --- Typography Content --- */
.content-section {
    margin-bottom: 40px;
}

.content-section h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.content-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-section ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-muted);
}

.content-section ul li {
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .job-layout {
        grid-template-columns: 1fr;
    }
    .school-summary-card {
        position: static;
        margin-top: 40px;
    }
}

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