body[data-color-scheme="light"] {
	color-scheme: light;
	--card-color: #ffffff;
	--header-bg-color: #f9f9f9;
	--body-bg-color: #f9f9f9;
}

body[data-color-scheme="dark"] {
	color-scheme: dark;
	--card-color: #111;
	--header-bg-color: #141414;
	--body-bg-color: #141414;
}

/* ========== Hero Image ========== */
.m-hero {
	display: none;
}

@media only screen and (max-width: 734px) {
	.d-hero {
		display: none !important;
	}

	.m-hero {
		display: block;
	}

	.m-hero-text {
		margin: 2em 0 3em;
	}
}

.section-hero-img {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: 800px;
	overflow: hidden;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 20) 100%),
		url("/business/images/hero-business_2x.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #f5f5f7 !important;
}

@supports (background-image: url("image.webp")) {
	.section-hero-img {
		background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 20) 100%),
			url("/business/images/hero-business_2x.webp");
	}
}

@media only screen and (max-width: 1068px) {
	.section-hero-img {
		height: 700px;
	}
}

.section-hero-img .section-content {
	padding-bottom: 6em;
}

/* ========== Custom Styles ========== */

.jump-links {
	display: flex;
	justify-content: center;
	gap: 0.75em;
}

@media only screen and (max-width: 320px) {
	.jump-links {
		flex-direction: column;
	}	
}


.jump-links a {
	color: rgb(0, 102, 204) !important;
}

body[data-color-scheme='dark'] .jump-links a,
body[data-color-scheme='light'] .jump-links a {
	color: rgb(41, 151, 255) !important;
}



.jump-links .divider-bar {
	color: #f5f5f7;
	margin: 0 0.5em;
}

@media only screen and (max-width: 734px) {
	.jump-links .divider-bar {
		display: none;
	}
}

.section-resources {
	background-color: var(--body-bg-color);
}

.tile-wrap {
	padding: 20px;
	background-color: var(--card-color);
	border-radius: 0.5em;
	border: 1px solid var(--color-callout-border);
	transition: box-shadow 0.2s ease-in-out;
	height: 100%;
}

.tile-wrap-flex {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.5em;
}

.tile-wrap-image {
	padding: 0;
	overflow: hidden;
}

.tile-wrap-image h4,
.tile-wrap-image h5,
.tile-wrap-image p,
.tile-wrap-image ul {
	padding: 0 20px;
}

.tile-wrap-image ul {
	padding-bottom: 20px;
}

.tile-card-img {
	margin-bottom: 1em;
}

.tile-wrap-padding-large {
	padding: 40px;
}

@media only screen and (max-width: 1068px) {
	.tile-wrap-padding-large {
		padding: 20px;
	}
}

.app-design-book {
	max-width: 250px;
	border-radius: 5px;
}

@media only screen and (max-width: 734px) {
	.a11y-img {
		max-width: 64px;
		margin-bottom: 0.3em;
	}
}

.margin-bottom-small-0 {
	margin-bottom: 1em;
}

/* === Grid === */
.resource-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;
	grid-row-gap: 20px;
}

.resource-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px;
	grid-row-gap: 20px;
}

/* .resource-grid-2 * {
	
} */

h4 + .resource-grid,
h4 + .resource-grid-2 {
	margin-top: 1em;
}

.resource-grid-gap {
	margin-top: 20px;
}

.resource-grid-item {
	width: 100%;
	grid-column: span 1;
}

.grid-item-2 {
	grid-column: span 2;
}

.grid-item-3 {
	grid-column: span 3;
}

.links.small {
	margin-bottom: 0 !important;
}

.links.small:last-child {
	margin-bottom: 0 !important;
}

#main section.section {
	padding-top: 4em;
	padding-bottom: 3em;
}

#main section .section-content .row {
	margin-left: 0;
	margin-right: 0;
}
#main section .section-content .row.header-row {
	margin-bottom: 2em;
}

#main section .section-content .row > .column {
	padding: 0;
}

/* #main section.section-overview {
	padding-bottom: 0em;
} */

#main section.section-resources {
	margin-top: 2em;
	margin-bottom: 2em;
	padding-top: 4em;
	padding-bottom: 4em;
}

@media only screen and (max-width: 1068px) {
	.resource-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.grid-item-2,
	.grid-item-3 {
		grid-column: span 2;
	}

	#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: 734px) {
	.resource-grid,
	.resource-grid-2 {
		grid-template-columns: 1fr;
	}

	.grid-item-2,
	.grid-item-3 {
		grid-column: auto;
	}

	#main section.section {
		padding-top: 3em;
		padding-bottom: 2em;
	}
	#main section .section-content .row {
		margin-left: 0;
		margin-right: 0;
	}
	#main section .section-content .row > .column {
		padding: 0;
	}
}
