/* carriere.css */
.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #059669, #0891b2, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.career-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0fdf4;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #059669, #0891b2, #7c3aed);
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(5, 150, 105, 0.1);
}

.career-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #059669, #0891b2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.3);
}

.career-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.institution {
    font-weight: 600;
    color: #059669;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.location {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.period {
    display: inline-block;
    background: #f0fdf4;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #059669;
    margin: 0.5rem 0 1rem;
}

.career-card p {
    color: #475569;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 4rem 1.5rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .career-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .career-card {
        padding: 1.5rem;
    }
}