/* Prop Mission - Elite Career Portal Styles */

.career-hero {
    height: 60vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.career-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
}

.career-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.career-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.career-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Values Section */
.career-values {
    padding: 80px 0;
    background: #fbfcfd;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 117, 186, 0.1);
    border-color: rgba(34, 117, 186, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #e0f2fe;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--brand-primary);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--brand-dark);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Open Roles */
.open-roles {
    padding: 100px 0;
}

.roles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
}

.role-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
}

.role-card:hover {
    border-color: var(--brand-primary);
    background: #f8fafc;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.role-info {
    flex-grow: 1;
}

.role-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #eef2ff;
    color: #6366f1;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.role-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}

.role-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.role-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-apply {
    background: var(--brand-primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.role-card:hover .btn-apply {
    background: var(--brand-dark);
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .role-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .btn-apply {
        width: 100%;
        text-align: center;
    }
}
