/* Karriere Seite spezifische Styles */

/* Hero Section - Wie Standorte Seite */
.hero-career {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-align: center;
}

.hero-content p {
    color: white;
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Stellenangebote Section */
.job-offers {
    padding: 4rem 0;
    background: white;
}

.job-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Job Card */
.job-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Job Logo */
.job-logo {
    padding: 2rem 2rem 1rem 2rem;
    text-align: left;
}

.job-logo img {
    height: 50px;
    width: auto;
}

/* Job Divider */
.job-divider {
    height: 2px;
    background: linear-gradient(90deg, #2c5aa0, #e74c3c);
    margin: 0 2rem;
}

/* Job Content */
.job-content {
    padding: 2rem;
}

.job-content h3 {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-content h2 {
    color: #2c5aa0;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.job-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: justify;
}

/* Job Details */
.job-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-types {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.job-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
}

.briefcase-icon {
    font-size: 1.2rem;
}

/* Apply Button */
.apply-btn {
    background: #2c5aa0;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(44, 90, 160, 0.3);
}

.apply-btn:hover {
    background: #1e3d73;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(44, 90, 160, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .job-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-career {
        padding: 3rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .job-offers {
        padding: 40px 0;
    }
    
    .job-cards {
        padding: 0 1rem;
    }
    
    .job-card {
        border-radius: 10px;
    }
    
    .job-logo {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
        text-align: left;
    }
    
    .job-logo img {
        height: 40px;
    }
    
    .job-divider {
        margin: 0 1.5rem;
    }
    
    .job-content {
        padding: 1.5rem;
    }
    
    .job-content h2 {
        font-size: 1.4rem;
    }
    
    .job-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .job-details {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .job-types {
        justify-content: center;
    }
    
    .job-detail-item {
        text-align: left;
    }
    
    .job-detail-item strong {
        font-size: 0.95rem;
    }
    
    .job-detail-item span {
        font-size: 0.95rem;
    }
    
    .apply-btn {
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .job-logo img {
        height: 35px;
    }
    
    .job-content h2 {
        font-size: 1.3rem;
    }
    
    .job-content p {
        font-size: 0.85rem;
    }
    
    .apply-btn {
        font-size: 0.85rem;
        padding: 0.8rem 1.2rem;
    }
}