/* ==========================================
   Careers Hero Section
========================================== */

.careers-hero {
    position: relative;
    overflow: hidden;
    padding: 170px 0 100px;
    background: linear-gradient(180deg, #ffffff, #eef6ff);
}

.careers-hero::before {
    content: "";
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(37, 99, 235, .08);
    position: absolute;
    top: -120px;
    right: -120px;
}

.careers-hero h1 {
    margin: 20px 0;
    font-size: 3.5rem;
    font-weight: 800;
}

.careers-hero p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: #64748b;
    max-width: 640px;
}

@media (max-width: 768px) {

    .careers-hero {
        padding: 130px 0 70px;
        text-align: center;
    }

    .careers-hero h1 {
        font-size: 2.2rem;
    }

    .careers-hero p {
        margin-left: auto;
        margin-right: auto;
    }

}

/* ==========================================
   Job Listings
========================================== */

.job-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .06);
    transition: .35s;
    height: 100%;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, .15);
}

.job-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.job-card h4 {
    margin-bottom: 8px;
}

.job-tag {
    display: inline-block;
    background: #DBEAFE;
    color: #2563EB;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-right: 8px;
    margin-bottom: 8px;
}

.job-tag.remote {
    background: #DCFCE7;
    color: #16A34A;
}

.job-card p {
    color: #64748B;
    line-height: 1.8;
    margin-bottom: 20px;
}

.job-card .btn {
    padding: 12px 26px;
    font-weight: 700;
    border-radius: 12px;
}

/* ==========================================
   Hiring Process (reuses .process-card)
========================================== */

.process-number small {
    display: block;
    font-size: 12px;
    font-weight: 600;
}

/* ==========================================
   Open Culture / Perks (reuses .feature-card / .icon-circle)
========================================== */

.perk-icon {
    font-size: 30px;
}

/* ==========================================
   Open Application CTA note
========================================== */

.open-application {
    background: #fff;
    border: 1px dashed #93C5FD;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.open-application h4 {
    margin-bottom: 12px;
}

.open-application p {
    color: #64748B;
    max-width: 560px;
    margin: 0 auto 24px;
}
