/* Summarized Essays — Custom MkDocs Material Overrides */

/* Subtle hero section on homepage */
.md-content__inner h1:first-child {
  margin-top: 0;
}

/* ── Essay card boundaries on blog index ── */
.md-post {
  border: 1px solid #d0d7de;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--md-default-bg-color);
}

[data-md-color-scheme="slate"] .md-post {
  border-color: #3d444d;
}

/* Post title */
.md-post__title {
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

/* Meta info styling */
.md-post__meta {
  font-size: 0.8rem;
  color: var(--md-default-fg-color--light);
  margin-bottom: 0.75rem;
}

/* Summary / description on post cards */
.md-post__content p:first-child {
  margin-top: 0;
  color: var(--md-default-fg-color--light);
}

/* Source link styling in post content */
.md-content a[href^="http"] {
  word-break: break-all;
}

/* Tag pills */
.md-tag {
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: 1rem;
  background: var(--md-primary-fg-color--transparent);
  color: var(--md-primary-fg-color);
}

/* Archive / year list styling */
.md-post__list {
  margin-top: 1rem;
}

/* Dark mode source link subtlety */
[data-md-color-scheme="slate"] .md-content a[href^="http"] {
  opacity: 0.9;
}

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