.blog_index {
  max-width:900px;
  position: relative;
  margin:auto;
}

.blog_index .content {
  padding: 32px;
}

.blog_subheading {
  font-family: "Matter SemiMono", monospace;
  color: var(--hard-grey);
  margin-top: 8px;
}

.blog_filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.blog_filters a {
  font-family: "Matter SemiMono", monospace;
  font-size: 14px;
  color: var(--hard-grey);
  text-decoration: none;
  border: 1px solid var(--gridline);
  border-radius: 25px;
  padding: 8px 16px;
}

.blog_filters a.active {
  color: var(--paper);
  background-color: var(--soft-black);
  border-color: var(--soft-black);
}

.blog_cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog_card {
  display: block;
  border: 1px solid var(--gridline);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: var(--soft-black);
  transition: box-shadow 500ms ease, transform 500ms ease;
}

.blog_card:hover {
  box-shadow: var(--box-shadow-combined);
  color:var(--soft-black);
  transform:scale(1.01);
  transition: transform 150ms ease, box-shadow 150ms;
}

.blog_card_meta {
  font-family: "Matter SemiMono", monospace;
  font-size: 13px;
  color: var(--soft-grey);
  margin-bottom: 6px;
}

.blog_card_title {
  font-size: 20px;
  margin-bottom: 6px;
}

.blog_card_excerpt {
  color: var(--hard-grey);
  margin-bottom: 0;
}

.blog_empty {
  text-align: center;
  color: var(--hard-grey);
  padding: 60px 20px;
}

.blog_post_meta {
  font-family: "Matter SemiMono", monospace;
  font-size: 13px;
  color: var(--soft-grey);
  margin-bottom: 8px;
}

.blog_draft_banner {
  background-color: var(--taupe);
  border-bottom: 1px solid var(--taupe-border);
  color: var(--alert-red);
  font-family: "Matter SemiMono", monospace;
  font-size: 14px;
  text-align: center;
  padding: 12px;
}

.blog_body {
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 17px;
}

.blog_body h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 12px;
}

.blog_body h3 {
  font-size: 21px;
  margin-top: 32px;
  margin-bottom: 10px;
}

.blog_body p {
  margin-bottom: 20px;
}

.blog_body ul {
  margin-bottom: 20px;
  padding-left: 24px;
}

.blog_body blockquote {
  border-left: 3px solid var(--gridline);
  color: var(--hard-grey);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
}

.blog_body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}

.blog_publication_state {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.blog_field_hint {
  font-family: "Matter SemiMono", monospace;
  font-size: 13px;
  color: var(--soft-grey);
  margin-top: 4px;
}

.post_rich_text {
  min-height: 400px;
  margin-bottom:40px;
}

@media (max-width: 600px) {
  .blog_index .content {
    padding: 20px;
  }

  .blog_body {
    font-size: 16px;
  }
}


.post_hero {
  background-color:#2e2d2d;
  padding:70px 12px;
  color:var(--paper);
  margin-bottom:30px;
}

.post_hero h1 {
  max-width:800px;
  position: relative;
  margin:auto;
  font-size:34px;
}

@media (min-width:900px) {
  .post_hero {
    padding:118px 32px;
  }
  .post_hero h1 {
    font-size:50px;
  }
}

.post_meta {
  margin-bottom:40px;
  font-size:14px;
  font-family: "Matter SemiMono", monospace;
  color:var(--hard-grey);
}

.post_body {
  padding:8px;
  font-family: "Ivar", system-ui, -apple-system, serif;
  font-size:20px;
  max-width:800px;
  position: relative;
  margin:auto;
}

@media (min-width:900px) {
  .post_body {
    padding:32px;
    font-size:21px;
  }
}

.post_body p, .post_body h2 {
  max-width:800px;
  position: relative;
  margin:auto;
}

.post_body h2 {
  margin-bottom:12px;
}

.post_breadcrumbs {
  max-width:800px;
  position: relative;
  margin:auto;
  padding-left:0;
  font-family: "Matter SemiMono", monospace;
  font-size:14px;
  color: #ac5e5f;
  padding:16px 0;
}

.post_breadcrumbs a {
  color: #ac5e5f;
  text-decoration: none;
  transition: color 0.5s;
}

.post_breadcrumbs a:hover {
  text-decoration:none;
  color:var(--magic);
  transition: color 0.15s;
}

.post_breadcrumbs_separator {
  margin:0 8px;
}

.post_body ul li {
  list-style-type:disc;
}

.post_body .promo_banner .body {
  font-size:16px;
}