:root {
	--tc-primary: #176b4d;
	--tc-primary-dark: #0f4f39;
	--tc-secondary: #64c987;
	--tc-accent: #f2b84b;
	--tc-background: #f5f7f6;
	--tc-surface: #ffffff;
	--tc-text: #17211d;
	--tc-muted: #68756f;
	--tc-border: #e1e8e4;
	--tc-danger: #c63d3d;
	--tc-warning: #d68a16;
	--tc-success: #218c5b;
	--tc-radius: 8px;
	--tc-shadow: 0 16px 38px rgba(23, 33, 29, 0.1);
	--tc-focus: 0 0 0 3px rgba(100, 201, 135, 0.45);
	--tc-header-logo-height: 46px;
	--tc-header-padding-y: 10px;
	--tc-header-icon-size: 42px;
	--tc-header-greeting-size: 15px;
	--tc-home-title-size: 46px;
	--tc-article-title-size: 41px;
	--tc-article-body-size: 16px;
	--tc-article-content-width: 760px;
	--tc-card-title-size: 16px;
	--tc-card-excerpt-size: 14px;
	--tc-service-icon-size: 38px;
	--tc-service-label-size: 13px;
	--tc-footer-icon-size: 22px;
	--tc-footer-label-size: 12px;
	--tc-footer-height: 56px;
}

* {
	box-sizing: border-box;
}

html {
	background: var(--tc-background);
	color: var(--tc-text);
	font-size: 16px;
	line-height: 1.5;
}

body {
	margin: 0;
	background: var(--tc-background);
	color: var(--tc-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	text-rendering: optimizeLegibility;
}

body.tc-app-dark {
	--tc-background: #101814;
	--tc-surface: #17211d;
	--tc-text: #f2f7f4;
	--tc-muted: #b7c8bf;
	--tc-border: rgba(255, 255, 255, 0.14);
	--tc-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

body.tc-app-dark .tc-app-shell {
	background:
		linear-gradient(180deg, rgba(100, 201, 135, 0.12), rgba(16, 24, 20, 0) 260px),
		var(--tc-background);
}

body.tc-app-dark a {
	color: var(--tc-secondary);
}

[hidden] {
	display: none !important;
}

img,
svg,
video,
iframe {
	max-width: 100%;
}

img {
	height: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	padding: 0;
	white-space: nowrap;
}

a {
	color: var(--tc-primary-dark);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
	border-radius: 4px;
	box-shadow: var(--tc-focus);
	outline: none;
}

.tc-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 10000;
	transform: translateY(-160%);
	border-radius: 6px;
	background: var(--tc-primary-dark);
	color: #ffffff;
	padding: 10px 14px;
}

.tc-skip-link:focus {
	transform: translateY(0);
}

.tc-app-shell {
	min-height: 100vh;
	background:
		linear-gradient(180deg, rgba(23, 107, 77, 0.12), rgba(245, 247, 246, 0) 260px),
		var(--tc-background);
}

.tc-main {
	width: min(100%, 1180px);
	margin: 0 auto;
	padding: 86px 16px calc(104px + env(safe-area-inset-bottom));
}

.tc-app-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1200;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: min(100%, 1180px);
	margin: 0 auto;
	border: 1px solid rgba(225, 232, 228, 0.82);
	border-top: 0;
	border-radius: 0 0 8px 8px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 12px 28px rgba(23, 33, 29, 0.08);
	padding: var(--tc-header-padding-y) 16px;
	transition: transform 180ms ease, opacity 180ms ease;
	backdrop-filter: blur(18px);
}

body.tc-app-dark .tc-app-header {
	background: rgba(23, 33, 29, 0.92);
}

.tc-app-header.is-hidden {
	transform: translateY(-112%);
	opacity: 0;
}

.tc-app-header .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.tc-app-header .custom-logo {
	width: auto;
	max-width: 180px;
	max-height: var(--tc-header-logo-height);
}

.tc-app-header__logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.tc-app-header__logo img {
	display: block;
	width: auto;
	height: var(--tc-header-logo-height);
	max-width: min(280px, 48vw);
	object-fit: contain;
}

.tc-app-header__greeting {
	display: grid;
	min-width: 180px;
	margin-right: auto;
}

.tc-app-header__greeting span {
	color: var(--tc-muted);
	font-size: calc(var(--tc-header-greeting-size) - 3px);
	font-weight: 700;
}

.tc-app-header__greeting strong {
	color: var(--tc-text);
	font-size: var(--tc-header-greeting-size);
	line-height: 1.25;
}

.tc-app-header__nav {
	display: flex;
	justify-content: flex-end;
	min-width: 0;
}

.tc-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tc-menu a {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	border: 1px solid var(--tc-border);
	border-radius: 8px;
	background: var(--tc-surface);
	padding: 8px 12px;
	color: var(--tc-text);
	font-size: 0.92rem;
	font-weight: 650;
	text-decoration: none;
}

.tc-app-header__actions {
	display: inline-flex;
	gap: 8px;
}

.tc-icon-button {
	display: inline-grid;
	width: var(--tc-header-icon-size);
	height: var(--tc-header-icon-size);
	place-items: center;
	border: 1px solid var(--tc-border);
	border-radius: 8px;
	background: var(--tc-surface);
	color: var(--tc-primary-dark);
	cursor: pointer;
	font: inherit;
	font-weight: 800;
}

.tc-icon-button svg {
	width: calc(var(--tc-header-icon-size) / 2);
	height: calc(var(--tc-header-icon-size) / 2);
	fill: currentColor;
}

body.tc-app-dark .tc-icon-button:not(.tc-install-button),
body.tc-app-dark .tc-menu a {
	color: var(--tc-secondary);
}

.tc-install-button {
	border-color: rgba(23, 107, 77, 0.22);
	background: var(--tc-primary);
	color: #ffffff;
}

.tc-notification-button {
	position: relative;
}

.tc-notification-button.is-active::after {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 9px;
	height: 9px;
	border: 2px solid var(--tc-surface);
	border-radius: 50%;
	background: var(--tc-accent);
	content: "";
}

.tc-section {
	margin: 0 auto 24px;
}

.tc-content-panel,
.tc-app-test {
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius);
	background: var(--tc-surface);
	box-shadow: var(--tc-shadow);
	padding: clamp(20px, 5vw, 40px);
}

.tc-eyebrow {
	margin: 0 0 8px;
	color: var(--tc-primary-dark);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.tc-app-test h1,
.tc-content-panel h1 {
	margin: 0 0 12px;
	color: var(--tc-text);
	font-size: 3.25rem;
	line-height: 1.03;
}

.tc-lead {
	max-width: 680px;
	margin: 0 0 24px;
	color: var(--tc-muted);
	font-size: 1.08rem;
}

.tc-test-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin: 24px 0;
}

.tc-status-item {
	min-height: 96px;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius);
	background: #fbfdfc;
	padding: 14px;
}

.tc-status-item__value,
.tc-status-item__label {
	display: block;
}

.tc-status-item__value {
	color: var(--tc-success);
	font-size: 1.4rem;
	font-weight: 800;
}

.tc-status-item__label {
	color: var(--tc-muted);
	font-size: 0.92rem;
}

.tc-config-preview {
	border-top: 1px solid var(--tc-border);
	padding-top: 20px;
}

.tc-config-preview h2 {
	margin: 0 0 14px;
	font-size: 1.2rem;
}

.tc-config-preview dl {
	display: grid;
	gap: 10px;
	margin: 0;
}

.tc-config-preview dl div {
	display: grid;
	grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
	gap: 10px;
}

.tc-config-preview dt {
	color: var(--tc-muted);
	font-weight: 700;
}

.tc-config-preview dd {
	min-width: 0;
	margin: 0;
	overflow-wrap: anywhere;
}

.tc-post-list {
	display: grid;
	gap: 14px;
}

.tc-post-card {
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius);
	background: #fbfdfc;
	padding: 16px;
}

.tc-post-card__title {
	margin: 0 0 6px;
	font-size: 1.2rem;
	line-height: 1.25;
}

.tc-post-card__meta {
	margin: 0 0 8px;
	color: var(--tc-muted);
	font-size: 0.88rem;
}

.tc-readable-content {
	max-width: 760px;
}

.tc-readable-content > *:first-child {
	margin-top: 0;
}

.tc-readable-content table {
	display: block;
	max-width: 100%;
	overflow-x: auto;
}

.tc-empty-state {
	border: 1px dashed var(--tc-border);
	border-radius: var(--tc-radius);
	padding: 18px;
}

.tc-empty-state h2 {
	margin: 0 0 6px;
	font-size: 1.2rem;
}

.tc-empty-state p {
	margin: 0;
	color: var(--tc-muted);
}

.tc-home-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 16px;
	margin: 0 0 16px;
	padding: clamp(18px, 5vw, 34px);
	border: 1px solid rgba(23, 107, 77, 0.16);
	border-radius: var(--tc-radius);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 250, 245, 0.95)),
		var(--tc-surface);
	box-shadow: var(--tc-shadow);
}

.tc-home-hero h1 {
	max-width: 790px;
	margin: 0;
	font-size: var(--tc-home-title-size);
	line-height: 1.05;
}

.tc-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	width: 100%;
	max-width: 760px;
}

.tc-search input,
.tc-search button {
	min-height: 48px;
	border-radius: 8px;
	font: inherit;
}

.tc-search input {
	width: 100%;
	border: 1px solid var(--tc-border);
	background: var(--tc-surface);
	padding: 0 14px;
	color: var(--tc-text);
}

.tc-search button {
	border: 0;
	background: var(--tc-primary);
	color: #ffffff;
	padding: 0 18px;
	cursor: pointer;
	font-weight: 800;
}

.tc-loading-skeleton {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 1fr;
	gap: 10px;
	margin: 0 0 16px;
}

.tc-loading-skeleton span {
	min-height: 12px;
	border-radius: 999px;
	background: linear-gradient(90deg, #e7eee9, #f7faf8, #e7eee9);
	background-size: 200% 100%;
	animation: tc-skeleton 1.2s ease-in-out infinite;
}

@keyframes tc-skeleton {
	0% {
		background-position: 200% 0;
	}

	100% {
		background-position: -200% 0;
	}
}

.tc-loading-skeleton.is-hidden {
	display: none;
}

.tc-banner-strip {
	display: grid;
	grid-auto-columns: minmax(270px, 420px);
	grid-auto-flow: column;
	gap: 12px;
	margin: 0 -16px 22px;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	padding: 0 16px 6px;
	scroll-snap-type: inline mandatory;
}

.tc-feature-banner {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 14px;
	min-height: 156px;
	align-items: center;
	border-radius: var(--tc-radius);
	background: #ffffff;
	box-shadow: 0 10px 28px rgba(23, 33, 29, 0.08);
	padding: 16px;
	scroll-snap-align: start;
}

.tc-feature-banner--1 {
	border: 1px solid rgba(23, 107, 77, 0.16);
}

.tc-feature-banner--2 {
	border: 1px solid rgba(242, 184, 75, 0.32);
}

.tc-feature-banner--3 {
	border: 1px solid rgba(100, 201, 135, 0.32);
}

.tc-feature-banner__visual {
	width: 82px;
	aspect-ratio: 1;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(23, 107, 77, 0.95), rgba(100, 201, 135, 0.76)),
		var(--tc-primary);
}

.tc-feature-banner--2 .tc-feature-banner__visual {
	background:
		linear-gradient(135deg, rgba(242, 184, 75, 0.95), rgba(23, 107, 77, 0.76)),
		var(--tc-accent);
}

.tc-feature-banner--3 .tc-feature-banner__visual {
	background:
		linear-gradient(135deg, rgba(15, 79, 57, 0.95), rgba(242, 184, 75, 0.72)),
		var(--tc-primary-dark);
}

.tc-feature-banner h2 {
	margin: 0 0 6px;
	font-size: 1.03rem;
	line-height: 1.2;
}

.tc-feature-banner p {
	margin: 0 0 10px;
	color: var(--tc-muted);
	font-size: 0.9rem;
	line-height: 1.35;
}

.tc-feature-banner a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	border-radius: 8px;
	background: rgba(23, 107, 77, 0.1);
	padding: 0 10px;
	color: var(--tc-primary-dark);
	font-size: 0.86rem;
	font-weight: 800;
	text-decoration: none;
}

.tc-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 12px;
}

.tc-section-head h2 {
	margin: 0;
	font-size: 1.16rem;
	line-height: 1.2;
}

.tc-section-head span {
	color: var(--tc-muted);
	font-size: 0.84rem;
	font-weight: 700;
	text-align: right;
}

.tc-service-menu,
.tc-home-section {
	margin: 0 0 22px;
}

.tc-service-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.tc-service-item {
	display: grid;
	min-height: 96px;
	align-content: center;
	justify-items: center;
	gap: 8px;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius);
	background: var(--tc-surface);
	padding: 12px 8px;
	color: var(--tc-text);
	text-align: center;
	text-decoration: none;
	box-shadow: 0 8px 18px rgba(23, 33, 29, 0.05);
}

.tc-service-item__icon {
	display: grid;
	width: var(--tc-service-icon-size);
	height: var(--tc-service-icon-size);
	place-items: center;
	border-radius: 8px;
	background: rgba(23, 107, 77, 0.1);
	color: var(--tc-primary-dark);
	font-size: 0.82rem;
	font-weight: 900;
}

.tc-service-item__icon svg,
.tc-content-card__icon svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.tc-service-item__label {
	font-size: var(--tc-service-label-size);
	font-weight: 800;
	line-height: 1.2;
}

.tc-home-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.tc-card-list {
	display: grid;
	gap: 12px;
}

.tc-content-card {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 12px;
	min-height: 116px;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius);
	background: var(--tc-surface);
	padding: 12px;
	box-shadow: 0 8px 20px rgba(23, 33, 29, 0.05);
}

.tc-content-card__thumb {
	display: grid;
	width: 88px;
	height: 88px;
	place-items: center;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(23, 107, 77, 0.95), rgba(100, 201, 135, 0.72)),
		var(--tc-primary);
	color: #ffffff;
	text-decoration: none;
}

.tc-content-card__thumb span {
	font-size: 1.35rem;
	font-weight: 900;
}

.tc-content-card__icon {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.18);
}

.tc-content-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

.tc-content-card__body {
	min-width: 0;
}

.tc-card-kicker {
	margin: 0 0 4px;
	color: var(--tc-primary-dark);
	font-size: 0.74rem;
	font-weight: 900;
	text-transform: uppercase;
}

.tc-content-card h3 {
	margin: 0 0 6px;
	font-size: var(--tc-card-title-size);
	line-height: 1.24;
}

.tc-content-card h3 a {
	color: var(--tc-text);
	text-decoration: none;
}

.tc-content-card p:not(.tc-card-kicker) {
	display: -webkit-box;
	margin: 0 0 8px;
	overflow: hidden;
	color: var(--tc-muted);
	font-size: var(--tc-card-excerpt-size);
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.tc-card-meta {
	color: var(--tc-muted);
	font-size: 0.78rem;
	font-weight: 700;
}

.tc-video-card {
	display: grid;
	grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
	gap: 16px;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius);
	background: var(--tc-surface);
	padding: 14px;
	box-shadow: 0 10px 26px rgba(23, 33, 29, 0.06);
}

.tc-video-card__thumb {
	position: relative;
	min-height: 190px;
	overflow: hidden;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(23, 33, 29, 0.82), rgba(23, 107, 77, 0.82)),
		var(--tc-primary-dark);
}

.tc-video-card__thumb span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 54px;
	height: 54px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: #ffffff;
}

.tc-video-card__thumb img {
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	opacity: 0.82;
}

.tc-video-card__thumb span::after {
	position: absolute;
	top: 16px;
	left: 21px;
	width: 0;
	height: 0;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	border-left: 16px solid var(--tc-primary);
	content: "";
}

.tc-video-card__body h3 {
	margin: 0 0 8px;
	font-size: 1.35rem;
	line-height: 1.15;
}

.tc-video-card__body p:not(.tc-card-kicker) {
	margin: 0;
	color: var(--tc-muted);
}

.tc-card-list--compact {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tc-load-more {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	margin: 14px 0 0;
	border: 1px solid var(--tc-border);
	border-radius: 8px;
	background: var(--tc-surface);
	color: var(--tc-primary-dark);
	cursor: pointer;
	font: inherit;
	font-weight: 900;
	padding: 0 16px;
}

.tc-load-more:disabled {
	cursor: progress;
	opacity: 0.62;
}

.tc-ciptateks-preview {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border-radius: var(--tc-radius);
	background:
		linear-gradient(135deg, var(--tc-primary-dark), var(--tc-primary));
	padding: clamp(18px, 4vw, 28px);
	color: #ffffff;
}

.tc-ciptateks-preview .tc-card-kicker,
.tc-ciptateks-preview h2 {
	color: #ffffff;
}

.tc-ciptateks-preview h2 {
	max-width: 680px;
	margin: 0;
	font-size: 1.55rem;
	line-height: 1.15;
}

.tc-ciptateks-preview a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	flex: 0 0 auto;
	border-radius: 8px;
	background: #ffffff;
	padding: 0 14px;
	color: var(--tc-primary-dark);
	font-weight: 900;
	text-decoration: none;
}

.tc-ciptateks-view {
	max-width: 980px;
	margin: 0 auto;
	padding-bottom: calc(96px + env(safe-area-inset-bottom));
}

.tc-ciptateks-view__header,
.tc-ciptateks-form,
.tc-ciptateks-result {
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius);
	background: var(--tc-surface);
	box-shadow: var(--tc-shadow);
}

.tc-ciptateks-view__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 18px;
	padding: clamp(18px, 5vw, 32px);
}

.tc-ciptateks-view__header h1 {
	margin: 0 0 8px;
	font-size: 2.35rem;
	line-height: 1.08;
}

.tc-ciptateks-view__header p:not(.tc-card-kicker) {
	max-width: 650px;
	margin: 0;
	color: var(--tc-muted);
}

.tc-ciptateks-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 18px;
	padding: clamp(16px, 4vw, 24px);
}

.tc-form-field {
	display: grid;
	gap: 7px;
	min-width: 0;
}

.tc-form-field--wide,
.tc-form-errors,
.tc-form-actions {
	grid-column: 1 / -1;
}

.tc-form-field label {
	color: var(--tc-text);
	font-size: 0.88rem;
	font-weight: 850;
}

.tc-form-field input,
.tc-form-field select,
.tc-form-field textarea,
.tc-ciptateks-output {
	width: 100%;
	border: 1px solid var(--tc-border);
	border-radius: 8px;
	background: #fbfdfc;
	color: var(--tc-text);
	font: inherit;
}

.tc-form-field input,
.tc-form-field select {
	min-height: 46px;
	padding: 0 12px;
}

.tc-form-field textarea,
.tc-ciptateks-output {
	min-height: 130px;
	padding: 12px;
	resize: vertical;
}

.tc-form-errors {
	border: 1px solid rgba(198, 61, 61, 0.24);
	border-radius: 8px;
	background: #fff7f7;
	color: var(--tc-danger);
	font-size: 0.9rem;
	font-weight: 750;
	padding: 10px 12px;
}

.tc-form-errors ul {
	margin: 0;
	padding-left: 1.2em;
}

.tc-form-actions,
.tc-result-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tc-primary-action,
.tc-secondary-action,
.tc-result-actions button {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	cursor: pointer;
	font: inherit;
	font-weight: 900;
	padding: 0 14px;
}

.tc-primary-action {
	border: 0;
	background: var(--tc-primary);
	color: #ffffff;
}

.tc-secondary-action,
.tc-result-actions button {
	border: 1px solid var(--tc-border);
	background: #fbfdfc;
	color: var(--tc-primary-dark);
}

.tc-ciptateks-result {
	margin: 0 0 24px;
	padding: clamp(16px, 4vw, 24px);
}

.tc-ciptateks-output {
	min-height: 420px;
	margin: 0 0 12px;
	line-height: 1.68;
}

.tc-ciptateks-output:not([readonly]) {
	border-color: rgba(23, 107, 77, 0.36);
	background: #ffffff;
}

.tc-teleprompter {
	position: fixed;
	inset: 0;
	z-index: 5000;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto;
	background: #07110d;
	color: #f5fff9;
	padding: max(14px, env(safe-area-inset-top)) 14px max(14px, env(safe-area-inset-bottom));
}

.tc-teleprompter.is-light {
	background: #f5f7f6;
	color: var(--tc-text);
}

.tc-teleprompter__bar,
.tc-teleprompter__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: min(100%, 1100px);
	margin: 0 auto;
}

.tc-teleprompter__bar {
	padding-bottom: 12px;
}

.tc-teleprompter__bar h2 {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.15;
}

.tc-teleprompter__bar .tc-card-kicker {
	color: var(--tc-secondary);
}

.tc-teleprompter__bar button,
.tc-teleprompter__controls button {
	min-height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
	color: currentColor;
	cursor: pointer;
	font: inherit;
	font-size: 0.88rem;
	font-weight: 900;
	padding: 0 12px;
}

.tc-teleprompter__stage {
	width: min(100%, 1100px);
	margin: 0 auto;
	overflow-y: auto;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--tc-radius);
	background:
		linear-gradient(180deg, rgba(7, 17, 13, 0.98), rgba(15, 34, 26, 0.96)),
		#07110d;
	scroll-behavior: auto;
}

.tc-teleprompter.is-light .tc-teleprompter__stage {
	border-color: var(--tc-border);
	background: #ffffff;
}

.tc-teleprompter__text {
	max-width: 920px;
	margin: 0 auto;
	padding: 34vh clamp(18px, 5vw, 64px);
	font-size: 34px;
	font-weight: 750;
	line-height: 1.65;
}

.tc-teleprompter__text p {
	margin: 0 0 1.1em;
}

.tc-teleprompter__controls {
	flex-wrap: wrap;
	padding-top: 12px;
}

.tc-teleprompter__controls label {
	display: grid;
	gap: 4px;
	min-width: 150px;
	color: currentColor;
	font-size: 0.78rem;
	font-weight: 850;
}

.tc-teleprompter__controls input[type="range"] {
	width: 150px;
	accent-color: var(--tc-secondary);
}

.tc-teleprompter__status {
	margin-left: auto;
	color: var(--tc-secondary);
	font-size: 0.82rem;
	font-weight: 900;
}

.tc-teleprompter.is-light .tc-teleprompter__bar .tc-card-kicker,
.tc-teleprompter.is-light .tc-teleprompter__status {
	color: var(--tc-primary-dark);
}

.tc-teleprompter.is-light .tc-teleprompter__bar button,
.tc-teleprompter.is-light .tc-teleprompter__controls button {
	border-color: var(--tc-border);
	background: #ffffff;
}

.tc-empty-search,
.tc-error-state {
	margin: 0 0 22px;
	border-radius: var(--tc-radius);
	padding: 18px;
}

.tc-empty-search {
	border: 1px dashed var(--tc-border);
	background: var(--tc-surface);
}

.tc-error-state {
	border: 1px solid rgba(198, 61, 61, 0.24);
	background: #fff8f8;
}

.tc-empty-search h2,
.tc-error-state h2 {
	margin: 0 0 6px;
	font-size: 1.1rem;
}

.tc-empty-search p,
.tc-error-state p {
	margin: 0;
	color: var(--tc-muted);
}

.tc-bottom-navigation {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1000;
	border-top: 1px solid rgba(225, 232, 228, 0.92);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 -12px 28px rgba(23, 33, 29, 0.12);
	padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
	backdrop-filter: blur(18px);
}

.tc-bottom-navigation__list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 6px;
	width: min(100%, 620px);
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.tc-bottom-navigation__item {
	min-width: 0;
}

.tc-bottom-navigation__link {
	display: grid;
	min-height: var(--tc-footer-height);
	align-content: center;
	justify-items: center;
	gap: 4px;
	border-radius: 8px;
	color: var(--tc-muted);
	text-align: center;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

.tc-bottom-navigation__icon {
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
	color: currentColor;
}

.tc-bottom-navigation__icon svg {
	display: block;
	width: var(--tc-footer-icon-size);
	height: var(--tc-footer-icon-size);
	fill: currentColor;
}

.tc-bottom-navigation__label {
	max-width: 100%;
	overflow: hidden;
	font-size: var(--tc-footer-label-size);
	font-weight: 800;
	line-height: 1.1;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.tc-bottom-navigation__item.is-active .tc-bottom-navigation__link {
	background: rgba(23, 107, 77, 0.1);
	color: var(--tc-primary-dark);
}

.tc-bottom-navigation__item.is-active .tc-bottom-navigation__label {
	color: var(--tc-primary-dark);
}

.tc-bottom-navigation__item.is-featured .tc-bottom-navigation__link {
	position: relative;
	color: var(--tc-primary-dark);
}

.tc-bottom-navigation__item.is-featured .tc-bottom-navigation__icon {
	width: calc(var(--tc-footer-icon-size) + 20px);
	height: calc(var(--tc-footer-icon-size) + 20px);
	margin-top: -18px;
	border: 3px solid var(--tc-surface);
	border-radius: 50%;
	background: var(--tc-primary);
	box-shadow: 0 10px 18px rgba(15, 79, 57, 0.24);
	color: #ffffff;
}

.tc-bottom-navigation__item.is-featured .tc-bottom-navigation__icon svg {
	width: var(--tc-footer-icon-size);
	height: var(--tc-footer-icon-size);
}

.tc-bottom-navigation__link:hover {
	color: var(--tc-primary-dark);
}

.tc-article-detail {
	max-width: 920px;
	margin: 0 auto;
	padding-bottom: calc(96px + env(safe-area-inset-bottom));
}

.tc-article-detail__header {
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius);
	background: var(--tc-surface);
	box-shadow: var(--tc-shadow);
	padding: clamp(18px, 5vw, 34px);
}

.tc-detail-back {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	margin: 0 0 16px;
	border: 1px solid var(--tc-border);
	border-radius: 8px;
	background: var(--tc-surface);
	color: var(--tc-primary-dark);
	cursor: pointer;
	font: inherit;
	font-weight: 900;
	padding: 0 12px;
}

.tc-article-detail h1 {
	max-width: 850px;
	margin: 0 0 12px;
	font-size: var(--tc-article-title-size);
	line-height: 1.08;
}

.tc-article-detail__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin: 0 0 18px;
	color: var(--tc-muted);
	font-size: 0.92rem;
	font-weight: 700;
}

.tc-reader-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	max-width: var(--tc-article-content-width);
	margin: 0 auto 28px;
	justify-content: center;
}

.tc-reader-toolbar button {
	display: grid;
	min-width: 74px;
	min-height: 58px;
	align-items: center;
	justify-items: center;
	gap: 4px;
	border: 1px solid var(--tc-border);
	border-radius: 8px;
	background: #fbfdfc;
	color: var(--tc-text);
	cursor: pointer;
	font: inherit;
	font-size: 0.88rem;
	font-weight: 850;
	padding: 0 10px;
}

.tc-reader-toolbar button svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.tc-reader-toolbar button span {
	font-size: 0.74rem;
	line-height: 1.1;
}

.tc-reader-toolbar button[aria-pressed="true"] {
	border-color: rgba(23, 107, 77, 0.22);
	background: rgba(23, 107, 77, 0.1);
	color: var(--tc-primary-dark);
}

.tc-reader-notice {
	margin: 14px 0 0;
	border-radius: 8px;
	background: rgba(23, 107, 77, 0.1);
	color: var(--tc-primary-dark);
	font-weight: 800;
	padding: 10px 12px;
}

.tc-reader-font-control {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	max-width: var(--tc-article-content-width);
	margin: 0 auto 14px;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius);
	background: var(--tc-surface);
	padding: 12px 14px;
}

.tc-reader-font-control label {
	color: var(--tc-muted);
	font-size: 0.84rem;
	font-weight: 900;
}

.tc-reader-font-control input[type="range"] {
	width: 100%;
	accent-color: var(--tc-primary);
}

.tc-app-toast {
	position: fixed;
	right: 16px;
	bottom: calc(92px + env(safe-area-inset-bottom));
	z-index: 5200;
	max-width: min(360px, calc(100vw - 32px));
	margin: 0;
	border-radius: 8px;
	background: var(--tc-primary-dark);
	box-shadow: 0 16px 38px rgba(23, 33, 29, 0.18);
	color: #ffffff;
	font-size: 0.92rem;
	font-weight: 850;
	padding: 12px 14px;
}

.tc-article-detail__image {
	margin: 18px 0;
	overflow: hidden;
	border-radius: var(--tc-radius);
	background: var(--tc-surface);
}

.tc-article-detail__image img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
}

.tc-ad-placeholder {
	margin: 18px 0;
	border: 1px dashed var(--tc-border);
	border-radius: var(--tc-radius);
	background: rgba(255, 255, 255, 0.72);
	color: var(--tc-muted);
	font-size: 0.82rem;
	font-weight: 800;
	padding: 14px;
	text-align: center;
}

.tc-ad-placeholder strong,
.tc-ad-placeholder span {
	display: block;
}

.tc-ad-placeholder span {
	margin-top: 3px;
	font-size: 0.76rem;
	font-weight: 700;
}

.tc-consent-banner {
	position: fixed;
	right: 16px;
	bottom: calc(104px + env(safe-area-inset-bottom));
	left: 16px;
	z-index: 5300;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: min(720px, calc(100vw - 32px));
	margin: 0 auto;
	border: 1px solid rgba(23, 107, 77, 0.18);
	border-radius: var(--tc-radius);
	background: var(--tc-surface);
	box-shadow: 0 18px 42px rgba(23, 33, 29, 0.18);
	padding: 14px;
}

.tc-consent-banner p {
	margin: 0;
	color: var(--tc-muted);
	font-size: 0.88rem;
	line-height: 1.45;
}

.tc-consent-banner div {
	display: flex;
	flex: 0 0 auto;
	gap: 8px;
}

.tc-consent-banner button {
	min-height: 38px;
	border: 1px solid var(--tc-border);
	border-radius: 8px;
	background: #fbfdfc;
	color: var(--tc-primary-dark);
	cursor: pointer;
	font: inherit;
	font-size: 0.84rem;
	font-weight: 900;
	padding: 0 12px;
}

.tc-consent-banner button:first-child {
	border-color: var(--tc-primary);
	background: var(--tc-primary);
	color: #ffffff;
}

.tc-article-body {
	--tc-reader-scale: 1;
	max-width: var(--tc-article-content-width);
	margin: 0 auto 28px;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius);
	background: var(--tc-surface);
	font-size: calc(var(--tc-article-body-size) * var(--tc-reader-scale));
	line-height: 1.72;
	padding: clamp(18px, 5vw, 34px);
}

.tc-article-body > *:first-child {
	margin-top: 0;
}

.tc-article-body > *:last-child {
	margin-bottom: 0;
}

.tc-article-body h2,
.tc-article-body h3,
.tc-article-body h4 {
	margin: 1.6em 0 0.6em;
	line-height: 1.22;
}

.tc-article-body p,
.tc-article-body ul,
.tc-article-body ol,
.tc-article-body blockquote,
.tc-article-body table {
	margin: 0 0 1.05em;
}

.tc-article-body ul,
.tc-article-body ol {
	padding-left: 1.25em;
}

.tc-article-body blockquote {
	border-left: 4px solid var(--tc-secondary);
	border-radius: 0 8px 8px 0;
	background: rgba(23, 107, 77, 0.08);
	padding: 14px 16px;
}

.tc-article-body img {
	width: auto;
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.tc-article-body iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	border: 0;
	border-radius: 8px;
}

.tc-article-body table {
	display: block;
	max-width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
}

.tc-article-body td,
.tc-article-body th {
	border: 1px solid var(--tc-border);
	padding: 8px 10px;
}

.tc-article-detail.is-dark-reader {
	color: #f2f7f4;
}

.tc-article-detail.is-dark-reader .tc-article-detail__header,
.tc-article-detail.is-dark-reader .tc-article-body,
.tc-article-detail.is-dark-reader .tc-ad-placeholder,
.tc-article-detail.is-dark-reader .tc-related-section {
	border-color: rgba(255, 255, 255, 0.12);
	background: #17211d;
	color: #f2f7f4;
}

.tc-article-detail.is-dark-reader .tc-article-detail__meta,
.tc-article-detail.is-dark-reader .tc-ad-placeholder,
.tc-article-detail.is-dark-reader .tc-card-meta,
.tc-article-detail.is-dark-reader .tc-content-card p:not(.tc-card-kicker) {
	color: #b7c8bf;
}

.tc-article-detail.is-dark-reader .tc-content-card,
.tc-article-detail.is-dark-reader .tc-video-card,
.tc-article-detail.is-dark-reader .tc-reader-toolbar button,
.tc-article-detail.is-dark-reader .tc-detail-back {
	border-color: rgba(255, 255, 255, 0.12);
	background: #203229;
	color: #f2f7f4;
}

.tc-article-detail.is-dark-reader .tc-reader-font-control {
	border-color: rgba(255, 255, 255, 0.12);
	background: #17211d;
}

.tc-article-detail.is-dark-reader .tc-content-card h3 a,
.tc-article-detail.is-dark-reader .tc-video-card__body h3 a {
	color: #f2f7f4;
}

.tc-related-section {
	margin: 0 0 24px;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius);
	background: var(--tc-surface);
	padding: clamp(16px, 4vw, 24px);
}

.tc-article-detail:fullscreen {
	overflow-y: auto;
	background: var(--tc-background);
	padding: 18px;
}

.tc-saved-view {
	max-width: 980px;
	margin: 0 auto;
	padding-bottom: calc(96px + env(safe-area-inset-bottom));
}

.tc-category-view,
.tc-account-view {
	max-width: 980px;
	margin: 0 auto;
	padding-bottom: calc(96px + env(safe-area-inset-bottom));
}

.tc-category-grid,
.tc-account-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.tc-category-grid button,
.tc-account-grid article {
	min-width: 0;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius);
	background: var(--tc-surface);
	box-shadow: 0 8px 20px rgba(23, 33, 29, 0.05);
	padding: 16px;
}

.tc-category-grid button {
	display: grid;
	gap: 4px;
	color: var(--tc-text);
	cursor: pointer;
	font: inherit;
	text-align: left;
}

.tc-category-grid button span,
.tc-account-grid h2 {
	margin: 0;
	font-size: 1rem;
	font-weight: 900;
}

.tc-category-grid button small,
.tc-account-grid p {
	margin: 0;
	color: var(--tc-muted);
	font-size: 0.86rem;
	line-height: 1.45;
}

.tc-saved-view__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 18px;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius);
	background: var(--tc-surface);
	box-shadow: var(--tc-shadow);
	padding: clamp(18px, 5vw, 32px);
}

.tc-saved-view__header h1 {
	margin: 0 0 8px;
	font-size: 2.35rem;
	line-height: 1.08;
}

.tc-saved-view__header p:not(.tc-card-kicker) {
	max-width: 620px;
	margin: 0;
	color: var(--tc-muted);
}

.tc-saved-tabs {
	display: inline-flex;
	gap: 8px;
	border: 1px solid var(--tc-border);
	border-radius: 8px;
	background: #fbfdfc;
	padding: 4px;
}

.tc-saved-tabs button {
	min-height: 38px;
	border: 0;
	border-radius: 7px;
	background: transparent;
	color: var(--tc-muted);
	cursor: pointer;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 900;
	padding: 0 12px;
}

.tc-saved-tabs button[aria-selected="true"] {
	background: var(--tc-primary);
	color: #ffffff;
}

.tc-saved-panel {
	margin: 0 0 24px;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-radius);
	background: var(--tc-surface);
	padding: clamp(16px, 4vw, 24px);
}

.tc-library-card__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 10px;
}

.tc-library-card__source {
	color: var(--tc-muted);
	font-size: 0.76rem;
	font-weight: 800;
}

.tc-library-card__actions button {
	min-height: 34px;
	border: 1px solid rgba(198, 61, 61, 0.28);
	border-radius: 8px;
	background: #fff7f7;
	color: var(--tc-danger);
	cursor: pointer;
	font: inherit;
	font-size: 0.8rem;
	font-weight: 900;
	padding: 0 10px;
}

@media (max-width: 720px) {
	.tc-app-header {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
	}

	.tc-app-header__greeting {
		grid-column: 1 / 2;
		grid-row: 2;
	}

	.tc-app-header__actions {
		grid-column: 2;
		grid-row: 1 / 3;
	}

	.tc-app-header__nav {
		display: none;
	}

	.tc-menu {
		width: 100%;
	}

	.tc-menu a {
		flex: 1 1 auto;
		justify-content: center;
	}

	.tc-test-grid {
		grid-template-columns: 1fr;
	}

	.tc-config-preview dl div {
		grid-template-columns: 1fr;
		gap: 2px;
	}

	.tc-home-grid,
	.tc-card-list--compact,
	.tc-video-card,
	.tc-category-grid,
	.tc-account-grid {
		grid-template-columns: 1fr;
	}

	.tc-service-grid {
		grid-template-columns: repeat(4, minmax(68px, 1fr));
		gap: 8px;
	}

	.tc-service-item {
		min-height: 88px;
		padding: 10px 6px;
	}

	.tc-search {
		grid-template-columns: 1fr;
	}

	.tc-search button {
		width: 100%;
	}

	.tc-app-test h1,
	.tc-content-panel h1,
	.tc-home-hero h1 {
		font-size: clamp(30px, var(--tc-home-title-size), 34px);
	}

	.tc-video-card__body h3,
	.tc-ciptateks-preview h2 {
		font-size: 1.25rem;
	}

	.tc-ciptateks-view__header h1,
	.tc-saved-view__header h1 {
		font-size: 2rem;
	}

	.tc-ciptateks-preview {
		align-items: flex-start;
		flex-direction: column;
	}

	.tc-reader-toolbar {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.tc-reader-toolbar button {
		justify-content: center;
		min-width: 0;
		padding: 0 6px;
	}

	.tc-saved-view__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.tc-consent-banner {
		align-items: stretch;
		flex-direction: column;
	}

	.tc-consent-banner div {
		width: 100%;
	}

	.tc-consent-banner button {
		flex: 1 1 0;
	}

	.tc-ciptateks-view__header {
		flex-direction: column-reverse;
	}

	.tc-ciptateks-form {
		grid-template-columns: 1fr;
	}

	.tc-result-actions button,
	.tc-form-actions button {
		flex: 1 1 150px;
	}

	.tc-teleprompter {
		padding-right: 10px;
		padding-left: 10px;
	}

	.tc-teleprompter__bar,
	.tc-teleprompter__controls {
		align-items: stretch;
	}

	.tc-teleprompter__bar {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.tc-teleprompter__controls {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tc-teleprompter__controls label,
	.tc-teleprompter__controls input[type="range"],
	.tc-teleprompter__status {
		width: 100%;
		min-width: 0;
	}

	.tc-teleprompter__status {
		grid-column: 1 / -1;
		margin-left: 0;
	}

	.tc-teleprompter__text {
		padding-right: 18px;
		padding-left: 18px;
	}
}

@media (max-width: 420px) {
	.tc-main {
		padding: 78px 12px calc(104px + env(safe-area-inset-bottom));
	}

	.tc-app-header {
		padding: var(--tc-header-padding-y) 12px;
	}

	.tc-banner-strip {
		margin-right: -12px;
		margin-left: -12px;
		padding-right: 12px;
		padding-left: 12px;
	}

	.tc-feature-banner {
		grid-template-columns: 72px minmax(0, 1fr);
		min-height: 142px;
		padding: 12px;
	}

	.tc-feature-banner__visual {
		width: 72px;
	}

	.tc-service-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.tc-service-item__icon {
		width: clamp(34px, var(--tc-service-icon-size), 44px);
		height: clamp(34px, var(--tc-service-icon-size), 44px);
	}

	.tc-service-item__label {
		font-size: clamp(11px, var(--tc-service-label-size), 14px);
	}

	.tc-content-card {
		grid-template-columns: 76px minmax(0, 1fr);
		gap: 10px;
	}

	.tc-content-card__thumb {
		width: 76px;
		height: 76px;
	}

	.tc-bottom-navigation {
		padding-right: 6px;
		padding-left: 6px;
	}

	.tc-bottom-navigation__list {
		gap: 2px;
	}

	.tc-bottom-navigation__link {
		min-height: clamp(54px, var(--tc-footer-height), 70px);
	}

	.tc-bottom-navigation__label {
		font-size: clamp(10px, var(--tc-footer-label-size), 13px);
	}

	.tc-reader-toolbar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tc-article-detail h1 {
		font-size: clamp(28px, var(--tc-article-title-size), 36px);
	}

	.tc-app-test h1,
	.tc-content-panel h1,
	.tc-home-hero h1,
	.tc-ciptateks-view__header h1,
	.tc-saved-view__header h1 {
		font-size: clamp(28px, var(--tc-home-title-size), 36px);
	}

	.tc-ciptateks-output {
		min-height: 340px;
	}

	.tc-teleprompter__controls {
		grid-template-columns: 1fr;
	}

	.tc-teleprompter__text {
		font-weight: 700;
		line-height: 1.55;
	}
}

@media (max-width: 340px) {
	.tc-service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tc-service-item {
		min-height: 76px;
		grid-template-columns: 34px minmax(0, 1fr);
		align-content: center;
		justify-items: start;
		text-align: left;
	}
}

@media (min-width: 1280px) {
	.tc-main {
		padding-bottom: 32px;
	}

	.tc-bottom-navigation {
		top: 120px;
		right: auto;
		bottom: auto;
		left: max(16px, calc((100vw - 1320px) / 2));
		width: 86px;
		border: 1px solid var(--tc-border);
		border-radius: 8px;
		padding: 10px;
		box-shadow: 0 16px 38px rgba(23, 33, 29, 0.1);
	}

	.tc-bottom-navigation__list {
		display: grid;
		width: 100%;
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.tc-bottom-navigation__link {
		min-height: 66px;
	}

	.tc-bottom-navigation__item.is-featured .tc-bottom-navigation__icon {
		margin-top: 0;
	}
}
