.career-hero-section {
    background-color: var(--koeleman-gold-light);
    padding: 4rem 0;
    overflow: hidden;
}

.career-hero-section .hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.career-hero-section .hero-text {
    text-align: left;
}

.career-hero-section .hero-title {
    color: var(--koeleman-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.career-hero-section .hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 50ch;
}

.career-hero-section .hero-image {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .career-hero-section .hero-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }

    .career-hero-section .hero-title {
        font-size: 3.5rem;
    }
}
