.contact-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	container-type: inline-size;
}
.contact-cards.cards-and-images {
	gap: 70px 1rem;
	padding-top: 50px;
}
.contact-cards--item {
	border-radius: 20px;
	background: #f7f8f8;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	position: relative;
	flex: 1 1 100%;
}
.item--image {
	border-radius: 50%;
	overflow: hidden;
	max-width: 100px;
	width: 100px;
	height: 100px;
	border: 5px solid #000;
	background: #000;
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	display: none;
}
.contact-cards.cards-and-images .item--image {
	display: block;
}
.item--content {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}
.contact-cards.cards-and-images .item--content {
	padding: 70px 0.75rem 1rem;
}
.item--image img {
	object-fit: cover;
	height: 100%;
}
.item--actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
}
.contact-cards .contact-cards--item .item--actions a {
	font-size: 14px;
	background: #fff;
	flex: 1 1 auto;
	padding: 0rem 0.4rem;
}
.item--actions a i {
	margin-right: 0.25rem;
}
.item--name {
	font-family: var(--font__serif);
	font-size: calc(20px + (24 - 20) * (100vw - 380px) / (1920 - 380));
	line-height: 1;
}
.item--position {
	font-weight: 500;
	font-size: var(--font-size__base);
	line-height: 1;
}
.contact-cards > h2 {
	flex: 1 1 100%;
	text-align: center;
}
@container (min-width: 450px) {
	.contact-cards--item {
		flex: 0 1 calc(50% - 0.5rem);
	}
}
@container (min-width: 800px) {
	.contact-cards--item {
		flex: 0 1 calc(33.333% - 0.667rem);
	}
}
@container (min-width: 1000px) {
	.contact-cards--item {
		flex: 0 1 calc(25% - 0.75rem);
	}
}
