.news-section-container {
  background-color: #f7f7f7;
  padding: 80px 0;
}

.news-section-container .text-wrapper {
  width: 1260px;
  max-width: 100%;

  padding: 0 80px;
  margin: 0 auto;
  display: flex;
  /* gap: 20px; */
}
.news-section-container .title-wrapper {
  width: 28%;
}
.news-section-container .notice-wrapper {
  flex: 1;
}
.news-section-container .notice-wrapper .notice {
  display: flex;
  align-items: center;
  padding: 10px;
}

.news-section-container .title {
  font-family: "Libre Baskerville", serif;
  font-size: 36px;
  letter-spacing: 0.3em;
  line-height: 1.8em;
}
.news-section-container .sub-title {
  letter-spacing: 0.3em;
  line-height: 1.8em;
}
.news-section-container .notice-wrapper .date {
  letter-spacing: 0.05em;
  line-height: 1.8em;
  width: 140px;
  font-family: "Libre Baskerville", serif;
}
.news-section-container .notice-wrapper .notice-title {
  letter-spacing: 0.15em;
}

.news-section-container .view-all-btn {
  margin-right: 80px;
  display: flex;
  justify-content: end;
  text-decoration: underline;
  margin: 20px 80px 0 0;
}

@media screen and (max-width: 960px) {
  .news-section-container {
    padding: 60px 0;
  }
  .news-section-container .text-wrapper {
    max-width: 100%;
    flex-direction: column;
  }
  .news-section-container .title-wrapper {
    width: 100%;
    text-align: center;
    margin: 0 auto 40px;
  }
  .news-section-container .title {
    font-size: 26px;
  }
  .news-section-container .notice-wrapper .date {
    font-size: 12px;
  }
  .news-section-container .notice-wrapper .notice-title {
    font-size: 14px;
  }
  .news-section-container .sub-title {
    font-size: 14px;
  }
  .news-section-container .view-all-btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 540px) {
  .news-section-container .text-wrapper {
    padding: 0 20px;
    max-width: 100%;
    flex-direction: column;
  }
  .news-section-container .title-wrapper {
    text-align: center;
    margin: 0 auto 40px;
  }
  .news-section-container .title {
    font-size: 24px;
  }
  .news-section-container .notice-wrapper .notice {
    flex-direction: column;
    align-items: start;
  }
  .news-section-container .notice-wrapper .date {
    font-size: 12px;
  }
  .news-section-container .notice-wrapper .notice-title {
    font-size: 14px;
  }
  .news-section-container .sub-title {
    font-size: 14px;
  }
  .news-section-container .view-all-btn {
    margin: 20px 20px 0;
    font-size: 14px;
  }
}
