.bg-gradient {
	background: linear-gradient(to bottom, #f2f1f0 0%,#ffffff 100%);
}

.bg-light-alt {
	background: linear-gradient(to bottom, #f2f1f0 55%,#ffffff 100%);
}

.button-pill {
	border-radius: 1em;
}

.icon-sdk {
	margin-bottom: 1.5em;
	width: 96px;
	height: 96px;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url("/assets/elements/icons/sdk-15/sdk-15-96x96.png");
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), only screen and (min-resolution: 144dpi) {
	.icon-sdk {
		background-image: url("/assets/elements/icons/sdk-15/sdk-15-96x96_2x.png");
	}
}

.developer-router-links .icon-swiftui {
	margin-bottom: 1.5em;
}

/* ========== Grid Changes ========== */
#main section.section {
	padding-top: 4em;
	padding-bottom: 4em;
}
#main section .section-content .row {
	margin-left: 0;
	margin-right: 0;
}
#main section .section-content .row > .column {
	padding: 0;
}

@media only screen and (max-width: 1068px) {
	#main section .section-content .row {
		margin-left: 0;
		margin-right: 0;
	}
	#main section .section-content .row > .column {
		padding: 0;
	}
}

@media only screen and (max-width: 735px) {
	#main section.section {
		padding-top: 2em;
		padding-bottom: 2em;
	}
	#main section .section-content .row {
		margin-left: 0;
		margin-right: 0;
	}
	#main section .section-content .row > .column {
		padding: 1em 0;
	}
}

/* === DARK MODE === */
body[data-color-scheme="dark"].dmf .bg-light-alt {background: var(--dark);}

