.news-details {
  padding: 140px 27px 80px;
}

.news__category {
  width: 100%;
  margin: 0 auto;

  display: flex;
  justify-content: right;
}

.news__category-item {
  display: block;
  width: fit-content;
  height: 25px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 25px;
  border-radius: 2px;
  border: 1px solid #707070;
  box-sizing: content-box;
  padding: 0 8px;
  white-space: nowrap;
  color: #707070;
  background-color: #fff;
}

.news__title {
  margin-top: 24px;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
}

.news__main-image {
  display: block;
  margin: 32px auto 0;
  width: 100%;
  aspect-ratio: 320/180;
}

.news__main-image img {
  width: 100%;
  height: 100%;
  background-color: #707070;
}

.news__title-h3 {
  margin-top: 24px;
}

.news__title-h3 {
  position: relative;
  font-size: 20px;
  line-height: 24px;
  height: fit-content;
  margin-top: 24px;
  padding-left: 17px;
}

.news__title-h3::before {
  position: absolute;
  content: "";
  display: block;
  width: 8px;
  height: 100%;
  background-color: #3f926b;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.news__title-h4 {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 32px;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  background-color: #3f926b;
  border-radius: 0 8px 0 0;
}

.news__action_buttons {
  display: flex;
  gap: 20px;
  margin: 20px auto 0 auto;
  max-width: 303px;
}

.action-button {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.action-button img {
  width: 14px;
  margin-right: 4px;
}

.like-counter {
  font-size: 14px;
  color: #888;
}

.news__buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  gap: 32px;
  margin-top: 32px;
}

.news__buttons a {
  position: relative;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  width: 144px;
  height: 40px;
  border: 1px solid #707070;
  border-radius: 2px;
  margin: 0;
  background-color: #fff;
}

.news__buttons a span {
  position: relative;
  color: #707070;
}

.news__buttons a:first-of-type span {
  left: 8px;
}

.news__buttons a:last-of-type span {
  right: 8px;
}

.news__buttons a img {
  position: absolute;
  width: 8px;
  height: 14px;
}

.news__buttons a:first-of-type img {
  left: 10px;
}

.news__buttons a:last-of-type img {
  right: 10px;
}

@media (max-width: 340px) {
  .news__buttons a:first-of-type img {
    left: 5px;
  }

  .news__buttons a:last-of-type img {
    right: 5px;
  }
}

.news__text {
  margin-top: 16px;
  line-height: 24px;
  color: #3b4043;
}

.news__text--24 {
  margin-top: 24px;
}

.news__image-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  margin: 16px auto 0 auto;
  justify-content: center;
}

.news__image-container img {
  max-width: 456px;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 320 / 180;
  background-color: #707070;
}

.news__action_buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 44px auto 0 auto;
}

.action-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 26px;
}

.action-button span {
  font-size: 12px;
  letter-spacing: -1px;
}

.action-button span,
.like-counter {
  margin-top: 2px;
}

.like-counter {
  position: relative;
  left: 5px;
}

.action-button:first-child {
  width: 25.6vw;
  max-width: 96px;
}

.action-button:nth-child(2) {
  width: 18.7vw;
  max-width: 70px;
}

.action-button:nth-child(3) {
  width: 25.6vw;
  max-width: 96px;
}

.type_category,
.location_category {
  display: flex;
  border: 1px solid #707070;
  border-radius: 2px;
  height: 24px;
  font-size: 12px;
  align-items: center;
  color: #707070;
}

.type_category,
.location_category {
  width: 112px;
  padding-left: 5px;
}

.news_detail .title__text {
  font-size: 24px;
}

.news_detail .title__text {
  line-height: 1.4;
}

@media (max-width: 345px) {
  .news__buttons a span {
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  .action-button span {
    font-size: 10px;
  }
}

@media (min-width: 768px) {
  .news {
    padding: 180px 27px;
  }

  .news__container {
    max-width: 936px;
    margin: 0 auto;
  }

  .news__category {
    width: 100%;
    max-width: 936px;
  }

  .section__title {
    margin-top: 60px;
    font-size: 36px;
    line-height: 48px;
  }

  .news__main-image {
    margin: 62px auto 0;
    aspect-ratio: 936 / 527;
  }

  .news__title-h3 {
    font-size: 30px;
    line-height: 42px;
    margin-top: 60px;
    padding-left: 24px;
  }

  .news__title-h3::before {
    min-height: 44px;
  }

  .news__text {
    font-size: 16px;
    line-height: 32px;
    max-width: 924px;
    margin: 32px auto 0;
  }

  .news__title-h4 {
    margin-top: 60px;
    font-size: 24px;
    line-height: 36px;
    padding-left: 16px;
    border-radius: 0 16px 0 0;
  }

  .news__text--24 {
    margin-top: 40px;
  }

  .news__buttons {
    margin-top: 64px;
  }

  .news__image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    margin: 64px auto 0 auto;
    justify-content: center;
  }
}
