.content {
  max-width: 800px;
}

.button {
  margin-bottom: 32px;
}

h1 {
  text-align: left;
}

.post-hero {
  width: 100%;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 12px;
}
.post-hero .post-hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
}
.post-hero .post-hero-image[src*="cross.svg"] {
  object-fit: contain;
  background-color: var(--beige);
  width: 100%;
  height: 200px;
  padding: 50px 0;
}

.post-navigation {
  margin-bottom: 2rem;
}
.post-navigation a {
  color: var(--link);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--duration-normal) var(--ease-smooth);
}
.post-navigation a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

.post-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-light);
}
.post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.post-header .post-meta {
  font-style: italic;
  font-size: 0.9rem;
}

.post-content {
  line-height: 1.8;
}
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: left;
}
.post-content h1 {
  font-size: 2rem;
}
.post-content h2 {
  font-size: 1.75rem;
}
.post-content h3 {
  font-size: 1.5rem;
}
.post-content p {
  margin-bottom: 1rem;
  text-align: left;
}
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
  display: block;
}
.post-content a {
  color: var(--link);
  text-decoration: none;
}
.post-content a:hover {
  text-decoration: underline;
}
.post-content ul,
.post-content ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.post-content li {
  margin-bottom: 0.5rem;
}
.post-content code {
  background-color: var(--bg-light);
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
}
.post-content pre {
  background-color: var(--bg-light);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 1rem;
}
.post-content pre code {
  background-color: transparent;
  padding: 0;
}
.post-content blockquote {
  border-left: 4px solid var(--link);
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
}

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