@charset "utf-8";

/* TerraMet site styles — self-contained, no external font/image dependencies. */

/* ----- RESET ----- */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	color: #2f6fb0;
}

a:hover {
	color: #1d4f86;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
}

a img {
	outline: none;
}

p, ul {
	margin-bottom: 1em;
}

/* ----- PAGE ----- */
html {
	background-color: #f4f7fa;
}

body {
	color: #1e2a36;
	background-color: #f4f7fa;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
		Arial, sans-serif;
	font-size: 17px;
	line-height: 1.6em;
	padding: 24px 0 0;
}

strong {
	color: #1d4f86;
}

main {
	margin: 0 auto;
	padding: 0 20px 2em;
	max-width: 760px;
}

/* ----- HEADER ----- */
header {
	max-width: 760px;
	margin: 0 auto 2em;
	padding: 0 20px 24px;
	border-bottom: 1px solid #d8e0e8;
}

header .app-store-card {
	margin: 0;
}

/* ----- HEADINGS ----- */
h2 {
	color: #14324d;
	font-size: 1.6em;
	line-height: 1.2em;
	margin: 1.2em 0 .4em;
}

h3 {
	color: #2a3a47;
	font-size: 1.25em;
	line-height: 1.2em;
	margin: 1em 0 .4em;
}

/* ----- LISTS ----- */
li {
	list-style: disc;
	margin-left: 1.2em;
}

/* ----- APP STORE CARD ----- */
.app-store-card {
	display: flex;
	align-items: center;
	gap: 16px;
	max-width: 420px;
	margin: 1.5em 0;
	padding: 16px;
	background-color: #ffffff;
	border: 1px solid #d8e0e8;
	border-radius: 14px;
	box-shadow: 0 1px 3px rgba(20, 50, 77, 0.08);
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.app-store-card:hover {
	color: inherit;
	box-shadow: 0 4px 12px rgba(20, 50, 77, 0.14);
	transform: translateY(-1px);
}

.app-store-card .asc-icon {
	width: 72px;
	height: 72px;
	border-radius: 16px;
	flex-shrink: 0;
}

.app-store-card .asc-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.app-store-card .asc-name {
	font-size: 1.2em;
	font-weight: 700;
	color: #14324d;
	line-height: 1.2;
}

.app-store-card .asc-meta {
	font-size: 0.9em;
	color: #6a7682;
	line-height: 1.2;
}

.app-store-card .asc-badge {
	height: 40px;
	width: auto;
	margin-top: 6px;
}

/* ----- FOOTER ----- */
footer {
	text-align: center;
	padding: 3em 0 2em;
	color: #6a7682;
	font-size: 0.9em;
}

footer a {
	text-decoration: underline;
}
