:root,
[data-theme="light"] {
  --ctp-base: #eff1f5;
  --ctp-mantle: #e6e9ef;
  --ctp-crust: #dce0e8;
  --ctp-surface0: #ccd0da;
  --ctp-surface1: #bcc0cc;
  --ctp-surface2: #acb0be;
  --ctp-overlay0: #9ca0b0;
  --ctp-overlay1: #8c8fa1;
  --ctp-overlay2: #7c7f93;
  --ctp-subtext0: #6c6f85;
  --ctp-subtext1: #5c5f77;
  --ctp-text: #4c4f69;
  --ctp-lavender: #7287fd;
  --ctp-blue: #1e66f5;
  --ctp-sapphire: #209fb5;
  --ctp-sky: #04a5e5;
  --ctp-teal: #179299;
  --ctp-green: #40a02b;
  --ctp-yellow: #df8e1d;
  --ctp-peach: #fe640b;
  --ctp-maroon: #e64553;
  --ctp-red: #d20f39;
  --ctp-mauve: #8839ef;
  --ctp-pink: #ea76cb;
  --ctp-flamingo: #dd7878;
  --ctp-rosewater: #dc8a78;

  --primary-red: #d20f39;
  --primary-red-hover: #e64553;
  --primary-blue: #1e66f5;
  --primary-blue-hover: #04a5e5;

  --text-color: #4c4f69;
  --text-muted: #6c6f85;
  --text-black: #4c4f69;
  --bg-color: #eff1f5;
  --bg-secondary: #e6e9ef;
  --border-color: #ccd0da;
  --heading-color: #4c4f69;
  --floating-toolbar-bg: #eff1f5;
}

[data-theme="dark"] {
  --ctp-base: #1e1e2e;
  --ctp-mantle: #181825;
  --ctp-crust: #11111b;
  --ctp-surface0: #313244;
  --ctp-surface1: #45475a;
  --ctp-surface2: #585b70;
  --ctp-overlay0: #6c7086;
  --ctp-overlay1: #7f849c;
  --ctp-overlay2: #9399b2;
  --ctp-subtext0: #a6adc8;
  --ctp-subtext1: #bac2de;
  --ctp-text: #cdd6f4;
  --ctp-lavender: #b4befe;
  --ctp-blue: #89b4fa;
  --ctp-sapphire: #74c7ec;
  --ctp-sky: #89dceb;
  --ctp-teal: #94e2d5;
  --ctp-green: #a6e3a1;
  --ctp-yellow: #f9e2af;
  --ctp-peach: #fab387;
  --ctp-maroon: #eba0ac;
  --ctp-red: #f38ba8;
  --ctp-mauve: #cba6f7;
  --ctp-pink: #f5c2e7;
  --ctp-flamingo: #f2cdcd;
  --ctp-rosewater: #f5e0dc;

  --primary-red: #f38ba8;
  --primary-red-hover: #eba0ac;
  --primary-blue: #89b4fa;
  --primary-blue-hover: #74c7ec;

  --text-color: #cdd6f4;
  --text-muted: #a6adc8;
  --text-black: #cdd6f4;
  --bg-color: #1e1e2e;
  --bg-secondary: #181825;
  --border-color: #313244;
  --heading-color: #cdd6f4;
  --floating-toolbar-bg: #1e1e2e;
}

body {
  font-family: 'Zalando Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

ol {
  list-style-type: decimal;
}

ul {
  list-style-type: disc;
}

.post-container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.post-author {
  text-align: center;
  margin-bottom: 2rem;
}

.post-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 0.75rem auto;
  display: block;
}

.post-author-name {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-color);
  letter-spacing: 0.15em;
}

.post-date {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.post-title {
  font-size: 2.5rem !important;
  font-weight: 600;
  margin: 2rem 0 0.5rem 0;
  color: var(--heading-color);
  line-height: 1.2;
}

.post-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
  text-align: center;
}

.post-body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}

.post-body h1 {
  font-size: 2rem;
  margin: 2rem 0 1rem 0;
  color: var(--heading-color);
}

.post-body h2 {
  font-size: 1.5rem;
  margin: 1.5rem 0 0.75rem 0;
  font-weight: 600;
  color: var(--heading-color);
}

.post-body h3 {
  font-size: 1.25rem;
  margin: 1.25rem 0 0.5rem 0;
  color: var(--heading-color);
}

.post-body p {
  margin: 1rem 0;
}

.post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.post-body video {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.post-body ul,
.post-body ol {
  margin: 1rem 0;
  padding-left: 2rem;
  list-style-position: outside;
  display: block;
}

.post-body ul {
  list-style-type: disc !important;
}

.post-body ol {
  list-style-type: decimal !important;
}

.post-body li {
  margin: 0.25rem 0;
  display: list-item !important;
  margin-left: 1em;
}

.post-body blockquote {
  border-left: 4px solid var(--primary-red);
  padding-left: 1rem;
  margin: 1rem 0;
  color: var(--text-color);
}

.post-body a {
  color: var(--primary-red);
  text-decoration: underline;
}

.post-body code {
  background: var(--ctp-surface0);
  padding: 0.2em 0.4em;
  border-radius: 0.25em;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
  font-weight: 300;
  color: var(--ctp-text);
}

.post-body .highlight {
  background: var(--ctp-surface0);
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1rem 0;
}

.post-body .highlight pre {
  background: none;
  padding: 0;
  margin: 0;
  overflow-x: visible;
}

.post-body .highlight code {
  background: none;
  padding: 0;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.post-body pre:not(.highlight pre) {
  background: var(--ctp-surface0);
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1rem 0;
}

.post-body pre code {
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
  font-weight: 300;
}

[data-theme="light"] .highlight table td { padding: 5px; }
[data-theme="light"] .highlight table pre { margin: 0; }
[data-theme="light"] .highlight, [data-theme="light"] .highlight .w {
  color: #24292f;
  background-color: transparent;
}
[data-theme="light"] .highlight .k, [data-theme="light"] .highlight .kd, [data-theme="light"] .highlight .kn, [data-theme="light"] .highlight .kp, [data-theme="light"] .highlight .kr, [data-theme="light"] .highlight .kt, [data-theme="light"] .highlight .kv {
  color: #cf222e;
}
[data-theme="light"] .highlight .gr {
  color: #f6f8fa;
}
[data-theme="light"] .highlight .gd {
  color: #82071e;
  background-color: #ffebe9;
}
[data-theme="light"] .highlight .nb {
  color: #953800;
}
[data-theme="light"] .highlight .nc {
  color: #953800;
}
[data-theme="light"] .highlight .no {
  color: #953800;
}
[data-theme="light"] .highlight .nn {
  color: #953800;
}
[data-theme="light"] .highlight .sr {
  color: #116329;
}
[data-theme="light"] .highlight .na {
  color: #116329;
}
[data-theme="light"] .highlight .nt {
  color: #116329;
}
[data-theme="light"] .highlight .gi {
  color: #116329;
  background-color: #dafbe1;
}
[data-theme="light"] .highlight .ges {
  font-weight: bold;
  font-style: italic;
}
[data-theme="light"] .highlight .kc {
  color: #0550ae;
}
[data-theme="light"] .highlight .l, [data-theme="light"] .highlight .ld, [data-theme="light"] .highlight .m, [data-theme="light"] .highlight .mb, [data-theme="light"] .highlight .mf, [data-theme="light"] .highlight .mh, [data-theme="light"] .highlight .mi, [data-theme="light"] .highlight .il, [data-theme="light"] .highlight .mo, [data-theme="light"] .highlight .mx {
  color: #0550ae;
}
[data-theme="light"] .highlight .sb {
  color: #0550ae;
}
[data-theme="light"] .highlight .bp {
  color: #0550ae;
}
[data-theme="light"] .highlight .ne {
  color: #0550ae;
}
[data-theme="light"] .highlight .nl {
  color: #0550ae;
}
[data-theme="light"] .highlight .py {
  color: #0550ae;
}
[data-theme="light"] .highlight .nv, [data-theme="light"] .highlight .vc, [data-theme="light"] .highlight .vg, [data-theme="light"] .highlight .vi, [data-theme="light"] .highlight .vm {
  color: #0550ae;
}
[data-theme="light"] .highlight .o, [data-theme="light"] .highlight .ow {
  color: #0550ae;
}
[data-theme="light"] .highlight .gh {
  color: #0550ae;
  font-weight: bold;
}
[data-theme="light"] .highlight .gu {
  color: #0550ae;
  font-weight: bold;
}
[data-theme="light"] .highlight .s, [data-theme="light"] .highlight .sa, [data-theme="light"] .highlight .sc, [data-theme="light"] .highlight .dl, [data-theme="light"] .highlight .sd, [data-theme="light"] .highlight .s2, [data-theme="light"] .highlight .se, [data-theme="light"] .highlight .sh, [data-theme="light"] .highlight .sx, [data-theme="light"] .highlight .s1, [data-theme="light"] .highlight .ss {
  color: #0a3069;
}
[data-theme="light"] .highlight .nd {
  color: #8250df;
}
[data-theme="light"] .highlight .nf, [data-theme="light"] .highlight .fm {
  color: #8250df;
}
[data-theme="light"] .highlight .err {
  color: #f6f8fa;
  background-color: #82071e;
}
[data-theme="light"] .highlight .c, [data-theme="light"] .highlight .ch, [data-theme="light"] .highlight .cd, [data-theme="light"] .highlight .cm, [data-theme="light"] .highlight .cp, [data-theme="light"] .highlight .cpf, [data-theme="light"] .highlight .c1, [data-theme="light"] .highlight .cs {
  color: #6e7781;
}
[data-theme="light"] .highlight .gl {
  color: #6e7781;
}
[data-theme="light"] .highlight .gt {
  color: #6e7781;
}
[data-theme="light"] .highlight .ni {
  color: #24292f;
}
[data-theme="light"] .highlight .si {
  color: #24292f;
}
[data-theme="light"] .highlight .ge {
  color: #24292f;
  font-style: italic;
}
[data-theme="light"] .highlight .gs {
  color: #24292f;
  font-weight: bold;
}

[data-theme="dark"] .highlight table td { padding: 5px; }
[data-theme="dark"] .highlight table pre { margin: 0; }
[data-theme="dark"] .highlight, [data-theme="dark"] .highlight .w {
  color: #f8f8f2;
  background-color: transparent;
}
[data-theme="dark"] .highlight .err {
  color: #272822;
  background-color: #f92672;
}
[data-theme="dark"] .highlight .c, [data-theme="dark"] .highlight .ch, [data-theme="dark"] .highlight .cd, [data-theme="dark"] .highlight .cm, [data-theme="dark"] .highlight .cpf, [data-theme="dark"] .highlight .c1, [data-theme="dark"] .highlight .cs {
  color: #75715e;
}
[data-theme="dark"] .highlight .cp {
  color: #f4bf75;
}
[data-theme="dark"] .highlight .nt {
  color: #f4bf75;
}
[data-theme="dark"] .highlight .o, [data-theme="dark"] .highlight .ow {
  color: #f8f8f2;
}
[data-theme="dark"] .highlight .p, [data-theme="dark"] .highlight .pi {
  color: #f8f8f2;
}
[data-theme="dark"] .highlight .gi {
  color: #a6e22e;
}
[data-theme="dark"] .highlight .gd {
  color: #f92672;
}
[data-theme="dark"] .highlight .gh {
  color: #66d9ef;
  background-color: #272822;
  font-weight: bold;
}
[data-theme="dark"] .highlight .ge {
  font-style: italic;
}
[data-theme="dark"] .highlight .ges {
  font-weight: bold;
  font-style: italic;
}
[data-theme="dark"] .highlight .gs {
  font-weight: bold;
}
[data-theme="dark"] .highlight .k, [data-theme="dark"] .highlight .kn, [data-theme="dark"] .highlight .kp, [data-theme="dark"] .highlight .kr, [data-theme="dark"] .highlight .kv {
  color: #ae81ff;
}
[data-theme="dark"] .highlight .kc {
  color: #fd971f;
}
[data-theme="dark"] .highlight .kt {
  color: #fd971f;
}
[data-theme="dark"] .highlight .kd {
  color: #fd971f;
}
[data-theme="dark"] .highlight .s, [data-theme="dark"] .highlight .sb, [data-theme="dark"] .highlight .sc, [data-theme="dark"] .highlight .dl, [data-theme="dark"] .highlight .sd, [data-theme="dark"] .highlight .s2, [data-theme="dark"] .highlight .sh, [data-theme="dark"] .highlight .sx, [data-theme="dark"] .highlight .s1 {
  color: #a6e22e;
}
[data-theme="dark"] .highlight .sa {
  color: #ae81ff;
}
[data-theme="dark"] .highlight .sr {
  color: #a1efe4;
}
[data-theme="dark"] .highlight .si {
  color: #cc6633;
}
[data-theme="dark"] .highlight .se {
  color: #cc6633;
}
[data-theme="dark"] .highlight .nn {
  color: #f4bf75;
}
[data-theme="dark"] .highlight .nc {
  color: #f4bf75;
}
[data-theme="dark"] .highlight .no {
  color: #f4bf75;
}
[data-theme="dark"] .highlight .na {
  color: #66d9ef;
}
[data-theme="dark"] .highlight .m, [data-theme="dark"] .highlight .mb, [data-theme="dark"] .highlight .mf, [data-theme="dark"] .highlight .mh, [data-theme="dark"] .highlight .mi, [data-theme="dark"] .highlight .il, [data-theme="dark"] .highlight .mo, [data-theme="dark"] .highlight .mx {
  color: #a6e22e;
}
[data-theme="dark"] .highlight .ss {
  color: #a6e22e;
}

.post-body hr {
  margin: 2rem 0 1rem 0;
  border: none;
  border-top: 1px solid var(--border-color);
}

.post-body sup {
  margin-left: 0.15em;
}

.post-body sup a {
  text-decoration: none;
  color: var(--primary-red);
  font-weight: 500;
}

.post-body .image-caption {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0.25rem auto 1.5rem auto;
  font-style: italic;
  line-height: 1.5;
  width: 68%;
}

.post-body .footnotes {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.post-body .footnotes ol {
  list-style-position: outside;
  padding-left: 2rem;
}

.post-body .footnotes li {
  margin-bottom: 0.5rem;
}

.post-body .footnotes li p {
  margin: 0;
  padding: 0;
  font-weight: 400;
  line-height: 1.6;
  display: block;
}

.post-body .footnotes a {
  color: var(--primary-red);
  text-decoration: underline;
  font-weight: 400;
}

.index-container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.index-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

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

.post-list-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

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

.post-list-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.post-list-title a {
  color: var(--heading-color);
  text-decoration: none;
}

.post-list-title a:hover {
  color: var(--primary-red);
}

.post-list-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.min-h-screen {
  min-height: 100vh;
}

.hero-section {
  display: flex;
  align-items: start;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.hero-container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

.hero-intro {
  padding-top: 3rem;
}

.hero-avatar-container {
  margin-bottom: 1.5rem;
}

.hero-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-title-part1 {
  color: var(--ctp-lavender);
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.hero-desc-muted {
  color: var(--ctp-subtext0);
}

.hero-desc-accent1 {
  color: var(--ctp-peach);
}

.hero-desc-accent2 {
  color: var(--ctp-teal);
}

.hero-meta {
  color: var(--ctp-overlay1);
}

.hero-author {
  margin-bottom: 0.5rem;
}

.hero-author-name {
  color: var(--ctp-mauve);
}

.hero-post-count {
  font-size: 0.875rem;
}

.hero-count-number {
  color: var(--ctp-green);
}

.hero-featured {
  grid-column: 2 / 3;
}

.featured-card {
  background-color: transparent;
  border-radius: 0;
  padding: 0 0 2rem 0;
  border-bottom: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
}

.featured-card-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-card-image {
  width: 100%;
  height: auto;
  border-radius: 0.375rem;
  object-fit: cover;
}

.featured-card-right {
  flex: 1;
}

.featured-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.featured-badge {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ctp-green);
}

.featured-type {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
}

.post-type {
  background-color: var(--ctp-blue);
  color: var(--ctp-base);
}

.repo-type {
  background-color: var(--ctp-yellow);
  color: var(--ctp-base);
}

.paper-type {
  background-color: var(--ctp-mauve);
  color: var(--ctp-base);
}

.featured-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--ctp-text);
  line-height: 1.3;
}

.featured-excerpt {
  color: var(--ctp-subtext0);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ctp-overlay1);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.featured-divider {
  color: var(--ctp-overlay0);
}

.featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background-color: var(--ctp-surface1);
  color: var(--ctp-subtext1);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.posts-section {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem 6rem 2rem;
}

.year-group {
  margin-bottom: 4rem;
}

.year-heading {
  font-size: 2.25rem;
  color: var(--ctp-overlay1);
  margin-bottom: 2rem;
}

.posts-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.post-item-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.post-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
}

.post-item-link:hover .post-item-title.post-hover {
  color: var(--ctp-blue);
}

.post-item-link:hover .post-item-title.repo-hover {
  color: var(--ctp-green);
}

.post-item-link:hover .post-item-title.paper-hover {
  color: var(--ctp-peach);
}

.post-item-image-col {
  display: flex;
  align-items: flex-start;
  padding-top: 0.25rem;
}

.post-item-image {
  width: 100px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.375rem;
}

.post-item-date-col {
  display: flex;
  align-items: flex-start;
  padding-top: 0.25rem;
}

.post-item-date {
  color: var(--ctp-overlay1);
  font-size: 0.875rem;
}

.post-item-type-icon {
  display: inline-flex;
  align-items: center;
}

.post-item-type-icon i {
  font-size: 1rem;
  color: var(--text-color);
}

.arxiv-logo {
  height: 1rem;
  width: auto;
}

.post-item-content-col {
  flex: 1;
}

.post-item-header {
  margin-bottom: 0.5rem;
}

.content-type-title-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.post-type-label {
  text-transform: lowercase;
  font-size: 0.875rem;
  font-weight: 400;
}

.post-label {
  color: var(--ctp-blue);
}

.repo-label {
  color: var(--ctp-green);
}

.paper-label {
  color: var(--ctp-peach);
}

.content-type-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.repo-icon {
  color: var(--ctp-green);
  margin-top: 0.2rem;
}

.paper-icon {
  color: var(--ctp-peach);
  font-size: 1.25rem;
  margin-top: 0.1rem;
}

.post-item-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ctp-text);
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
}

.post-item-type {
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 0.25rem;
}

.repo-type {
  background-color: var(--ctp-green);
  color: var(--ctp-base);
}

.paper-type {
  background-color: var(--ctp-mauve);
  color: var(--ctp-base);
}

.post-item-excerpt {
  color: var(--ctp-subtext0);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.post-item-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
}

.post-item-word-count {
  color: var(--ctp-overlay1);
}

.post-item-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ctp-overlay1);
  font-size: 0.875rem;
}

.post-item-read-time {
  color: var(--ctp-overlay1);
}

.blog-footer {
  border-top: 1px solid var(--ctp-surface0);
  padding: 2rem 0;
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ctp-overlay1);
}

.footer-copyright {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  color: var(--ctp-overlay1);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--ctp-mauve);
}
