/* Sections
==================================== */
.module-sections-wrapper{
	width: 100%;
	margin-top: var(--colsXL);
	grid-column: 1 / -1;
	display: grid;
	grid-auto-flow: row;
	grid-auto-rows: min-content;
	row-gap: calc(var(--fontHeight)*2);
}
.module-section{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: min-content;
	row-gap: var(--fontHeight);
}
@media (max-width: 768px){
	.module-sections-wrapper{
		margin-top: calc(var(--fontHeight)*2);
	}
	.page-project .module-sections-wrapper{
		margin-top: calc(var(--fontHeight)*5);
	}
}

/*Title*/
.module-section_title{
	grid-column: 1 / -1;
	text-align: center;
	text-transform: uppercase;
}
.module-section:not(:first-child) .module-section_title:first-child{
	margin-top: 1px;
}

/*Content*/
.module-section_content{
	width: 500px;
	max-width: calc(50vw - var(--sides));
	padding-right: var(--sides);
	grid-column: 2;
}
.module-section_content p:not(:last-child){
	margin-bottom: var(--fontHeight);
}
@media (max-width: 768px){
	.module-section_content{
		width: 100%;
		max-width: none;
		grid-column: 1 / -1;
	}
}
@media (max-width: 320px){
	.module-section_content{
		padding: 0;
	}
}
