@font-face {
  font-family: "times new roman";
  src: url("../Times\ New\ Roman/times new roman.ttf");
}
.news_wrapper {
  margin-bottom: 2rem;
}
.news_wrapper .head {
  display: flex;
  align-items: center;
  height: 80px;
  border: 1px solid rgb(145, 145, 145);
  justify-content: space-between;
  padding: 0rem 2rem;
  cursor: pointer;
  border-radius: 10px;
  font-family: "times new roman";
}
.news_wrapper .head > h1 {
  font-weight: 600;
  font-size: 30px;
}
.news_wrapper .body_area {
  padding: 2rem 2rem;
  display: none;
  grid-gap: 20px;
  grid-template-columns: 1fr 500px;
}
.news_wrapper.active .body_area {
  display: grid;
}
.news_wrapper .body_area p {
  line-height: 43px;
  font-size: 19px;
  text-align: justify;
}
.news_wrapper .body_area > img {
  width: 500px;
  /* height: 100%; */
  /* float: right; */
}
@media screen and (max-width: 950px) {
  .news_wrapper.active .body_area {
    grid-template-columns: 1fr;
  }
  .news_wrapper .body_area > *:first-child {
    order: 2;
  }
  .news_wrapper .body_area > img {
    order: 1;
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .news_wrapper .head > h1 {
    font-size: 25px;
  }
}
@media screen and (max-width: 560px) {
  .news_wrapper .head > h1 {
    font-size: 20px;
  }
}
@media screen and (max-width: 470px) {
  .news_wrapper .head {
    flex-direction: column;
    justify-content: center;
    height: unset;
    padding: 1rem 0rem;
  }
  .news_wrapper .body_area p {
    line-height: unset;
  }
  .news_wrapper .body_area {
    padding-left: 0px;
    padding-right: 0px;
  }
  .news_wrapper .body_area p {
    font-size: 14px;
    text-align: left;
  }
  .news_wrapper .head > h1 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
