/**
 * Section: Grid Items Component Styles
 * Figma reference: Desktop (1:1099) and Mobile (1:847)
 */

.section-grid-items {
	width: 100%;
	padding: 0;
	margin: 0;
}

.section-grid-items__container {
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
	padding: 0;
}

/* ========================================
   DESKTOP VERSION (1024px+)
   ======================================== */
@media (min-width: 1024px) {
	.section-grid-items__container {
		padding: 95.89px 0 130px 0;
	}
	
	.section-grid-items__headline {
		display: flex;
		justify-content: center;
		margin-bottom: 16px;
	}
	
	.section-grid-items__heading {
		/* Typography handled by .typog-h2 */
		text-align: center;
		max-width: 762px;
	}
	
	.section-grid-items__body {
		/* Typography handled by .text-body */
		text-align: center;
		max-width: 1090px;
		margin: 0 auto 24px auto;
		padding: 0 95px;
	}
	
	/* Grid spacing from headline */
	.section-grid-items__container > .grid-items {
		margin-top: 0;
		padding-top: 0;
	}
}

/* ========================================
   MOBILE VERSION (below 1024px)
   ======================================== */
@media (max-width: 1023px) {
	.section-grid-items__container {
		padding: 68px 0 80px 0;
	}
	
	.section-grid-items__headline {
		display: flex;
		justify-content: center;
		margin-bottom: 16px;
		padding: 0 24px;
	}
	
	.section-grid-items__heading {
		/* Typography handled by .typog-h2 */
		text-align: center;
		max-width: 327px;
	}
	
	.section-grid-items__body {
		/* Typography handled by .text-body */
		text-align: center;
		max-width: 327px;
		margin: 0 auto 24px auto;
		padding: 0 24px;
	}
	
	/* Grid spacing from headline */
	.section-grid-items__container > .grid-items {
		margin-top: 0;
		padding-top: 0;
	}
}

