.e5-associations-subsubheadline {
	color: var(--wp--preset--color--primary);
	font-size: 25px;
	font-weight: bold;
	margin-bottom: 10px;
}

.e5-association-container {
	margin-bottom: 50px;
}

.e5-association-single {
	display: flex;
    flex-direction: row;
    gap: 30px;
}

.e5-association-single .e5-association-img-container,
.e5-association-single .e5-association-description-container {
	flex: 2;
}

.e5-association-single .e5-association-contact-box-container {
	flex: 1;
}

.e5-association-single .e5-association-contact-box-container {
	box-shadow: 0px 0px 5px #00000029;
    border-radius: 7px;
    padding: 30px;
    height: fit-content;
}

.e5-association-single .e5-association-contact-box-container p {
	margin-bottom: 0;
}

.e5-association-single .e5-association-contact-box-container .contact {
	font-weight: bold;
}

.e5-association-single .e5-association-contact-box-container a {
	color: var(--wp--preset--color--primary);
}

.e5-association-single .social-media-container {
	display: flex;
    flex-direction: row;
    gap: 10px;
	margin-top: 25px;
	justify-content: flex-end;
}

.e5-association-single .social-media-container img {
	filter: brightness(0) saturate(100%) invert(20%) sepia(73%) saturate(6066%) hue-rotate(350deg) brightness(81%) contrast(97%);
	max-height: 35px;
	height: 35px;
}

@media screen and (max-width: 600px) {
	.e5-association-single {
		flex-direction: column;
	}

	.e5-association-single .e5-association-description-container .description > *:last-child {
		margin-bottom: 0;
	}

	.e5-association-single .e5-association-contact-box-container {
		padding: 15px;
	}

	.e5-association-single .social-media-container {
		margin-top: 20px;
	}

	.e5-association-single .social-media-container img {
		height: 30px;
		max-height: 30px;
	}
}

@media screen and (min-width: 600px) and (max-width: 1000px) {
	.e5-association-single {
		flex-wrap: wrap;
	}

	.e5-association-single .e5-association-img-container {
		flex: 0 0 100%;
		max-height: 300px;
	}

	.e5-association-single .e5-association-img-container img {
		height: 100%;
		width: 100%;
		object-fit: cover;
	}
}