/* ===== MODERN CAMPUS CAREERS PAGE STYLING ===== */

.careers-page-wrapper {
    background-color: #f8fafc;
    min-height: 60vh;
}

/* Feature Pillars Grid */
.career-pillar-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.career-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
    border-color: rgba(13, 110, 253, 0.3);
}

.career-pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1);
}

.career-pillar-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.career-pillar-desc {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* Why Join Us Card */
.why-us-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    padding: 2.5rem;
    height: 100%;
}

.why-us-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.why-us-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

/* Essay Topic Box */
.essay-topic-box {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-left: 4px solid #0d6efd;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.25s ease;
}

.essay-topic-box:hover {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.essay-topic-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0d6efd;
    margin-bottom: 0.35rem;
}

.essay-topic-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.5;
}

/* Application Email Banner */
.apply-banner-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    border-radius: 20px;
    padding: 2rem 2.25rem;
    color: #ffffff !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
    margin-top: 2rem;
}

.apply-banner-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff !important;
}

.apply-email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    color: #0d6efd;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.6rem 1.25rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-top: 0.75rem;
}

.apply-email-link:hover {
    background: #f8fafc;
    color: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
}

/* Right Media Showcase */
.career-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
    background: #ffffff;
    padding: 12px;
}

.career-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.career-image-card:hover img {
    transform: scale(1.04);
}

.career-quote-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.career-quote-badge p {
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}
