/* === SYNAMICA BLOG — MonoMark Design System === */

/* IBM Plex Mono from Google Fonts */

/* CSS Variables */
:root {
  --color-bg: #ffffff;
  --color-text: #252422;
  --color-accent: #eb5e28;
  --color-accent-hover: #d14d1a;
  --color-muted: #555555;
  --color-line: #cccccc;
  --color-surface: #f5f5f5;
  --color-surface-alt: #f9f9f9;
  --color-table-header: #f0f0f0;

  --font-family: 'IBM Plex Mono', 'Noto Color Emoji', monospace;

  --container-max: 900px;
  --container-padding: 2rem;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  hyphens: auto;
}

::selection {
  background-color: var(--color-accent);
  color: #fff;
}

::-moz-selection {
  background-color: var(--color-accent);
  color: #fff;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: 1.6rem;
  line-height: 1.5;
  min-height: 100vh;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Noise overlay - subtle paper effect */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: url('/blog/pic/noise.gif') repeat center;
  background-size: 15%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-text);
  hyphens: none;
}

h1 {
  font-size: 4.5rem;
  margin-bottom: 4rem;
  max-width: 95%;
  word-wrap: break-word;
}

h2 {
  font-size: 1.9rem;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.6rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  text-decoration: underline;
}

h4 {
  font-size: 1.6rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

p {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

h1 + p, h2 + p, h3 + p, h4 + p, h5 + p, h6 + p {
  margin-top: 0;
}

a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--color-accent-hover);
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid var(--color-line);
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo__img {
  width: 12rem;
  height: auto;
  /* filter removed - SVG already has correct color */
}

.logo__tagline {
  font-size: 1rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.logo a {
  text-decoration: none;
}

/* Remove center blog title for document style */
.header__blog-title {
  display: none;
}

.header__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-family: var(--font-family);
  color: var(--color-text);
  background: transparent;
  border: 1px solid var(--color-text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}

.header__contact-btn:hover {
  background: #ff8562;
  color: var(--color-text);
  border-color: #ff8562;
}

/* Reading Progress */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--color-accent);
  z-index: 1000;
}

/* Hero */
.hero {
  padding: 6rem 0 12rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.hero .container {
  padding: 0 2rem;
}

.hero__title {
  margin-bottom: 2rem;
}

.hero__description {
  font-size: 1.6rem;
  color: var(--color-muted);
}

/* Post Card - Unified Style */
.post-card-featured,
.post-card-secondary,
.post-card-secondary--reversed {
  margin-bottom: 8rem;
  padding: 0 2rem 8rem;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.post-card-featured__image,
.post-card-secondary__image {
  display: block;
  width: 100%;
  max-height: 30rem;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 4rem;
}

.post-card-featured__image img,
.post-card-secondary__image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-card-featured__content,
.post-card-secondary__content {
  position: relative;
}

.post-card-featured__left {
  width: 100%;
  margin: 0;
}

.post-card-featured__right {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  margin-top: 1.5rem;
}

.post-card-featured__title,
.post-card-secondary__title {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.post-card-featured__title a,
.post-card-secondary__title a {
  color: var(--color-text);
  text-decoration: none;
}

.post-card-featured__title a:hover,
.post-card-secondary__title a:hover {
  color: var(--color-accent);
}

.post-card-featured__excerpt,
.post-card-secondary__excerpt {
  font-size: 1.6rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.post-card-featured__tags,
.post-card-secondary__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
  margin-top: 1.5rem;
}

.post-card-featured__tag,
.post-card-secondary__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.2rem;
  font-size: 1.2rem;
  color: var(--color-muted);
  background: transparent;
  border: 1px solid var(--color-line);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: border-color 0.2s, color 0.2s;
}

.post-card-featured__tag:hover,
.post-card-secondary__tag:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.post-card-featured__read-btn,
.post-card-secondary__read-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 6rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-family: var(--font-family);
  color: var(--color-text);
  background: transparent;
  border: 1px solid var(--color-text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}

.post-card-featured__read-btn:hover,
.post-card-secondary__read-btn:hover {
  background: #ff8562;
  color: var(--color-text);
  border-color: #ff8562;
}

/* Secondary card - simplified to match featured */
.post-card-secondary {
  display: block;
}

.post-card-secondary--reversed .post-card-secondary__image {
  position: relative;
  right: auto;
  left: auto;
  width: 100%;
  margin: 0 0 2rem 0;
}

.post-card-secondary--reversed .post-card-secondary__content {
  position: relative;
  left: auto;
  right: auto;
  width: 100%;
  height: auto;
  margin: 0;
}

/* Post Grid */
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 0 2rem;
  margin-top: 4rem;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.post-grid::after {
  display: none;
}

/* Post Card Grid */
.post-card-grid {
  padding-bottom: 3rem;
}

.post-card-grid__image {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.post-card-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-grid__title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.post-card-grid__title a {
  color: var(--color-text);
  text-decoration: none;
}

.post-card-grid__title a:hover {
  color: var(--color-accent);
}

.post-card-grid__excerpt {
  font-size: 1.4rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.post-card-grid__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.post-card-grid__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  font-size: 1.1rem;
  color: var(--color-muted);
  background: transparent;
  border: 1px solid var(--color-line);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: border-color 0.2s, color 0.2s;
}

.post-card-grid__tag:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.post-card-grid__read-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  font-size: 1.2rem;
  font-family: var(--font-family);
  color: var(--color-text);
  background: transparent;
  border: 1px solid var(--color-text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}

.post-card-grid__read-btn:hover {
  background: #ff8562;
  color: var(--color-text);
  border-color: #ff8562;
}

/* Tag */
.tag {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--color-line);
  text-decoration: none;
  transition: all 0.15s ease;
}

.tag:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Article */
.article {
  padding: 4rem 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Breadcrumbs */
.article__breadcrumbs {
  margin-bottom: 3rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumbs a {
  color: var(--color-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--color-accent);
}

.breadcrumbs__separator {
  margin: 0 0.4rem;
}

/* Article Header */
.article__header {
  margin-bottom: 3rem;
}

.article__title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 80%;
}

.article__meta {
  font-size: 1.4rem;
  color: var(--color-muted);
}

/* Article Cover */
.article__cover {
  margin-bottom: 3rem;
  border-radius: 4px;
  overflow: hidden;
}

.article__cover img {
  width: 100%;
  height: auto;
  display: block;
}

/* Table of Contents */
.toc {
  margin-bottom: 4rem;
  padding: 1.5rem;
  background: var(--color-surface);
}

.toc__title {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
}

.toc__item {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.4rem;
  counter-increment: toc-counter;
}

.toc__item::before {
  content: counter(toc-counter) ". ";
  position: absolute;
  left: 0;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-muted);
}

.toc__item--nested {
  padding-left: 4rem;
  font-size: 1.2rem;
}

.toc__item--nested::before {
  left: 1.5rem;
  font-weight: 400;
}

.toc__link {
  font-size: 1.2rem;
  color: var(--color-text);
  text-decoration: none;
}

.toc__link:hover {
  color: var(--color-accent);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Offset for anchor scroll */
.article__content h2[id],
.article__content h3[id] {
  scroll-margin-top: 4rem;
}

/* Article Body */
.article__body {
  /* No special styling needed */
}

/* Article Content */
.article__content {
  max-width: 100%;
}

.article__content p {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.article__content h2 {
  /* doubled top margin */
  font-size: 1.9rem;
  margin-top: 6rem;
  margin-bottom: 1.2rem;
}

.article__content h3 {
  font-size: 1.6rem;
  margin-top: 4rem;
  margin-bottom: 0.8rem;
  text-decoration: underline;
}

.article__content h4 {
  font-size: 1.6rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

/* Lists with double dash */
.article__content ul {
  list-style: none;
  margin-bottom: 1.2rem;
  padding-left: 0;
}

.article__content ul li {
  position: relative;
  padding-left: 2.5em;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  line-height: 1.5;
}

.article__content ul li::before {
  content: "——";
  position: absolute;
  left: 0;
  color: var(--color-text);
}

/* Numbered lists */
.article__content ol {
  list-style: none;
  margin-bottom: 1.2rem;
  padding-left: 0;
  counter-reset: ol-counter;
}

.article__content ol li {
  position: relative;
  padding-left: 2.5em;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  line-height: 1.5;
  counter-increment: ol-counter;
}

.article__content ol li::before {
  content: counter(ol-counter) ". ";
  position: absolute;
  left: 0;
  font-weight: 600;
}

/* Nested lists */
.article__content ul ul li::before,
.article__content ol ul li::before {
  content: "——";
  font-weight: 400;
}

/* Blockquotes */
.article__content blockquote {
  margin: 1.5rem 0;
  padding: 1.2rem 2rem;
  background-color: var(--color-surface-alt);
  font-style: italic;
  color: var(--color-muted);
}

.article__content blockquote p {
  margin-bottom: 0;
  font-size: 1.6rem;
}

/* Code blocks */
.article__content pre {
  background-color: var(--color-surface);
  border-radius: 4px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: var(--font-family);
  font-size: 1.3rem;
  line-height: 1.4;
}

.article__content code {
  font-family: var(--font-family);
  font-size: 1.3rem;
}

/* Inline code */
.article__content p code,
.article__content li code {
  background-color: var(--color-surface);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

.article__content pre code {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}

/* Links in content */
.article__content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.article__content a:hover {
  color: var(--color-accent-hover);
}

/* HR */
.article__content hr {
  display: none;
}

/* Tables */
.article__content table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.5rem 0;
  font-size: 1.4rem;
  display: block;
  overflow-x: auto;
}

.article__content th {
  background-color: var(--color-table-header);
  border: 1px solid var(--color-line);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.article__content td {
  border: 1px solid var(--color-line);
  padding: 1rem;
}

.article__content tr:nth-child(even) {
  background-color: var(--color-surface-alt);
}

/* Article Tags */
.article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 4rem;
}

.article__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.2rem;
  font-size: 1.2rem;
  color: var(--color-muted);
  background: transparent;
  border: 1px solid var(--color-line);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: border-color 0.2s, color 0.2s;
}

.article__tag:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Article Divider */
.article__divider {
  display: none;
}

/* Author Bio */
.author-bio {
  margin-top: 10rem;
  padding-top: 4rem;
  border-top: 1px solid var(--color-line);
}

.author-bio__title {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  margin-bottom: 2rem;
  text-decoration: none;
}

.author-bio__content p {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-text);
}

.author-bio__link {
  display: inline-flex;
  align-items: center;
  margin-top: 4rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-family: var(--font-family);
  color: var(--color-text);
  background: transparent;
  border: 1px solid var(--color-text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}

.author-bio__link:hover {
  background: #ff8562;
  color: var(--color-text);
  border-color: #ff8562;
}

/* Related Section */
.article__related {
  margin-top: 12rem;
}

.article__related-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  margin-bottom: 2rem;
  text-decoration: none;
}

.article__related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.article__related-grid .post-card-grid {
  border-bottom: none;
  padding-bottom: 0;
}

.article__related-grid .post-card-grid__image {
  margin-bottom: 3rem;
}

.article__related-grid .post-card-grid__title {
  text-decoration: none;
}

.article__related-grid .post-card-grid__tags {
  margin-bottom: 3rem;
}

/* TL;DR Block */
.tldr {
  margin: 2rem 0;
  padding: 2rem;
  background: var(--color-surface);
}

.tldr__title {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.tldr__content {
  font-size: 1.6rem;
  line-height: 1.5;
}

/* FAQ Section */
.faq {
  margin: 4rem 0;
}

.faq__item {
  padding: 2rem 0;
}

.faq__question {
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.faq__answer {
  color: var(--color-muted);
  font-size: 1.6rem;
  line-height: 1.5;
}

/* Archive */
.archive-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.archive-month {
  padding-top: 2rem;
}

.archive-month__title {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.archive-month__posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.archive-post {
  display: flex;
  align-items: baseline;
  gap: 2rem;
}

.archive-post__date {
  font-size: 1.4rem;
  color: var(--color-muted);
  min-width: 8rem;
}

.archive-post__title {
  font-size: 1.6rem;
}

.archive-post__title a {
  color: var(--color-text);
  text-decoration: none;
}

.archive-post__title a:hover {
  color: var(--color-accent);
}

/* Tags Page */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tags-cloud .tag {
  font-size: 1.4rem;
  padding: 0.6rem 1.5rem;
}

/* Search */
.search {
  margin-bottom: 3rem;
}

.search__input {
  width: 100%;
  max-width: 50rem;
  padding: 1.2rem 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  color: var(--color-text);
  font-family: var(--font-family);
  font-size: 1.6rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.search__input::placeholder {
  color: var(--color-muted);
}

.search__input:focus {
  border-color: var(--color-text);
}

.search__results {
  margin-top: 4rem;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4rem 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.pagination__link {
  padding: 1rem 1.5rem;
  font-size: 1.4rem;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.2s ease;
}

.pagination__link:hover,
.pagination__link--active {
  color: var(--color-accent);
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--color-line);
  margin-top: 4rem;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 1.2rem;
  color: var(--color-muted);
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__link {
  font-size: 1.2rem;
  color: var(--color-accent);
}

.footer__link:hover {
  color: var(--color-accent-hover);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  html {
    font-size: 55%;
  }

  .header {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .article__title {
    font-size: 3rem;
    max-width: 100%;
  }

  .post-grid {
    grid-template-columns: 1fr;
  }

  .article__related-grid {
    grid-template-columns: 1fr;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

/* Utility classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-muted {
  color: var(--color-muted);
}

.text-accent {
  color: var(--color-accent);
}




/* Back to blog — floating button */
.back-to-blog {
  position: fixed;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-family);
  font-size: 1.2rem;
  color: #fff;
  background: var(--color-text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 1.8rem;
  z-index: 100;
  transition: background 0.2s;
}

.back-to-blog:hover {
  background: var(--color-accent);
  color: var(--color-text);
}

@media (max-width: 768px) {
  .back-to-blog {
    left: 1rem;
    top: auto;
    bottom: 1rem;
    transform: none;
    font-size: 1.1rem;
    padding: 0.8rem 1.4rem;
  }
}



/* Images in article content */
.article__content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem 0 0 0;
}

/* Image captions - em after img */
.article__content img + em,
.article__content p > em:only-child {
  display: block;
  margin-top: 0;
  margin-bottom: 2.5rem;
  font-size: 0.9em;
  color: var(--color-muted);
}

/* Fix: paragraphs with images */
.article__content p:has(img) {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.article__content p:has(img) br {
  display: none;
}

.article__content p:has(img) em {
  margin: 0;
  font-size: 0.9em;
  color: var(--color-muted);
}
