.image-and-content-card {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(5rem, 6vw, 7rem) 0;
}

.image-and-content-card__container {
	position: relative;
	z-index: 1;
}

.image-and-content-card__grid {
	display: grid;
	align-items: stretch;
}

.image-and-content-card__grid--split {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.image-and-content-card__grid--split.image-and-content-card__grid--inverted .image-and-content-card__media {
	order: 2;
}

.image-and-content-card__grid--split.image-and-content-card__grid--inverted .image-and-content-card__content {
	order: 1;
}

.image-and-content-card__grid--media-only,
.image-and-content-card__grid--content-only {
	grid-template-columns: minmax(0, 1fr);
	max-width: 42rem;
}

.image-and-content-card--align-left .image-and-content-card__grid--content-only,
.image-and-content-card--align-left .image-and-content-card__grid--media-only {
	margin-right: auto;
	margin-left: 0;
}

.image-and-content-card--align-center .image-and-content-card__grid--content-only,
.image-and-content-card--align-center .image-and-content-card__grid--media-only {
	margin-right: auto;
	margin-left: auto;
}

.image-and-content-card--align-right .image-and-content-card__grid--content-only,
.image-and-content-card--align-right .image-and-content-card__grid--media-only {
	margin-right: 0;
	margin-left: auto;
}

.image-and-content-card--align-left .image-and-content-card__grid--split,
.image-and-content-card--align-left .image-and-content-card__grid--float-parallax {
	margin-right: auto;
	margin-left: 0;
}

.image-and-content-card--align-center .image-and-content-card__grid--split,
.image-and-content-card--align-center .image-and-content-card__grid--float-parallax {
	margin-right: auto;
	margin-left: auto;
}

.image-and-content-card--align-right .image-and-content-card__grid--split,
.image-and-content-card--align-right .image-and-content-card__grid--float-parallax {
	margin-right: 0;
	margin-left: auto;
}

.image-and-content-card__media {
	min-height: 100%;
	overflow: hidden;
}

.image-and-content-card__media picture {
	display: block;
	width: 100%;
	height: 100%;
}

.image-and-content-card__media picture img,
.image-and-content-card__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: clamp(18rem, 32vw, 28rem);
	object-fit: cover;
}

.image-and-content-card__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100%;
	padding: clamp(2rem, 4vw, 3.5rem);
	border: 1px solid var(--color-primary);
	text-align: left;
}

.image-and-content-card--content-bg-light .image-and-content-card__content {
	background: #ffffffed;
}

.image-and-content-card--content-bg-dark .image-and-content-card__content {
	background: #3a4a50cc;
}

.image-and-content-card--content-bg-dark .image-and-content-card__title {
	color: var(--color-white);
}

.image-and-content-card--content-bg-dark .image-and-content-card__text,
.image-and-content-card--content-bg-dark .image-and-content-card__list li {
	color: rgba(255, 255, 255, 0.82);
}

.image-and-content-card--content-bg-light .image-and-content-card__title {
	color: var(--color-text);
}

.image-and-content-card--content-bg-light .image-and-content-card__text,
.image-and-content-card--content-bg-light .image-and-content-card__list li {
	color: var(--color-text);
}

.image-and-content-card--text-dark {
	--section-title-color: var(--color-text);
	--section-text-color: var(--color-text);
}

.image-and-content-card--text-light {
	--section-title-color: var(--color-white);
	--section-text-color: rgba(255, 255, 255, 0.82);
}

.image-and-content-card__title {
	margin: 0;
	color: var(--section-title-color, var(--color-white));
}

.image-and-content-card__logo {
	margin-top: 1.25rem;
}

.image-and-content-card__logo picture {
	display: block;
}

.image-and-content-card__logo picture img,
.image-and-content-card__logo-image {
	display: block;
	width: auto;
	max-width: 3.5rem;
	height: auto;
	max-height: 3.5rem;
	object-fit: contain;
}

.image-and-content-card__text {
	margin-top: 1.25rem;
	color: var(--section-text-color, rgba(255, 255, 255, 0.82));
}

.image-and-content-card__text > *:first-child {
	margin-top: 0;
}

.image-and-content-card__text > *:last-child {
	margin-bottom: 0;
}

.image-and-content-card__text a,
.image-and-content-card__text a:link,
.image-and-content-card__text a:visited,
.image-and-content-card__text a:active {
	position: relative;
	display: inline-block;
	color: var(--color-primary);
	font-weight: 400;
	text-decoration: none;
	transition: color 0.35s ease;
}

.image-and-content-card__text a::after {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--color-primary);
	content: "";
	transition: width 0.35s ease;
	pointer-events: none;
}

.image-and-content-card__text a:hover,
.image-and-content-card__text a:focus-visible {
	color: var(--color-primary);
}

.image-and-content-card__text a:hover::after,
.image-and-content-card__text a:focus-visible::after {
	width: 100%;
}

.image-and-content-card__list {
	margin: 1.25rem 0 0;
	padding: 0;
	list-style: none;
}

.image-and-content-card__list li {
	padding: 1.2rem 0;
	border-bottom: 1px solid var(--color-primary);
	color: var(--section-text-color, var(--color-text));
}

.image-and-content-card__list li:first-child {
	padding-top: 0;
}

.image-and-content-card__list li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.image-and-content-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.75rem;
}

.image-and-content-card--align-left .image-and-content-card__actions {
	justify-content: flex-start;
}

.image-and-content-card--align-center .image-and-content-card__actions {
	justify-content: center;
}

.image-and-content-card--align-right .image-and-content-card__actions {
	justify-content: flex-end;
}

.image-and-content-card--float-parallax {
	overflow: visible;
	padding-top: clamp(4rem, 7vw, 6rem);
	--float-parallax-image-width: clamp(16rem, 42%, 26rem);
	--float-parallax-image-inset: clamp(1.5rem, 3vw, 2.5rem);
	--float-parallax-image-gap: clamp(1.25rem, 2.5vw, 2rem);
}

.image-and-content-card--float-parallax .image-and-content-card__container {
	overflow-x: clip;
}

.image-and-content-card--float-parallax .image-and-content-card__grid--float-parallax {
	position: relative;
	display: block;
}

.image-and-content-card--float-parallax .image-and-content-card__content {
	width: 100%;
	padding-left: calc(var(--float-parallax-image-inset) + var(--float-parallax-image-width) + var(--float-parallax-image-gap));
}

.image-and-content-card--float-parallax .image-and-content-card__media {
	position: absolute;
	top: 0;
	left: var(--float-parallax-image-inset);
	z-index: 2;
	width: var(--float-parallax-image-width);
	max-width: calc(100% - (var(--float-parallax-image-inset) * 2));
	height: auto;
	min-height: 0;
	max-height: none;
	margin: 0;
	overflow: visible;
	transform: none;
	will-change: top;
	backface-visibility: hidden;
}

.image-and-content-card--float-parallax .image-and-content-card__media picture {
	display: block;
	width: 100%;
	height: auto;
}

.image-and-content-card--float-parallax .image-and-content-card__media picture img,
.image-and-content-card--float-parallax .image-and-content-card__image {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
	min-height: 0;
	object-fit: initial;
}

.image-and-content-card--float-parallax-inverted .image-and-content-card__media {
	right: var(--float-parallax-image-inset);
	left: auto;
}

.image-and-content-card--float-parallax-inverted .image-and-content-card__content {
	padding-right: calc(var(--float-parallax-image-inset) + var(--float-parallax-image-width) + var(--float-parallax-image-gap));
	padding-left: clamp(2rem, 4vw, 3.5rem);
}

@media (max-width: 767px) {
	.image-and-content-card {
		padding: 2.5rem 0 3rem;
	}

	.image-and-content-card__grid--split {
		grid-template-columns: 1fr;
	}

	.image-and-content-card__grid--split.image-and-content-card__grid--inverted .image-and-content-card__media,
	.image-and-content-card__grid--split.image-and-content-card__grid--inverted .image-and-content-card__content {
		order: initial;
	}

	.image-and-content-card__media picture img,
	.image-and-content-card__image {
		min-height: 16rem;
	}

	.image-and-content-card__content {
		padding: 2rem 1.5rem;
	}

	.image-and-content-card__logo picture {
		display: flex;
    	justify-content: center;
	}

	.image-and-content-card--align-left .image-and-content-card__grid--content-only,
	.image-and-content-card--align-center .image-and-content-card__grid--content-only,
	.image-and-content-card--align-right .image-and-content-card__grid--content-only,
	.image-and-content-card--align-left .image-and-content-card__grid--split,
	.image-and-content-card--align-center .image-and-content-card__grid--split,
	.image-and-content-card--align-right .image-and-content-card__grid--split,
	.image-and-content-card--align-left .image-and-content-card__grid--float-parallax,
	.image-and-content-card--align-center .image-and-content-card__grid--float-parallax,
	.image-and-content-card--align-right .image-and-content-card__grid--float-parallax {
		margin-right: auto;
		margin-left: auto;
	}

	.image-and-content-card__actions {
		justify-content: center;
	}

	.image-and-content-card--float-parallax {
		padding-top: 2.5rem;
	}

	.image-and-content-card--float-parallax .image-and-content-card__grid--float-parallax {
		display: grid;
		grid-template-columns: 1fr;
		gap: 1.5rem;
		justify-items: center;
	}

	.image-and-content-card--float-parallax .image-and-content-card__media {
		position: relative;
		top: auto !important;
		left: auto;
		right: auto;
		width: 100%;
		height: auto;
		max-height: none;
		margin: 0;
	}

	.image-and-content-card--float-parallax .image-and-content-card__media picture img,
	.image-and-content-card--float-parallax .image-and-content-card__image {
		width: 100%;
		height: auto;
		min-height: 0;
		object-fit: initial;
	}

	.image-and-content-card--float-parallax .image-and-content-card__content,
	.image-and-content-card--float-parallax-inverted .image-and-content-card__content {
		padding: 2rem 1.5rem;
	}

	.image-and-content-card--content-bg-light .image-and-content-card__text,
	.image-and-content-card--content-bg-light .image-and-content-card__list li {
		text-align: center;
	}
}
