.wp-block-service {
	margin-top: 50px;
	margin-bottom: 50px;
	background: #F8F8F8;
	box-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
	border-radius: 1em;
	padding: 50px 20px;
	text-align: center;
}

.wp-block-service--icon {
	width: 6em;
	height: 6em;
	background: white;
	border-radius: 50%;
	border: 1.25em solid white;
	position: relative;
	z-index: 2;
	margin: 0 auto 1em;
}

.wp-block-service--icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
}

.wp-block-service--image-title-wrapper {
	display: flex;
	flex-direction: column-reverse;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
}

.wp-block-service--image {
	display: block;
	width: 0;
	margin: 0 auto;
	overflow: hidden;
	transition: width 0.5s, margin 0.5s;
}

.wp-block-service--image img {
	display: block;
	width: 100%;
	height: auto;
}

.wp-block-service.open .wp-block-service--image {
	width: 85%;
	margin-top: 30px;
	margin-bottom: 50px;
}

.wp-block-service--title h2 {
	font-weight: 400;
	margin-bottom: 20px;
}

.wp-block-service--short-description {
	line-height: 1.5em;
	margin: 1em 0;
}

.wp-block-service--long-description {
	line-height: 1.5em;
	margin: 0 0 1em 0;
}

.wp-block-service--hidden-stuff {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.5s;
	overflow: hidden;
}

.wp-block-service.open .wp-block-service--hidden-stuff {
	grid-template-rows: 1fr;
}

.wp-block-service--hidden-stuff-inner {
	overflow: hidden;
}

.wp-block-service--read-more {
	display: table;
	margin: 2em auto;
	text-decoration: none;
	color: inherit;
	font-weight: bold;
	font-size: 1.25em;
}

.wp-block-service--read-more::before {
	content: "Read more";
}

.wp-block-service.open .wp-block-service--read-more::before {
	content: "Read less";
}

.wp-block-service--read-more::after {
	content: "\f078";
	display: inline-block;
	margin: 0 0 0 1em;
	font-family: "Font Awesome 6 Pro";
	font-weight: normal;
}

.wp-block-service.open .wp-block-service--read-more::after {
	content: "\f077";
}

.wp-block-service .wp-block-button__link {
	display: table;
	margin: 2em auto;
}

.wp-block-service--extra-content h3 {
	color: #199CCE;
}

.wp-block-service--extra-content a {
	color: inherit;
	text-decoration: underline;
}

.wp-block-service--extra-content-left {
	margin-top: 40px;
	margin-bottom: 40px;
}

@media (max-width: 767px) {
	.wp-block-service--extra-content ul {
		display: block;
		padding: 0;
		margin: 1em 0;
	}

	.wp-block-service--extra-content ul li {
		list-style: none;
		display: block;
		padding: 0;
		margin: 1em 0;
	}
}

@media (min-width: 768px) {
	.wp-block-service {
		position: relative;
		text-align: left;
		padding: 50px;
		padding-bottom: 100px;
		transition: padding 0.5s;
	}

	.wp-block-service.open {
		padding-left: 100px;
		padding-right: 100px;
	}

	.wp-block-service--icon {
		position: absolute;
		top: 50px;
		right: 50px;
	}

	.wp-block-service--image-title-wrapper {
		flex-direction: column;
		align-items: flex-start;
	}

	.wp-block-service.open .wp-block-service--image {
		width: 35%;
	}

	.wp-block-service--title {
		width: 0;
		overflow: visible;
		transition: width 0.5s;
		white-space: nowrap;
	}

	.wp-block-service--title h2 {
		display: table;
	}

	.wp-block-service.open .wp-block-service--title {
		width: 100%;
	}

	.wp-block-service--short-description {
		max-width: 36em;
		transition: max-width 0.5s;
	}

	.wp-block-service.open .wp-block-service--short-description {
		max-width: 100%;
	}

	.wp-block-service--extra-content {
		margin: 2em 0;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: stretch;
		justify-content: stretch;
		gap: 4em;
	}

	.wp-block-service--extra-content-left {
		margin: 0;
	}

	.wp-block-service--extra-content-right {
		width: 50%;
		flex-grow: 0;
		flex-shrink: 0;
	}

	.wp-block-service--read-more {
		position: absolute;
		bottom: 50px;
		left: 50px;
		margin: 0;
	}

	.wp-block-service .wp-block-button__link {
		position: absolute;
		bottom: 50px;
		right: 50px;
		margin: 0;
	}

	.wp-block-service--extra-content h3::after {
		content: "\00a0";
		display: inline;
	}

	.wp-block-service--extra-content ul {
		display: block;
		padding: 0;
		margin: 1em 0;
	}

	.wp-block-service--extra-content ul li {
		list-style: none;
		display: block;
		padding: 0;
		padding-left: 2em;
		margin: 1em 0;
		position: relative;
	}

	.wp-block-service--extra-content ul li::before {
		content: "";
		display: block;
		position: absolute;
		top: 0.5em;
		left: 0.5em;
		width: 7px;
		height: 7px;
		border-radius: 50%;
		background: #199CCE;
	}
}