.news-section-container {
  padding: 0px 0;
  margin-bottom: 120px;
}

.news-section-container .text-wrapper {
  /* width: 1260px; */

  max-width: 100%;

  padding: 0 0 0 100px;
  margin: 0 auto;
  display: flex;
  /* gap: 20px; */
}

.news-section-container .title-wrapper {
  margin-right: 120px;
}

.news-section-container .notice-wrapper {
  flex: 1;
  margin-bottom: 60px;
  border-top: 1px solid var(--secondary);
}

.news-section-container .notice-wrapper .notice {
  display: flex;
  align-items: center;
  padding: 10px;
}

.news-section-container .title {
  font-size: 24px;
  letter-spacing: 0.05em;
}

.news-section-container .sub-title {
  letter-spacing: 0.3em;
  line-height: 1.8em;
}

.news-section-container .notice-wrapper .date {
  letter-spacing: 0.05em;
  width: 160px;
}

.news-section-container .notice-wrapper .category {
  letter-spacing: 0.05em;
  width: auto;
  min-width: 160px;
  padding-right: 40px;
  color: var(--secondary);
}

.news-section-container .notice-wrapper .notice-title {
  letter-spacing: 0.15em;
}

.news-section-container .view-all-btn {
  width: 200px;
  height: 50px;
  background: var(--primary);
  color: white;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.news-section-container .news-item {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
  border-bottom: 1px solid var(--secondary);
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .news-section-container {
    padding: 0 4vw;
    margin-top: 22vw;
    margin-bottom: 25vw;
  }

  .news-section-container .text-wrapper {
    max-width: 100%;
    flex-direction: column;
    padding: 0;
  }

  .news-section-container .title {
    font-size: 5vw;
    line-height: 1;
  }

  .news-section-container .title-wrapper {
    text-align: center;
    margin: auto;
    margin-bottom: 13vw;
  }

  .news-section-container .notice-wrapper .date {
    width: auto;
  }

  .news-section-container .notice-wrapper .category {
    width: auto;
    padding-left: 1em;
  }

  .news-section-container .notice-wrapper .news-title {
    margin-top: 1vw;
    width: 100%;
    flex: none;
  }

  .news-section-container .notice-wrapper {
    margin: 0 4vw 10vw;
  }

  .news-section-container .news-item {
    font-size: 3.5vw;
    padding: 3vw 0;
  }
}

@media screen and (max-width: 960px) {
  .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 .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;
  } */
}