/* coverage-pages.css — /coverage (scoped under tt-apps-page--coverage) */

.tt-apps-page--coverage {
	--tt-fg-0: #ffffff;
	--cov-muted: rgba(255, 255, 255, 0.62);
	--cov-icon-fg: var(--tt-fg-0);
	--tt-bg-0: #000000;
}

.cov-section-label {
	margin: 56px 0 12px;
	font-family: Montserrat, "Plus Jakarta Sans", Inter, sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--tt-fg-0);
}
.cov-section-label--first {
	margin-top: 32px;
}
.cov-h3__count {
	font-size: 16px;
	font-weight: 500;
	color: var(--cov-muted);
	font-variant-numeric: tabular-nums;
}
.cov-note {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--cov-muted);
}

/* Exchange register — borderless row list */
.cov-venue-list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 36px 32px;
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}
.cov-venue {
	display: flex;
	align-items: center;
	gap: 18px;
	min-width: 0;
}
.cov-venue__logo-wrap {
	flex: 0 0 56px;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cov-venue__logo {
	width: 48px;
	height: 48px;
	object-fit: contain;
	display: block;
}
.cov-venue__logo--screen {
	mix-blend-mode: screen;
}
.cov-venue__fallback {
	display: none;
	width: 48px;
	height: 48px;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
	color: var(--cov-muted);
}
.cov-venue__copy {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}
.cov-venue__name {
	font-family: Montserrat, "Plus Jakarta Sans", Inter, sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--tt-fg-0);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.cov-venue__markets {
	font-size: 14px;
	line-height: 1.45;
	color: var(--cov-muted);
}
.cov-venue-list__loading {
	grid-column: 1 / -1;
	padding: 24px 0;
	font-size: 16px;
	color: var(--cov-muted);
	list-style: none;
}

/* Product surfaces — borderless card grid */
.cov-surfaces-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 40px 48px;
	margin: 0;
	padding: 0;
}
.cov-surface-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.15s ease;
}
.cov-surface-card:hover,
.cov-surface-card:focus-visible {
	opacity: 0.78;
	outline: none;
}
.cov-surface-card__icon {
	width: 22px;
	height: 22px;
	color: var(--cov-icon-fg);
}
.cov-surface-card__icon svg {
	display: block;
	width: 22px;
	height: 22px;
}
.cov-surface-card__title {
	font-family: Montserrat, "Plus Jakarta Sans", Inter, sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--tt-fg-0);
	text-decoration: underline;
	text-underline-offset: 4px;
}
.cov-surface-card__body {
	font-size: 14px;
	line-height: 1.55;
	color: var(--cov-muted);
}

@media (max-width: 991px) {
	.cov-surfaces-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px 40px;
	}
	.cov-venue-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 32px 36px;
	}
}

@media (max-width: 768px) {
	.cov-venue-list {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.cov-surfaces-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}
