/* ==============================================
   JOB DETAILS PAGE STYLES
   ============================================== */
.job-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.job-detail-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.job-company-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.job-company-logo-large {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.06);
    background: white;
    padding: 8px;
}

.job-title-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
}

.job-company-name {
    font-size: 1.5rem;
    color: #64748b;
    font-weight: 500;
}

.job-meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.job-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.job-main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.job-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 2rem;
}

.job-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.job-section h2 i {
    color: #0085FF;
}

.job-description {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.requirements-list,
.responsibilities-list {
    list-style: none;
    padding: 0;
}

.requirements-list li,
.responsibilities-list li {
    padding: 0.75rem 0;
    color: #64748b;
    display: flex;
    align-items: start;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.requirements-list li:last-child,
.responsibilities-list li:last-child {
    border-bottom: none;
}

.requirements-list li i,
.responsibilities-list li i {
    color: #10b981;
    margin-top: 0.25rem;
}

.btn-apply-large {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0085FF 0%, #005099 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-apply-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.4);
}

/* About Company & Share (Merged from job-details-enhancements.css) */
.company-about-section,
.similar-jobs-widget,
.share-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 1.5rem;
}

.company-about-section {
    margin-top: 2rem;
}

.share-section {
    margin-bottom: 2rem;
}

.similar-jobs-widget {
    margin-top: 2rem;
}

.company-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.company-meta-item h4 {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.company-meta-item p {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.share-buttons {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.btn-share {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 8px;
    border: 1px solid transparent;
    color: white;
    font-size: 1rem;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-share:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.share-linkedin {
    background: #0077b5;
}

.share-twitter {
    background: #1da1f2;
}

.share-copy {
    background: rgba(0, 0, 0, 0.06);
    color: #0f172a;
    border-color: rgba(0, 0, 0, 0.06);
}

.similar-job-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.2s;
    text-decoration: none;
}

.similar-job-item:last-child {
    border-bottom: none;
}

.similar-job-item:hover {
    background: rgba(0, 0, 0, 0.03);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 8px;
}

/* --- Job Details Stat Item --- */
.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
}

@media(max-width: 900px) {
    .job-detail-grid {
        grid-template-columns: 1fr;
    }
}