﻿/**
 * The Cyber Global — Apple Store–pattern stylesheet.
 *
 * Light #f5f5f7 canvas, slim dark nav, category icon strip,
 * “The latest” section titles, and horizontal rounded post cards.
 * Requirement ref: docs/REQUIREMENTS_AND_PROCESS.md §2 · Apple.com screenshot
 */

/* Design tokens — navy / teal news desk, reader-friendly contrast. */
:root {
	--tcg-bg: #f4f6f8;
	--tcg-surface: #ffffff;
	--tcg-text: #12161c;
	--tcg-muted: #5b6573;
	--tcg-accent: #0e7490;
	--tcg-new: #c2410c;
	--tcg-line: #dce3ea;
	--tcg-nav: #0b1220;
	--tcg-hero: #12343c;
	--tcg-picks: #e8eef3;
	--tcg-card-dark: #0b1220;
	--tcg-card-light: #ffffff;
	--tcg-font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--tcg-font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--tcg-max: 1180px;
	--tcg-rail-pad: max(20px, calc((100vw - 1180px) / 2));
	--tcg-radius: 10px;
}

/* Consistent box model. */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

/* Light canvas body. */
body {
	margin: 0;
	font-family: var(--tcg-font-body);
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	letter-spacing: -0.011em;
	color: var(--tcg-text);
	background: var(--tcg-bg);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--tcg-accent);
}

/* Skip link. */
.tcg-skip {
	position: absolute;
	left: -999px;
}
.tcg-skip:focus {
	left: 12px;
	top: 12px;
	z-index: 1000;
	background: #fff;
	color: #000;
	padding: 8px 12px;
}

/* ---------- Slim dark header (Apple global nav) ---------- */
.tcg-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--tcg-nav);
}

.tcg-header__inner {
	max-width: var(--tcg-max);
	margin: 0 auto;
	padding: 0 20px;
	min-height: 52px;
	display: grid;
	grid-template-columns: minmax(160px, auto) 1fr auto;
	align-items: center;
	gap: 16px;
}

.tcg-nav {
	display: flex;
	align-items: center;
	justify-content: center;
}

.tcg-header__tools {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.tcg-nav__list--account {
	margin-left: 0;
	padding-left: 12px;
	border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.tcg-brand__link {
	text-decoration: none;
	color: #f5f5f7;
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}

/* Bundled TCG emblem (or Customizer custom-logo img). */
.tcg-brand__logo,
.tcg-brand__link .custom-logo {
	display: block;
	height: 40px;
	width: auto;
	max-width: 140px;
	object-fit: contain;
}

.tcg-brand__link .custom-logo-link {
	display: inline-flex;
	line-height: 0;
}

.tcg-brand__name {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #f8fafc;
	white-space: nowrap;
}

.tcg-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0 28px;
}

.tcg-nav__list a {
	color: #e8eef4;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	opacity: 1;
	transition: color 0.15s ease;
}

.tcg-nav__list a:hover {
	color: #7dd3e8;
}

.tcg-nav__list--account a {
	font-weight: 600;
}

/* Thin promo strip under nav. */
.tcg-promostrip {
	background: #edf3f6;
	border-bottom: 1px solid var(--tcg-line);
	text-align: center;
	padding: 8px 20px;
	font-size: 13px;
	color: var(--tcg-muted);
}

.tcg-promostrip p {
	margin: 0;
	max-width: 820px;
	margin-inline: auto;
}

.tcg-promostrip a {
	text-decoration: none;
	white-space: nowrap;
	margin-left: 4px;
}

/* Blue text link chevron (Apple >). */
.tcg-chevron {
	display: inline-block;
	width: 0.45em;
	height: 0.45em;
	border-right: 1.5px solid currentColor;
	border-top: 1.5px solid currentColor;
	transform: rotate(45deg);
	margin-left: 0.2em;
	vertical-align: 0.1em;
}

.tcg-chevron--lg {
	width: 10px;
	height: 10px;
	border-width: 2px;
	margin: 0;
}

/* ---------- Store page heading ---------- */
.tcg-main--store {
	max-width: none;
	padding: 0 0 80px;
}

.tcg-storehead {
	max-width: var(--tcg-max);
	margin: 0 auto;
	padding: 56px 22px 36px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
}

.tcg-storehead__title {
	margin: 0;
	font-family: var(--tcg-font-display);
	font-size: clamp(40px, 7vw, 80px);
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: -0.045em;
	color: var(--tcg-text);
	flex: 1 1 auto;
}

.tcg-storehead__aside {
	flex: 0 1 280px;
	padding-bottom: 8px;
}

.tcg-storehead__lead {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.022em;
	color: var(--tcg-text);
}

.tcg-storehead__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.tcg-storehead__links a {
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
}

.tcg-storehead__links a:hover {
	text-decoration: underline;
}

/* ---------- Category icon strip ---------- */
.tcg-catstrip {
	max-width: 1100px;
	margin: 0 auto 28px;
	padding: 8px 22px 28px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.tcg-catstrip__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
	gap: 18px;
	min-width: max-content;
	width: 100%;
}

.tcg-catstrip__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--tcg-text);
	width: 92px;
}

.tcg-catstrip__icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 22px;
	font-weight: 600;
	color: var(--tcg-text);
	background: linear-gradient(180deg, #ffffff 0%, #e8e8ed 100%);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.tcg-catstrip__label {
	font-size: 12px;
	text-align: center;
	line-height: 1.25;
	color: var(--tcg-text);
}

.tcg-catstrip__link:hover .tcg-catstrip__icon {
	transform: scale(1.04);
	transition: transform 0.2s ease;
}

/* ---------- “The latest” rail sections ---------- */
.tcg-rail {
	padding: 28px 0 18px;
	opacity: 1;
}

.tcg-rail__head {
	max-width: var(--tcg-max);
	margin: 0 auto;
	padding: 0 22px 18px;
}

.tcg-rail__title {
	margin: 0;
	font-size: clamp(24px, 3.2vw, 36px);
	line-height: 1.15;
	letter-spacing: -0.03em;
	font-weight: 700;
}

.tcg-rail__title-strong {
	color: var(--tcg-text);
}

.tcg-rail__title-muted {
	color: var(--tcg-muted);
	font-weight: 600;
}

.tcg-rail__shell {
	position: relative;
}

.tcg-rail__track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 8px var(--tcg-rail-pad) 28px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.tcg-rail__track::-webkit-scrollbar {
	display: none;
}

/* Circular next control (Apple carousel chevron). */
.tcg-rail__next {
	position: absolute;
	right: 18px;
	top: 42%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: rgba(210, 210, 215, 0.92);
	color: #1d1d1f;
	cursor: pointer;
	display: grid;
	place-items: center;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	z-index: 5;
	transition: background 0.2s ease, transform 0.2s ease;
}

.tcg-rail__next:hover {
	background: #d2d2d7;
	transform: translateY(-50%) scale(1.04);
}

/* ---------- Post cards (Apple product cards) ---------- */
.tcg-card {
	flex: 0 0 min(312px, 78vw);
	scroll-snap-align: start;
	border-radius: var(--tcg-radius);
	overflow: hidden;
	min-height: 520px;
	position: relative;
	box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.08);
}

.tcg-card--dark {
	background: var(--tcg-card-dark);
	color: #f5f5f7;
}

.tcg-card--light {
	background: var(--tcg-card-light);
	color: var(--tcg-text);
}

.tcg-card__hit {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 520px;
	text-decoration: none;
	color: inherit;
	padding: 28px 24px 0;
}

.tcg-card__copy {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
}

.tcg-card__eyebrow {
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--tcg-muted);
	text-transform: none;
}

.tcg-card--dark .tcg-card__eyebrow {
	color: #a1a1a6;
}

.tcg-card__eyebrow--new {
	color: var(--tcg-new) !important;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 12px;
}

.tcg-card__title {
	margin: 0 0 8px;
	font-size: 26px;
	line-height: 1.15;
	letter-spacing: -0.03em;
	font-weight: 700;
}

.tcg-card__desc {
	margin: 0;
	font-size: 15px;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: var(--tcg-muted);
	max-width: 28ch;
}

.tcg-card--dark .tcg-card__desc {
	color: #a1a1a6;
}

.tcg-card__visual {
	margin-top: auto;
	flex: 1 1 auto;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 260px;
	padding: 16px 0 0;
	position: relative;
}

.tcg-card__img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	object-position: center;
	border-radius: 18px 18px 0 0;
}

.tcg-card__placeholder {
	display: block;
	width: 100%;
	height: 260px;
	border-radius: 18px 18px 0 0;
	background:
		radial-gradient(circle at 50% 40%, rgba(0, 102, 204, 0.35), transparent 55%),
		linear-gradient(160deg, #2c2c2e 0%, #000 70%);
}

.tcg-card--light .tcg-card__placeholder {
	background:
		radial-gradient(circle at 50% 30%, rgba(0, 102, 204, 0.18), transparent 50%),
		linear-gradient(180deg, #e8e8ed 0%, #f5f5f7 100%);
}

.tcg-card__hit:hover .tcg-card__title {
	color: var(--tcg-accent);
}

.tcg-card--dark .tcg-card__hit:hover .tcg-card__title {
	color: #2997ff;
}

/* ---------- Archive / single (light theme) ---------- */
.tcg-main:not(.tcg-main--store) {
	max-width: var(--tcg-max);
	margin: 0 auto;
	padding: 40px 22px 80px;
}

.tcg-archive-head__title,
.tcg-article__title {
	letter-spacing: -0.035em;
	font-weight: 700;
}

.tcg-summaries {
	display: flex;
	flex-direction: column;
}

.tcg-summary {
	padding: 28px 0;
	border-bottom: 1px solid var(--tcg-line);
}

.tcg-summary__meta {
	color: var(--tcg-muted);
	font-size: 13px;
	margin: 0 0 8px;
}

.tcg-summary__meta a {
	text-decoration: none;
}

.tcg-summary__title {
	margin: 0 0 8px;
	font-size: 24px;
	letter-spacing: -0.025em;
}

.tcg-summary__title a {
	color: var(--tcg-text);
	text-decoration: none;
}

.tcg-summary__title a:hover {
	color: var(--tcg-accent);
}

.tcg-summary__excerpt {
	color: var(--tcg-muted);
}

.tcg-summary__more a {
	text-decoration: none;
	font-weight: 500;
}

.tcg-article__cats a {
	text-decoration: none;
}

.tcg-article__meta {
	color: var(--tcg-muted);
}

.tcg-article__media img {
	border-radius: 18px;
}

.tcg-article__source {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--tcg-line);
}

.tcg-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border-radius: 980px;
	font-weight: 500;
	font-size: 14px;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.tcg-btn--primary {
	background: var(--tcg-accent);
	color: #fff;
}

.tcg-btn--ghost {
	background: transparent;
	color: var(--tcg-accent);
	border: 1px solid var(--tcg-line);
}

.tcg-btn:hover {
	opacity: 0.9;
}

/* Footer on light canvas. */
.tcg-footer {
	background: #f5f5f7;
	border-top: 1px solid var(--tcg-line);
	padding: 40px 22px 56px;
	color: var(--tcg-muted);
	font-size: 12px;
}

.tcg-footer__inner {
	max-width: var(--tcg-max);
	margin: 0 auto;
}

.tcg-footer__brand {
	color: var(--tcg-text);
	font-weight: 600;
	font-size: 14px;
	margin: 0 0 4px;
}

.tcg-footer__tagline {
	margin: 0 0 12px;
	font-size: 13px;
	font-weight: 500;
	color: var(--tcg-accent, #0e7490);
	letter-spacing: 0.01em;
}

.tcg-footer__nav {
	list-style: none;
	padding: 0;
	margin: 16px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
}

.tcg-footer__nav a {
	text-decoration: none;
	color: var(--tcg-muted);
}

/* Reveal motion. */
.tcg-rail[data-reveal].is-visible {
	animation: tcgFadeUp 0.65s ease both;
}

@keyframes tcgFadeUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive store head stack. */
@media (max-width: 734px) {
	.tcg-storehead {
		flex-direction: column;
		align-items: flex-start;
		padding-top: 40px;
		gap: 18px;
	}

	.tcg-storehead__aside {
		flex-basis: auto;
		max-width: 100%;
	}

	.tcg-card {
		flex-basis: min(280px, 85vw);
		min-height: 460px;
	}

	.tcg-card__hit {
		min-height: 460px;
	}

	.tcg-rail__next {
		display: none;
	}

	.tcg-header__inner {
		grid-template-columns: auto 1fr auto;
		padding-top: 8px;
		padding-bottom: 8px;
	}

	.tcg-nav {
		justify-content: flex-start;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}

/* Header search toggle. */
.tcg-header-search {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: 12px;
}

.tcg-header-search__toggle {
	background: transparent;
	border: 0;
	color: rgba(255, 255, 255, 0.92);
	cursor: pointer;
	padding: 6px;
	display: flex;
	align-items: center;
}

.tcg-header-search__form input[type="search"] {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	color: #fff;
	padding: 6px 12px;
	min-width: 160px;
}

/* Two-column layout with sidebar. */
.tcg-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 32px;
	max-width: var(--tcg-max);
	margin: 0 auto;
	padding: 32px 22px 64px;
}

.tcg-sidebar {
	position: sticky;
	top: 24px;
	align-self: start;
}

.tcg-sidebar__title {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--tcg-muted);
	margin: 0 0 12px;
}

.tcg-sidebar__widget {
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tcg-sidebar-list__count {
	color: var(--tcg-muted);
	font-size: 12px;
}

.tcg-sidebar img,
.tcg-sidebar iframe,
.tcg-sidebar video {
	max-width: 100%;
	height: auto;
}

.tcg-sidebar-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tcg-sidebar-list li {
	margin: 0 0 8px;
	font-size: 14px;
}

.tcg-sidebar-search {
	display: flex;
	gap: 8px;
}

.tcg-sidebar-search input {
	flex: 1;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 8px;
	padding: 8px 10px;
}

/* Tag chips. */
.tcg-tags {
	list-style: none;
	padding: 0;
	margin: 8px 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.tcg-tag {
	display: inline-block;
	font-size: 11px;
	padding: 3px 8px;
	border-radius: 999px;
	background: rgba(0, 102, 204, 0.1);
	color: var(--tcg-accent);
	text-decoration: none;
}

.tcg-card__tags .tcg-tags {
	margin-top: 10px;
}

/* AI assistant widget. */
.tcg-assistant {
	max-width: var(--tcg-max);
	margin: 48px auto 64px;
	padding: 28px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.tcg-assistant__title {
	margin: 0 0 8px;
	font-size: 24px;
}

.tcg-assistant__lead {
	margin: 0 0 16px;
	color: var(--tcg-muted);
}

.tcg-assistant__form {
	display: grid;
	grid-template-columns: 1fr auto auto;
	gap: 10px;
}

.tcg-assistant__form input,
.tcg-assistant__form select {
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 10px;
	padding: 10px 12px;
}

.tcg-assistant__form button {
	background: var(--tcg-accent);
	color: #fff;
	border: 0;
	border-radius: 10px;
	padding: 10px 18px;
	cursor: pointer;
}

.tcg-assistant__items {
	list-style: none;
	padding: 0;
	margin: 16px 0 0;
}

.tcg-assistant__items li {
	margin: 0 0 10px;
}

.tcg-assistant__meta {
	display: block;
	font-size: 12px;
	color: var(--tcg-muted);
}

@media (max-width: 900px) {
	.tcg-layout {
		grid-template-columns: 1fr;
	}

	.tcg-sidebar {
		position: static;
	}

	.tcg-assistant__form {
		grid-template-columns: 1fr;
	}
}

/* ---------- Homepage: CNET-density, teal/navy theme ---------- */
.tcg-main--home {
	max-width: none;
	padding: 0 0 64px;
	background: var(--tcg-bg);
}

.tcg-home {
	max-width: var(--tcg-max);
	margin: 0 auto;
	padding: 20px 20px 0;
}

.tcg-stage {
	display: grid;
	grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
	gap: 16px;
	margin-bottom: 28px;
	align-items: stretch;
}

.tcg-picks {
	background: var(--tcg-picks);
	border-radius: 10px;
	padding: 18px 14px 14px;
	display: flex;
	flex-direction: column;
	align-self: stretch;
	height: 100%;
	box-sizing: border-box;
}

.tcg-picks__list {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1 1 auto;
}

.tcg-picks__item {
	border-top: 1px dotted #c5d0da;
	margin: 0;
	padding: 0;
}

.tcg-picks__btn {
	display: block;
	width: 100%;
	text-align: left;
	background: transparent;
	border: 0;
	border-left: 3px solid transparent;
	padding: 12px 8px 12px 10px;
	cursor: pointer;
	color: inherit;
	font: inherit;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.tcg-picks__item.is-active .tcg-picks__btn,
.tcg-picks__btn:hover {
	background: rgba(14, 116, 144, 0.08);
	border-left-color: var(--tcg-accent);
}

.tcg-picks__kicker {
	display: block;
	margin: 0 0 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--tcg-accent);
}

.tcg-picks__headline {
	display: block;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 700;
	color: var(--tcg-text);
}

.tcg-picks__eyebrow {
	margin: 0 0 4px;
	font-size: 12px;
	font-weight: 600;
	color: var(--tcg-accent);
}

.tcg-picks__title {
	margin: 0 0 8px;
	font-size: 22px;
	line-height: 1.1;
	letter-spacing: -0.03em;
}

.tcg-picks__lead {
	margin: 0 0 12px;
	font-size: 13px;
	line-height: 1.4;
	color: var(--tcg-muted);
}

.tcg-slider {
	display: flex;
	flex-direction: column;
	align-self: stretch;
	height: 100%;
	min-height: 420px;
	background: var(--tcg-surface);
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--tcg-line);
	box-shadow: 0 8px 24px rgba(11, 18, 32, 0.06);
	box-sizing: border-box;
}

.tcg-slider__viewport {
	position: relative;
	flex: 1 1 auto;
	min-height: 360px;
}

.tcg-slide {
	display: none;
	grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.95fr);
	height: 100%;
	min-height: 360px;
}

.tcg-slide.is-active {
	display: grid;
	animation: tcgSlideIn 0.35s ease;
}

@keyframes tcgSlideIn {
	from {
		opacity: 0.55;
		transform: translateX(12px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.tcg-slide__media {
	display: block;
	min-height: 360px;
	background: #1a2a32;
	overflow: hidden;
}

.tcg-slide__img,
.tcg-slide__ph {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	display: block;
}

.tcg-slide__ph {
	background: linear-gradient(145deg, #1a4a52, #0b1220 70%);
}

.tcg-slide__body {
	background: var(--tcg-hero);
	color: #f3faf9;
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.tcg-slide__kicker {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #9ad8e3;
}

.tcg-slide__title {
	margin: 0 0 12px;
	font-size: clamp(20px, 2.2vw, 28px);
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.tcg-slide__title a {
	color: inherit;
	text-decoration: none;
}

.tcg-slide__title a:hover {
	text-decoration: underline;
}

.tcg-slide__excerpt {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.5;
	color: #cfe3e6;
}

.tcg-slide__meta {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	font-size: 13px;
	color: #9bb4b8;
}

.tcg-slide__more {
	color: #7dd3e8;
	font-weight: 700;
	text-decoration: none;
}

.tcg-slide__more:hover {
	text-decoration: underline;
}

.tcg-slider__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 10px 12px;
	background: #0f1a24;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tcg-slider__btn {
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.tcg-slider__btn:hover {
	background: var(--tcg-accent);
}

.tcg-slider__dots {
	display: flex;
	gap: 8px;
	align-items: center;
}

.tcg-slider__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
}

.tcg-slider__dot.is-active {
	background: #7dd3e8;
	transform: scale(1.2);
}

.tcg-block {
	margin: 0 0 36px;
}
.tcg-block__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 14px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--tcg-text);
}

.tcg-block__title {
	margin: 0;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.tcg-block__more {
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.tcg-tiles {
	display: grid;
	gap: 16px 14px;
}

.tcg-tiles--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tcg-tiles--5 {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tcg-tile__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.tcg-tile__media {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 4px;
	background: #d7dee6;
	margin-bottom: 8px;
}

.tcg-tile__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tcg-tile__ph {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(160deg, #c5d4dc, #8aa3ad);
}

.tcg-tile__kicker {
	margin: 0 0 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--tcg-accent);
}

.tcg-tile__title {
	margin: 0 0 6px;
	font-size: 14px;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: -0.015em;
}

.tcg-tile__link:hover .tcg-tile__title {
	color: var(--tcg-accent);
}

.tcg-tile__date {
	font-size: 12px;
	color: var(--tcg-muted);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

@media (max-width: 1020px) {
	.tcg-tiles--5 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 860px) {
	.tcg-stage {
		grid-template-columns: 1fr;
	}

	.tcg-slide,
	.tcg-slide.is-active {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.tcg-slider__viewport {
		min-height: 0;
	}

	.tcg-slide__media,
	.tcg-slide__img,
	.tcg-slide__ph {
		min-height: 180px;
		height: 180px;
	}

	.tcg-tiles--4,
	.tcg-tiles--5 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.tcg-tiles--4,
	.tcg-tiles--5 {
		grid-template-columns: 1fr;
	}

	.tcg-nav__list {
		gap: 0 14px;
	}

	.tcg-nav__list a {
		font-size: 13px;
	}
}

