#post-single {
  max-width: 900px;
  margin: 0 auto;
  padding: 4.5rem 2rem;
}

#post-single .post-header .kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-primary-shade);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

#post-single .post-header h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--c-ink);
  line-height: 1.1;
  max-width: 22ch;
}

#post-single .post-header .post-thumbnail {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin-top: 2.5rem;
  box-shadow: 14px 0 0 var(--c-secondary);
}

#post-single .post-body {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--c-lightgrey);
  max-width: 68ch;
}

#post-single .post-body p {
  color: var(--c-darkgrey);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

#post-single .post-body p:last-child {
  margin-bottom: 0;
}

#post-single .post-body h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--c-ink);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

#post-single .post-body h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--c-ink);
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

#post-single .post-body a {
  color: var(--c-secondary);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s ease;
}

#post-single .post-body a:hover {
  text-decoration-color: var(--c-primary);
  color: var(--c-primary);
}

#post-single .post-body strong {
  color: var(--c-ink);
  font-weight: 700;
}

#post-single .post-body blockquote {
  border-left: 3px solid var(--c-primary);
  padding-left: 1.5rem;
  margin: 1.75rem 0;
  font-style: italic;
  color: var(--c-darkgrey);
}

#post-single .post-body blockquote p {
  margin-bottom: 0;
}

#post-single .post-body ul,
#post-single .post-body ol {
  padding-left: 1.5rem;
  color: var(--c-darkgrey);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

#post-single .post-body li {
  margin-bottom: 0.35rem;
}

#post-single .post-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  box-shadow: 14px 0 0 var(--c-secondary);
}

#post-single .post-body hr {
  border: none;
  border-top: 1px solid var(--c-lightgrey);
  margin: 2.5rem 0;
}

@media only screen and (max-width: 600px) {
  #post-single {
    padding: 3rem 1.5rem;
  }

  #post-single .post-header h1 {
    max-width: 100%;
  }

  #post-single .post-header .post-thumbnail {
    box-shadow: none;
  }

  #post-single .post-body img {
    box-shadow: none;
  }
}
