.post-detail {
  padding-bottom: 90px;
}

.post-detail__intro {
  align-items: center;
}

.post-detail__image {
  height: 500px;
}

.post-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.post-detail__title > span {
  display: inline-flex;
  border-radius: 5px;
}

.post-detail__meta {
  margin: 22px 0 0 !important;
  color: #68706b;
  font-size: 14px;
}

.post-detail__title h1 {
  margin-top: 13px;
}

.post-detail__lead {
  color: #4f5752;
  font-size: 18px;
  line-height: 1.65;
}

.post-detail__content {
  width: min(780px, 100%);
  margin: 66px auto 0;
  font-size: 18px;
  line-height: 1.82;
}

.post-detail__content > :first-child {
  margin-top: 0;
}

.post-detail__content h2,
.post-detail__content h3,
.post-detail__content h4 {
  color: var(--green);
  line-height: 1.2;
}

.post-detail__content h2 {
  margin: 52px 0 22px;
  font-size: 31px;
}

.post-detail__content h3 {
  margin: 40px 0 18px;
  font-size: 24px;
}

.post-detail__content p,
.post-detail__content ul,
.post-detail__content ol {
  margin: 0 0 25px;
}

.post-detail__content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-detail__content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.post-detail__content blockquote {
  margin: 40px 0;
  padding: 25px 30px;
  border-left: 3px solid var(--red);
  border-radius: 0 9px 9px 0;
  background: var(--cream);
  color: var(--green);
  font-size: 21px;
  font-weight: 700;
}

.post-detail__footer {
  width: min(780px, 100%);
  margin: 40px auto 0;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.post-detail__footer a {
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .post-detail__image {
    height: 420px;
  }
}

@media (max-width: 620px) {
  .post-detail {
    padding-bottom: 65px;
  }

  .post-detail__image {
    height: 290px;
  }

  .post-detail__content {
    margin-top: 42px;
    font-size: 17px;
    line-height: 1.72;
  }

  .post-detail__content h2 {
    font-size: 27px;
  }
}
