.post {
  padding: 0 1.35rem 10rem;
  background-color: #2b2b2b;
}

.post * {
  color: #fff;
}

.breadcrumb__list::before {
  filter: invert(1);
}

.breadcrumb__item:not(:first-child)::before {
  filter: invert(1);
}

.post__wrapper {
  margin-top: 4rem;
}

.post__date {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  line-height: 1.5;
}

.post__title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.33;
}

.post__text {
  font-size: 1.8rem;
  line-height: 1.78;
  margin: 2rem 0;
}

.post__images {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.post__image {
  width: 100%;
  height: auto;
  max-height: fit-content;
  max-width: 348px;
  object-fit: cover;
}

.post__nav {
  margin: 2rem auto;
  width: 100%;
  max-width: 418px;
  display: flex;
  justify-content: center;
}

.post__nav-button {
  width: 50%;
  height: 40px;
  line-height: 40px;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 1px solid #fff;
}

.post__nav-button + .post__nav-button {
  border-left: none;
}

.post__link {
  width: 166px;
  height: 40px;
  color: #212121;
  background-color: #ffffff;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  line-height: 40px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .post {
    padding: 0 2rem 14rem;
    background-color: #fff;
  }

  .post * {
    color: #000;
  }

  .breadcrumb__list::before {
    filter: none;
  }

  .breadcrumb__item:not(:first-child)::before {
    filter: none;
  }

  .post__wrapper {
    max-width: 830px;
    margin: 5.2rem auto 0;
  }

  .post__text {
    margin: 2rem 0 6rem;
  }
  .post__images {
    justify-content: left;
  }

  .post__nav {
    margin: 6rem auto 4rem;
  }

  .post__nav-button {
    border: 1px solid #000;
  }

  .post__link {
    color: #fff;
    background-color: #000;
  }

  .post__image:first-child {
    max-width: 320px;
  }

  .post__image:last-child {
    max-width: 382px;
  }
}
