@charset "UTF-8";
/* =========================================
   Scott Radcliff — Jekyll Typography System
   ========================================= */
/* ---- 1. Variables ---- */
/* ---- 2. Base ---- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: #111111;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---- 3. Layout ---- */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.site-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.site-title {
  color: #111111;
  display: inline-block;
  font-weight: 800;
  font-size: 1.5em;
}
.site-title:hover {
  text-decoration: none;
}

.site-tagline {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0.1rem 0 0;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}
.site-nav a[aria-current=page] {
  color: #111111;
  font-weight: 600;
}

/* ---- 4. Typography ---- */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.25;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin: 1.25rem 0;
}

.meta {
  color: #6b7280;
  font-size: 0.9rem;
}

a {
  color: #b85050;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul, ol {
  margin: 1.25rem 0;
  padding-left: 1.5rem;
}

/* ---- 5. Code ---- */
code {
  font-family: "JetBrains Mono", Menlo, monospace;
  background: #f3f4f6;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
}

pre {
  font-family: "JetBrains Mono", Menlo, monospace;
  background: #f9fafb;
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  border: 1px solid #e5e7eb;
}

/* ---- 6. Post List ---- */
.post-preview {
  padding: 2rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.post-preview h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
}
.post-preview p {
  margin: 0.5rem 0;
  color: #6b7280;
}

.all-posts-link {
  margin-top: 2rem;
}

.archive-list {
  list-style: none;
  padding-left: 0;
}
.archive-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}
.contact-form label {
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font: inherit;
  padding: 0.75rem;
}
.contact-form button {
  justify-self: start;
  margin-top: 0.75rem;
  border: 0;
  border-radius: 6px;
  background: #b85050;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  padding: 0.7rem 1rem;
}
.contact-form button:hover {
  background: #9f4141;
}

@media (max-width: 560px) {
  .container {
    padding-top: 2rem;
  }
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }
}
/* ---- 7. Footer ---- */
footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.9rem;
  color: #6b7280;
}

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