.stellenangebote-content {
	display: flex; 
	gap: 40px; 
	align-items: center;
}

/* Über uns Inhalt */
.stellenangebote-text {
    flex: 7; 
	line-height: 1.6;
    color: #333333;
}

.stellenangebote-image {
	flex: 3; 
}

@media (max-width: 768px) {
    .stellenangebote-content {
        flex-direction: column; /* Text nimmt den gesamten Platz ein */
    }

    .stellenangebote-image {
        display: none; /* Logo wird ausgeblendet */
    }

    .stellenangebote-text {
        flex: 1; /* Text nimmt die gesamte Breite ein */
    }		
}

.image-section img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin-left: 0;
	padding-top: 20px;
}

.content-section {
    padding-top: 20px;
	width: 100%;
    margin-bottom: 20px;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.content-section p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.video-section iframe {
    padding-top: 20px;
	border: none;
    display: block;
    margin-left: 0;
}



@media (max-width: 768px) {
    .image-section img,
    .video-section iframe {
        width: 100%;
    }

    .container {
        padding: 10px;
    }
}
