/* JOB VIEW PAGE SPECIFIC STYLING */
.jobs-section {
    padding: 40px 20px;
    background: linear-gradient(180deg,#0f172a,#020617);
    min-height: auto;
    overflow: visible;
}

.jobs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.job-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(99,102,241,.3);
}

.job-card h3 {
    color: #38bdf8;
    font-size: 20px;
    margin-bottom: 6px;
}

.job-card .company {
    font-size: 14px;
    color: #c7d2fe;
    margin-bottom: 12px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    margin-bottom: 12px;
}

.job-meta span {
    background: rgba(99,102,241,0.15);
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(99,102,241,0.3);
    color: #c7d2fe;
}

.remote-badge {
    background: linear-gradient(90deg,#38bdf8,#6366f1);
    color: white;
    font-weight: 600;
    border: none;
}

.job-card .description {
    font-size: 14px;
    margin-bottom: 15px;
    color: #e5e7eb;
    line-height: 1.4;
}

.job-buttons {
    margin-top: auto;
}

.job-buttons button {
    padding: 10px 18px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    background: linear-gradient(90deg,#22c55e,#16a34a);
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.job-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(34,197,94,.45);
}

/* RESPONSIVE */
@media(max-width:768px){
    .jobs-container {
        grid-template-columns: 1fr;
    }
}