/* frontend/styles/index.css */
:root {
  --color-bg: #f8f9fa;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #6b7280;
  --color-text-light: #9ca3af;
  --color-accent: #2563eb;
  --color-accent-hover: #1d4ed8;
  --color-border: #e5e7eb;
  --color-border-light: #f3f4f6;
  --color-tag-bg: #f3f4f6;
  --color-tag-text: #374151;
  --color-code-bg: #f6f8fa;
  --nav-height: 48px;
  --content-width: 720px;
  --container-width: 720px;
  --radius: 8px;
  --radius-sm: 4px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --font-sans:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  --font-mono:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    Menlo,
    monospace;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2563eb;
  color: var(--color-accent);
  text-decoration: none;
}
a:hover {
  color: #1d4ed8;
  color: var(--color-accent-hover);
  text-decoration: underline;
}
body {
  background: #f8f9fa;
  background: var(--color-bg);
  color: #1a1a1a;
  color: var(--color-text);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.profile-cover {
  width: 100%;
  max-width: 720px;
  max-width: var(--container-width);
  margin: 0 auto;
  height: 200px;
  overflow: hidden;
}
.profile-cover-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 640px) {
  .profile-cover {
    height: 120px;
  }
}
.profile-card-wrapper {
  max-width: 720px;
  max-width: var(--container-width);
  margin: 0 auto;
  background: #ffffff;
  background: var(--color-surface);
}
.profile-card {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.profile-card-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #ffffff;
  border: 3px solid var(--color-surface);
  margin-top: -36px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}
.profile-card-info h1 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
}
.profile-card-info p {
  color: #6b7280;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-top: 2px;
}
.profile-card-links {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.profile-card-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border-radius: var(--radius);
  color: #6b7280;
  color: var(--color-text-muted);
  background: #f3f4f6;
  background: var(--color-border-light);
  transition: color 0.15s, background 0.15s;
}
.profile-card-links a:hover {
  color: #1a1a1a;
  color: var(--color-text);
  background: #e5e7eb;
  background: var(--color-border);
  text-decoration: none;
}
.profile-card-links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
@media (max-width: 640px) {
  .profile-card {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
  .profile-card-avatar {
    margin-top: -48px;
  }
  .profile-card-links {
    justify-content: center;
  }
}
.site-nav-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav {
  max-width: 720px;
  max-width: var(--container-width);
  margin: 0 auto;
  background: #ffffff;
  background: var(--color-surface);
  border-bottom: 1px solid #e5e7eb;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: stretch;
  height: 48px;
  height: var(--nav-height);
}
.site-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b7280;
  color: var(--color-text-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.site-nav-link:hover {
  color: #1a1a1a;
  color: var(--color-text);
  text-decoration: none;
}
.site-nav-link.is-active {
  color: #1a1a1a;
  color: var(--color-text);
  border-bottom-color: #2563eb;
  border-bottom-color: var(--color-accent);
}
@media (max-width: 640px) {
  .site-nav-link {
    flex: 1 1;
    padding: 0 8px;
    font-size: 0.85rem;
  }
}
.container {
  max-width: 720px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}
.content-column {
  max-width: 720px;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 32px 0;
}
.site-main {
  min-height: 50vh;
}
.profile-about {
  background: #ffffff;
  background: var(--color-surface);
  border-radius: 8px;
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  padding: 32px;
}
.profile-about h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.profile-about h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 20px 0 8px;
}
.profile-about p {
  margin: 0.5em 0;
  color: #6b7280;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
.profile-about ul {
  padding-left: 1.5em;
  margin: 0.5em 0;
  color: #6b7280;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
.profile-about li {
  margin: 0.25em 0;
}
@media (max-width: 640px) {
  .profile-about {
    padding: 24px 16px;
    border-radius: 0;
    box-shadow: none;
  }
}
.article-list {
  max-width: 720px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px 40px;
}
.article-list h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #6b7280;
  color: var(--color-text-muted);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
  border-bottom: 1px solid var(--color-border);
}
.article-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
  border-bottom: 1px solid var(--color-border-light);
}
.article-item:last-child {
  border-bottom: none;
}
.article-date {
  flex-shrink: 0;
  font-size: 0.8125rem;
  color: #9ca3af;
  color: var(--color-text-light);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  width: 7em;
}
.article-title {
  font-size: 0.9375rem;
  line-height: 1.5;
}
.article-title a {
  color: #1a1a1a;
  color: var(--color-text);
}
.article-title a:hover {
  color: #2563eb;
  color: var(--color-accent);
}
.article-summary {
  display: block;
  font-size: 0.8125rem;
  color: #6b7280;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: 2px;
}
.article-summary p {
  margin: 0;
}
.article-summary code {
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    Menlo,
    monospace;
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: #f6f8fa;
  background: var(--color-code-bg);
  padding: 0.1em 0.3em;
  border-radius: 4px;
  border-radius: var(--radius-sm);
}
.article-category {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: #1e40af;
  background: #dbeafe;
  padding: 1px 8px;
  border-radius: 4px;
  border-radius: var(--radius-sm);
}
@media (max-width: 640px) {
  .article-item {
    flex-direction: column;
    gap: 2px;
  }
  .article-date {
    width: auto;
  }
}
.post-header {
  margin-bottom: 32px;
  padding: 0 40px;
}
.post-header h1 {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.3;
  color: #1a1a1a;
  color: var(--color-text);
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: #6b7280;
  color: var(--color-text-muted);
}
.post-category {
  font-size: 0.75rem;
  background: #dbeafe;
  color: #1e40af;
  padding: 2px 10px;
  border-radius: 4px;
  border-radius: var(--radius-sm);
}
.post-content {
  background: #ffffff;
  background: var(--color-surface);
  border-radius: 8px;
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  padding: 40px;
}
@media (max-width: 640px) {
  .post-content {
    padding: 24px 16px;
    border-radius: 0;
    box-shadow: none;
  }
  .post-header {
    padding: 0 16px;
  }
  .post-tags {
    padding: 16px 16px 0;
  }
}
.post-content h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
}
.post-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  border-bottom: 1px solid #e5e7eb;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.3em;
}
.post-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}
.post-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
}
.post-content p {
  margin: 0.75em 0;
}
.post-content ul,
.post-content ol {
  margin: 0.75em 0;
  padding-left: 1.5em;
}
.post-content li {
  margin: 0.25em 0;
}
.post-content blockquote {
  margin: 1em 0;
  padding: 0.5em 1em;
  border-left: 3px solid #e5e7eb;
  border-left: 3px solid var(--color-border);
  color: #6b7280;
  color: var(--color-text-muted);
}
.post-content code {
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    Menlo,
    monospace;
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: #f6f8fa;
  background: var(--color-code-bg);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  border-radius: var(--radius-sm);
}
.post-content pre {
  margin: 1em 0;
  padding: 16px;
  background: #f6f8fa;
  background: var(--color-code-bg);
  border-radius: 8px;
  border-radius: var(--radius);
  overflow-x: auto;
  line-height: 1.5;
}
.post-content pre code {
  background: none;
  padding: 0;
  font-size: 0.8125rem;
}
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  font-size: 0.9rem;
}
.post-content th,
.post-content td {
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border: 1px solid var(--color-border);
  text-align: left;
}
.post-content th {
  background: #f3f4f6;
  background: var(--color-border-light);
  font-weight: 600;
}
.post-content hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  border-top: 1px solid var(--color-border);
  margin: 2rem 0;
}
.post-content img {
  border-radius: 4px;
  border-radius: var(--radius-sm);
}
.post-tags {
  margin-top: 32px;
  padding: 16px 40px 0;
  border-top: 1px solid #e5e7eb;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.post-tags .tag {
  display: inline-block;
  font-size: 0.75rem;
  color: #374151;
  color: var(--color-tag-text);
  background: #f3f4f6;
  background: var(--color-tag-bg);
  padding: 2px 10px;
  border-radius: 4px;
  border-radius: var(--radius-sm);
}
.image-grid {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
  margin: 1em 0;
}
.image-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.image-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.image-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 640px) {
  .image-grid-2,
  .image-grid-3,
  .image-grid-4 {
    grid-template-columns: 1fr;
  }
}
.card {
  background: #ffffff;
  background: var(--color-surface);
  border-radius: 8px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  border: 1px solid #f3f4f6;
  border: 1px solid var(--color-border-light);
}
.card-image img {
  width: 100%;
  display: block;
}
.card-caption {
  padding: 8px 12px;
}
.image-card-centered {
  max-width: 75%;
  margin: 1em auto;
}
@media (max-width: 640px) {
  .image-card-centered {
    max-width: 100%;
  }
}
.enclosure img {
  max-width: 100%;
  border-radius: 4px;
  border-radius: var(--radius-sm);
}
.img-rounded {
  border-radius: 4px;
  border-radius: var(--radius-sm);
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-sm {
  font-size: 0.8125rem;
}
.site-footer {
  padding: 32px 16px;
  text-align: center;
  font-size: 0.8125rem;
  color: #9ca3af;
  color: var(--color-text-light);
}
.site-footer a {
  color: #6b7280;
  color: var(--color-text-muted);
}

/* frontend/styles/syntax-highlighting.css */
pre.highlight {
  padding: 16px;
  background-color: #F6F8FA;
}
.highlight .hll {
  background-color: #ffffcc;
}
.highlight .c {
  color: #999988;
  font-style: italic;
}
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
.highlight .k {
  color: #000000;
  font-weight: bold;
}
.highlight .o {
  color: #000000;
  font-weight: bold;
}
.highlight .cm {
  color: #999988;
  font-style: italic;
}
.highlight .cp {
  color: #999999;
  font-weight: bold;
  font-style: italic;
}
.highlight .c1 {
  color: #999988;
  font-style: italic;
}
.highlight .cs {
  color: #999999;
  font-weight: bold;
  font-style: italic;
}
.highlight .gd {
  color: #000000;
  background-color: #ffdddd;
}
.highlight .ge {
  color: #000000;
  font-style: italic;
}
.highlight .gr {
  color: #aa0000;
}
.highlight .gh {
  color: #999999;
}
.highlight .gi {
  color: #000000;
  background-color: #ddffdd;
}
.highlight .go {
  color: #888888;
}
.highlight .gp {
  color: #555555;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #aaaaaa;
}
.highlight .gt {
  color: #aa0000;
}
.highlight .kc {
  color: #000000;
  font-weight: bold;
}
.highlight .kd {
  color: #000000;
  font-weight: bold;
}
.highlight .kn {
  color: #000000;
  font-weight: bold;
}
.highlight .kp {
  color: #000000;
  font-weight: bold;
}
.highlight .kr {
  color: #000000;
  font-weight: bold;
}
.highlight .kt {
  color: #445588;
  font-weight: bold;
}
.highlight .m {
  color: #009999;
}
.highlight .s {
  color: #d01040;
}
.highlight .na {
  color: #008080;
}
.highlight .nb {
  color: #0086B3;
}
.highlight .nc {
  color: #445588;
  font-weight: bold;
}
.highlight .no {
  color: #008080;
}
.highlight .nd {
  color: #3c5d5d;
  font-weight: bold;
}
.highlight .ni {
  color: #800080;
}
.highlight .ne {
  color: #990000;
  font-weight: bold;
}
.highlight .nf {
  color: #990000;
  font-weight: bold;
}
.highlight .nl {
  color: #990000;
  font-weight: bold;
}
.highlight .nn {
  color: #555555;
}
.highlight .nt {
  color: #000080;
}
.highlight .nv {
  color: #008080;
}
.highlight .ow {
  color: #000000;
  font-weight: bold;
}
.highlight .w {
  color: #bbbbbb;
}
.highlight .mf {
  color: #009999;
}
.highlight .mh {
  color: #009999;
}
.highlight .mi {
  color: #009999;
}
.highlight .mo {
  color: #009999;
}
.highlight .sb {
  color: #d01040;
}
.highlight .sc {
  color: #d01040;
}
.highlight .sd {
  color: #d01040;
}
.highlight .s2 {
  color: #d01040;
}
.highlight .se {
  color: #d01040;
}
.highlight .sh {
  color: #d01040;
}
.highlight .si {
  color: #d01040;
}
.highlight .sx {
  color: #d01040;
}
.highlight .sr {
  color: #009926;
}
.highlight .s1 {
  color: #d01040;
}
.highlight .ss {
  color: #990073;
}
.highlight .bp {
  color: #999999;
}
.highlight .vc {
  color: #008080;
}
.highlight .vg {
  color: #008080;
}
.highlight .vi {
  color: #008080;
}
.highlight .il {
  color: #009999;
}
/*# sourceMappingURL=/_bridgetown/static/index.3G74UZ2M.css.map */
