.single-post-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 1255px;
    margin: 0 auto;
}	

.single-post-image-wrapper {
	display: flex; 
	justify-content: center;
	margin: 0 0 16px 0;
	width: 100%;
	margin-top: 1em;
}

.single-post-image-wrapper img {
	display: flex;
	justify-content: center;
	max-height: 50vh;
	object-fit: contain;
}

.single-post-category-and-time-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	width: 80%;
}

.single-post-category-and-time-wrapper .single-post-category-wrapper .post-categories {
	list-style: none;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0;
	padding: 0;
}

.single-post-category-and-time-wrapper .single-post-category-wrapper .post-categories li {
	margin-right: 16px;
}

.single-post-category-and-time-wrapper .single-post-category-wrapper .post-categories li a {
	font-size: 14px;
	font-weight: 700;
	line-height: 21.2px;
	letter-spacing: 0.06em;
	color: #63C2D0;
}

.single-post-category-and-time-wrapper .single-post-category-wrapper .post-categories li a:hover {
	color: #45ACBB;
}

.single-post-category-and-time-wrapper .single-post-date-of-publication-wrapper p {
	font-size: 14px;
	font-weight: 700;
	line-height: 21.2px;
	letter-spacing: 0.06em;
	color: #63C2D0;
}

.single-post-title-wrapper {
	width: 80%;
	margin: 16px 0;
}

.single-post-title-wrapper h1 {
	text-align: center;
	font-size: 24px;
	font-weight: 800;
	line-height: 36px;
	letter-spacing: 0.015em;
}

.single-post-subtitle-wrapper {
	margin: 1%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.single-post-subtitle-wrapper h2 {
	color: #223284;
	flex-grow: 1;
	text-align: center;
}

.single-post-subtitle-wrapper div {
	height: 16px;
	background-color: #969696;
	flex-grow: 5;
}

.single-post-content-wrapper {
	width: 80%;
	margin: 0 0 16px 0;
}

.single-post-content-wrapper p {
	font-size: 18px;
	line-height: 1.5em;
	font-family: Jost, sans-serif;
}


.single-post-content-wrapper figure {
	margin: 16px 0;
}

.contact-buttons-wrapper {
	width: 100%;
	margin: 2em;
	display: flex;
	justify-content: center;
}

.email-button {
	padding: 0.5em 2em 0.5em 2em;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: white;
	background: #223284;
	text-transform: uppercase;
}

.email-button:hover {
	color: #223284;
	background: transparent;
	outline: 1px solid #223284;
}

.email-button:focus {
	color: #223284;
	background: transparent;
	outline: 2px solid #223284;
}

.phone-button {
	padding: 0.5em 2em 0.5em 2em;
	margin-left: 2em;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: #63C2D0;
	text-transform: uppercase;
}

.phone-button:hover {
	color: #63C2D0;
	outline: 1px solid #63C2D0;
}

.phone-button:focus {
	color: #63C2D0;
	outline: 2px solid #63C2D0;
}

.announcement-tiles-wrapper {
	display: flex;
	justify-content: center;
	text-align: center;
	flex-wrap: wrap;
	gap: 1em;
}

.single-tile-wrapper {
	display: flex;
	justify-content: center;
	text-align: center;
	flex-direction: row;
	align-items: center;
	height: 24px;
	width: 303px;
	border: 1px solid #D8ECFF;
	background-color: transparent;
	color: #63C2D0;
}

.single-tile-wrapper .dashicons {
	font-size: 24px;
	padding-bottom: 24px;
	padding-right: 24px;
}

.tile-title {
	color: black;
	margin-left: 0.5em;
}

.tile-data {
	margin-top: 0;
	margin-left: 1em;
	font-weight: 500;
	color: black;
}

.video-wrapper {
	width: 100%;
	max-width: 1600px;
	margin-bottom: 2em;
}

.single-post-gallery-wrapper {
	grid-template-columns: 1fr;
	margin-bottom: 2em;
}

.gallery-image a img {
	width: 200px;
	height: 200px;
}

.fancybox-slide--image .fancybox-image {
	animation: hero-animation 0.6s ease;
}

@keyframes hero-animation {
	0% {
		opacity: 0;
		transform: scale(0.8);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@media (min-width: 400px) {
	.single-post-gallery-wrapper {
		display: grid;
		grid-gap: 10px;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	.single-post-gallery-wrapper {
		display: grid;
		grid-gap: 10px;
		grid-template-columns: repeat(3, 1fr);
	}

	.single-tile-wrapper .dashicons {
		font-size: 56px;
		padding-bottom: 56px;
		padding-right: 56px;
	}

	.single-tile-wrapper {
		flex-direction: column;
		height: 176px;
		width: 407px;
	}

	.tile-title {
		margin-left: 0;
	}

	.tile-data {
		margin-top: 1em;
		margin-left: 0;
		font-weight: 500;
		color: black;
	}

	.video-wrapper {
		width: 80%;
	}
}

@media (min-width: 1300px) {
	.single-post-wrapper {
		margin-top: 70px;
	}

	.single-post-title-wrapper {
		width: 80%;
		margin: 48px 0;
	}
	
	.single-post-title-wrapper h1 {
		font-size: 51px;
		font-weight: 800;
		line-height: 76px;
	}

	.single-post-gallery-wrapper {
		display: grid;
		grid-gap: 10px;
		grid-template-columns: repeat(4, 1fr);
	}
}

