/* ========== CSS Variables ========== */
:root {
	--sk-tile-padding: 1.5em 0.5em;
}

/* ========== Utility Classes ========== */
.bg-alt {
	background-color: #f5f5f7;
}

.main {
	overflow: hidden;
}

/* ========== Responsive Layout Utilities ========== */
@media only screen and (max-width: 1068px) {
	.column-flex-center {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
}

/* ========== Icon Styles ========== */
.icon-checkcircle::before,
.icon-resetcircle::before {
	margin-left: -1.8em;
	padding-right: 0.7em;
	color: #007d1b;
	font-weight: 400;
}
.icon-resetcircle::before {
	color: #ee0000;
}

@media only screen and (max-width: 734px) {
	.icon-checkcircle::before,
	.icon-resetcircle::before {
		display: block;
		margin-left: 0;
		padding-right: 0;
		padding-bottom: 0.2em;
	}
}

.icon-experts {
	width: 128px;
	height: 128px;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url("/app-store/features/images/support.svg");
}

.icon-testflight {
	margin-bottom: 1em;
	width: 128px;
	height: 128px;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url("/assets/elements/icons/testflight/testflight-128x128.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-testflight {
		background-image: url("/assets/elements/icons/testflight/testflight-128x128_2x.png");
	}
}

/* ========== Device Mockups and Screens ========== */
.lockup-hero {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 1em;
}

.lockup-distribute {
	margin-bottom: 2em;
	max-width: 980px;
}

.screen-shareplay {
	background: url("/programs/images/screen-shareplay-large.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) {
	.screen-shareplay {
		background-image: url("/programs/images/screen-shareplay-large_2x.png");
	}
}

.screen-analytics {
	background-image: url("/programs/images/screen-analytics-large.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) {
	.screen-analytics {
		background-image: url("/programs/images/screen-analytics-large_2x.png");
	}
}

/* ========== Content Styles ========== */
.section ul li {
	margin-top: 0.8em;
}

.section-capabilities .column {
	align-self: center;
}

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

/* ========== Program Comparison Tiles ========== */
.tile-program {
	background: #fff;
	padding: 2em;
	height: 100%;
	display: flex;
	flex-direction: column;
	margin-bottom: 1em;
}

.tile-program .tile-content {
	flex: 1;
}

.tile-program h3 {
	font-size: 1.5em;
	margin-bottom: 0.5em;
	line-height: 1.2;
}

.tile-program .program-subhead {
	font-size: 1.2em;
	font-weight: 600;
	margin-bottom: 1.5em;
	/* color: #1d1d1f; */
}

.tile-program-featured {
	border: 2px solid #0071e3;
	box-shadow: 0 4px 16px rgba(0, 113, 227, 0.2);
}

.program-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.program-features li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1em;
	line-height: 1.4;
}

.program-features li sf-symbol {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	margin-right: 12px;
	margin-top: 2px;
}

.program-features li span {
	flex: 1;
	font-size: 0.95em;
}

/* ========== Dark Mode ========== */
body[data-color-scheme="dark"]:not(.programs-enroll) .section.section-hero,
body[data-color-scheme="dark"] .section.section-distribution {
	background: var(--fill-override);
	color: var(--glyph-gray-override);
}
body[data-color-scheme="dark"]:not(.programs-enroll) .section.section-hero *,
body[data-color-scheme="dark"] .section.section-distribution * {
	color: var(--glyph-gray-override);
}
body[data-color-scheme="dark"]:not(.programs-enroll) .section.section-hero h1,
body[data-color-scheme="dark"] .section.section-distribution h2 {
	color: var(--glyph-gray-override);
}

body[data-color-scheme="dark"] .tile-program {
	background: #1d1d1f;
	color: #f5f5f7;
}

/* body[data-color-scheme="dark"] .tile-program .program-subhead {
	color: #f5f5f7;
} */

body[data-color-scheme="dark"] .tile-program-featured {
	border-color: #0077ed;
	box-shadow: 0 4px 16px rgba(0, 119, 237, 0.3);
}

/* ========== Media Queries - Tablet (1068px) ========== */
@media only screen and (max-width: 1068px) {
	.lockup-distribute {
		max-width: 692px;
	}

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

	.tile-program {
		padding: 1.5em;
	}
}

/* ========== Media Queries - Mobile (734px) ========== */
@media only screen and (max-width: 734px) {
	.section-capabilities .column {
		align-self: top;
	}

	.lockup-distribute {
		margin-top: 1em;
		max-width: 320px;
	}

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

	.tile-program {
		padding: 1.5em;
		margin-bottom: 1em;
	}

	.tile-program h3 {
		font-size: 1.3em;
	}

	.program-features li {
		margin-bottom: 0.8em;
	}
}
