:root {
  --bg: #fcfcfc;
  --text: #111111;
  --muted: #5c5c5c;
  --line: #e8e8e8;
  --accent: #1f4b99;
  --surface: #ffffff;
  --button-bg: #ffffff;
  --button-text: #111111;
}

:root[data-theme=dark] {
  --bg: #0f1115;
  --text: #e8e8e8;
  --muted: #a0a6ad;
  --line: #232a33;
  --accent: #7da2ff;
  --surface: #151922;
  --button-bg: #151922;
  --button-text: #e8e8e8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.top-nav {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.theme-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.theme-button {
  border: 1px solid var(--line);
  background: var(--button-bg);
  color: var(--button-text);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.theme-button.is-active {
  border-color: var(--accent);
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, var(--button-bg));
}

h1,
h2,
h3 {
  line-height: 1.25;
  margin-top: 0;
}

h1 {
  margin-bottom: 0.25rem;
  font-size: 2rem;
}

h2 {
  margin-top: 2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.35rem;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

p,
li {
  color: var(--text);
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.header {
  margin-bottom: 1.75rem;
}

.contact {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.95rem;
  align-items: center;
}

.favicon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.favicon {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  flex-shrink: 0;
  object-fit: contain;
}

.favicon-svg {
  width: 14px;
  height: 14px;
}

.work-heading {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.work-heading .favicon {
  width: 16px;
  height: 16px;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem;
  background: var(--surface);
}

.meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.work-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.work-item {
  padding: 0 0 0.85rem;
  border-bottom: 1px solid var(--line);
}

.work-item:last-child {
  border-bottom: none;
}

ul {
  padding-left: 1.1rem;
  margin: 0.4rem 0 0;
}

.post-list {
  list-style: none;
  padding-left: 0;
}

.post-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.post-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.post-body h2 {
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.15rem;
}

.post-body h3 {
  margin-top: 1.25rem;
}

.post-body pre,
.post-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
}

.post-body pre {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-x: auto;
  background: var(--surface);
}

/*# sourceMappingURL=style.css.map */