/* About Content Module */
.about-content {
	padding: 40px 16px;
	background: #fff;
}

.about-content__intro {
    background: #F7F7F7;
    padding: 24px;
    margin-bottom: 24px;
    gap: 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-content__logo {
	display: block;
	max-width: 180px;
	margin: 0 0 16px 0;
}

.about-content__description p{
	margin: 0 0 10px 0;
}

.about-content__block {
	display: flex;
	flex-direction: row;
	gap: 24px;
	align-items: flex-start;
	background: #F7F7F7;
	padding: 24px;
	margin-bottom: 48px;
	height:100%;
}

.about-content__block.is-right .about-content__text {
	order: 2;
}
.about-content__block.is-right .about-content__media {
	order: 1;
}

.about-content__text{
	width:60%;
	display: flex;
	height: 100%;
	flex-direction: column;
	gap: 32px;
	padding: 0;
	height: 400px;
}
.about-content__media{width:40%;}

.about-content__icon {
	width: 24px;
	height: 24px;
	object-fit: contain;
	margin-bottom: 8px;
}

.about-content__title {
	font-size: 28px;
	margin:0px;
	font-weight: 700;
}

.about-content__excerpt {
	color: var(--Brand-Colors-Text-Colors-Charcoal, #37373E);

	/* Mobile Typography/Body Large */

	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 24px */
	margin-bottom:0p
}

.about-content__image {
	width: 100%;
	height: auto;
	display: block;
	width: auto;
    height: 100%;
}
@media(max-width:768px){
	.about-content__block{
		flex-direction: column;
		
	}
	.about-content__block:not(:last-child){
		margin-bottom:32px;
	}
	.about-content__block:last-child{
		margin-bottom:0px;
	}
	.about-content__text{
		width:100%;
		height:fit-content;
		order:2;
		gap:16px;
	}
	.about-content__media{
		width:100%;
		order:1;
	}
	.about-content__title{
		font-size:32px;
	}
	.about-content__excerpt{
		font-size:16px;
	}
}
@media(max-width: 992px){
	.about-content__block {
		grid-template-columns: 1fr;
	}
	.about-content__block.is-right .about-content__text,
	.about-content__block.is-right .about-content__media {
		order: initial;
	}
}


