.post {
  padding: 40px 27.5px 80px;
  line-height: 1.5;
}

.post__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 2px;
  text-align: center;
}

.post__title:not(:first-child) {
  margin: 80px auto 40px;
}

.post__image {
  display: block;
  width: 100%;
  aspect-ratio: 320 / 213;
  background-color: #d9d9d9;
  border-radius: 16px;
  margin: 16px auto;
  max-width: 450px;
}

.post__subtitle {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.post__text {
  font-size: 16px;
  line-height: 2;
}

.post__images {
  margin: 40px auto 16px;
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.post__images .post__image {
  margin: 0;
  max-width: 320px;
}

@media (min-width: 600px) {
  .post__images {
    flex-wrap: unset;
  }
}

.post__nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 32px auto 0;
  position: relative;
  max-width: 1032px;
}

.post__nav-button {
  position: relative;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 112px;
  height: 29px;
  border: 1px solid #000;
  border-radius: 4px;
  margin: 0;
  background-color: #fff;
  padding: 3px 7px;
  font-size: 14px;
}

.post__nav-button span {
  position: relative;
  color: #000;
}

.post__nav-button--next {
  margin-left: auto;
}

.post__nav-button--prev:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../images/common/heroicons-outline_arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.post__nav-button--next:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../images/common/heroicons-outline_arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.post__nav-button--next::after {
  transform: scaleX(-1);
}

.post__nav-button--back {
  position: absolute;
  top: 75px;
  width: 100%;
}

.post__content a {
  text-decoration: underline;
  color: #26b2a1;
}

@media (min-width: 768px) {
  .post {
    padding: 120px 27.5px;
    max-width: 852px;
    margin: 0 auto;
    box-sizing: content-box;
  }

  .post__title {
    font-size: 28px;
    line-height: 40px;
  }

  .post__wrapper {
    margin: 64px auto 0;
  }

  .post__content {
    padding: 0 46px 0 42px;
  }

  .post__image {
    aspect-ratio: 852 / 568;
    width: min(852px, 62.4vw);
    max-width: 852px;
    margin: 64px auto;
    display: block;
  }

  .post__subtitle {
    font-size: 24px;
    line-height: 36px;
    text-align: left;
    margin-bottom: 24px;
  }

  .post__title:not(:first-child) {
    margin: 120px auto 64px;
  }

  .post__info {
    width: 100%;
    max-width: 856px;
    margin: 0 auto;
  }

  .post__info-label {
    min-width: 151px;
    padding: 30px 24px 30px 0;
  }

  .post__info-value {
    padding: 30px 0;
    line-height: 2;
  }

  .post__text {
    margin: 0 auto;
  }

  .post__nav {
    margin-top: 64px;
  }

  .post__images {
    margin: 64px auto;
    gap: 24px;
  }

  .post__images .post__image {
    max-width: 412px;
    width: calc(50% - 12px);
  }

  .post__nav {
    width: calc(100% + 180px);
    position: relative;
    left: -90px;
  }

  @media (max-width: 1146px) {
    .post__nav {
      width: 100%;
      left: 0;
    }
  }
}