:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --text-sec: #555;
  --text-dim: #999;
  --primary: #924a28;
  --primary-hover: #D27D56;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

.site {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 2rem 6rem;
}

.header {
  margin-bottom: 2rem;
}

.site-name {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.03em;
  transition: color 0.2s;
}

.site-name:hover {
  color: var(--primary-hover);
}

.directory {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0.4rem 3rem;
  justify-content: start;
  margin-bottom: 4rem;
}

.directory a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--text-dim);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.15s, text-decoration-color 0.15s;
}

.directory a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}

.posts {
  margin-bottom: 2rem;
}

.post-entry {
  margin-bottom: 4.5rem;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.post-meta .post-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--text);
  transition: color 0.2s;
}

.post-meta .post-title:hover {
  color: var(--primary);
}

.post-date {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 2rem;
}

.post-hero {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  display: block;
}

.post-excerpt {
  font-family: "Lora", serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-sec);
}

.read-more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s;
  display: inline-block;
  margin-top: 0.5rem;
}

.read-more:hover {
  color: var(--primary-hover);
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.pag-info {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}

.pag-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s;
}

.pag-link:hover {
  color: var(--primary-hover);
}

.footer {
  margin-top: 6rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-socials a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-sec);
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: var(--primary);
}

.footer-copy {
  font-family: "Lora", serif;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
}

.post-single .post-header {
  margin-bottom: 2rem;
}
.post-single h1.post-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.post-single .post-date {
  display: block;
  margin-left: 0;
}
.post-single .post-hero {
  margin-bottom: 2.5rem;
}
.post-single .post-content {
  font-family: "Lora", serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}
.post-single .post-content h1, .post-single .post-content h2, .post-single .post-content h3, .post-single .post-content h4, .post-single .post-content h5, .post-single .post-content h6 {
  font-family: "Inter", sans-serif;
  letter-spacing: -0.02em;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.post-single .post-content h2 {
  font-size: 1.5rem;
}
.post-single .post-content h3 {
  font-size: 1.25rem;
}
.post-single .post-content h4 {
  font-size: 1.1rem;
}
.post-single .post-content p {
  margin-bottom: 1.5rem;
}
.post-single .post-content a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: var(--primary-hover);
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.15s;
}
.post-single .post-content a:hover {
  color: var(--primary-hover);
}
.post-single .post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1.5rem 0;
  display: block;
}
.post-single .post-content ul, .post-single .post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.post-single .post-content li {
  margin-bottom: 0.5rem;
}
.post-single .post-content blockquote {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  border-left: 3px solid var(--text-dim);
  color: var(--text-sec);
  font-style: italic;
}
.post-single .post-content pre {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  line-height: 1.6;
}
.post-single .post-content code {
  font-size: 0.88em;
  background: #f5f5f5;
  padding: 0.15em 0.35em;
  border-radius: 4px;
}
.post-single .post-content pre code {
  background: none;
  padding: 0;
  border-radius: 0;
}
.post-single .post-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
}
.post-single .post-content th, .post-single .post-content td {
  text-align: left;
  padding: 0.75rem 1rem;
}
.post-single .post-content thead th {
  font-weight: 600;
  border-bottom: 2px solid var(--text);
}
.post-single .post-content tbody td {
  border-bottom: 1px solid #eee;
}
.post-single .post-content hr {
  border: none;
  margin: 3rem 0;
}

.page-content .page-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  line-height: 1.25;
}
.page-content {
  font-family: "Lora", serif;
  font-size: 1.05rem;
  line-height: 1.85;
}
.page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
  font-family: "Inter", sans-serif;
  letter-spacing: -0.02em;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.page-content h2 {
  font-size: 1.5rem;
}
.page-content h3 {
  font-size: 1.25rem;
}
.page-content h4 {
  font-size: 1.1rem;
}
.page-content p {
  margin-bottom: 1.5rem;
}
.page-content a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: var(--primary-hover);
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.15s;
}
.page-content a:hover {
  color: var(--primary-hover);
}
.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1.5rem 0;
  display: block;
}
.page-content ul, .page-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.page-content li {
  margin-bottom: 0.5rem;
}
.page-content blockquote {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  border-left: 3px solid var(--text-dim);
  color: var(--text-sec);
  font-style: italic;
}
.page-content pre {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  line-height: 1.6;
}
.page-content code {
  font-size: 0.88em;
  background: #f5f5f5;
  padding: 0.15em 0.35em;
  border-radius: 4px;
}
.page-content pre code {
  background: none;
  padding: 0;
  border-radius: 0;
}

.recipe-list {
  list-style: none;
  padding: 0;
}
.recipe-list li {
  margin-bottom: 1.25rem;
}
.recipe-list a {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--text-dim);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.15s, text-decoration-color 0.15s;
}
.recipe-list a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}

.error-404 {
  text-align: center;
  padding: 4rem 0;
}
.error-404 h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.error-404 p {
  font-family: "Lora", serif;
  color: var(--text-sec);
}

@media (max-width: 550px) {
  .site {
    padding: 2rem 1.25rem 4rem;
  }
  .directory {
    grid-template-columns: repeat(2, auto);
    gap: 0.4rem 2rem;
  }
  .post-meta {
    flex-direction: column;
    gap: 0.2rem;
  }
  .post-date {
    margin-left: 0;
  }
  .post-meta .post-title {
    font-size: 1.4rem;
  }
  .post-single h1.post-title {
    font-size: 1.6rem;
  }
  .page-content .page-title {
    font-size: 1.6rem;
  }
}

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