/**
 * Karriere Page
 */

/* Safari Flexbox Fix für Karriere Kontakt-Boxen */
.career-contact-container .is-content-justification-space-between.is-layout-flex {
	flex-wrap: wrap;

	> .wp-block-group.is-nowrap.is-layout-flex {
		flex: 1 1 400px;
		max-width: 100%;

		/* Verhindere dass Bilder die Group zu breit machen */
		figure {
			min-width: 0;
			max-width: 300px;
			flex-shrink: 0;
		}

		img {
			width: 100%;
			height: auto;
		}

		@media (min-width: 783px) {
			min-width: 400px;
		}

		@media (max-width: 782px) {
			min-width: 0;
			flex-basis: 100%;
		}
	}
}

@media (min-width: 783px) {
	.career-contact-container figure {
		flex-basis: 280px !important;
	}
}
