.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.news-list-sub {
  max-width: 1024px;
  margin: 40px 64px 120px;
}

.news-item {
  border-top: 2px solid #222222;
  padding: 32px 0;
  color: #222222;
}

.news-item:last-child {
  border-bottom: 2px solid #222222;
}

.news-item .date {
  font-family: "Jost", serif;
  font-weight: 900;
  margin-right: 24px;
}

.notice-container {
  max-width: 1024px;
  margin: 40px auto 120px;
}

.notice-date {
  font-family: "Jost", serif;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 24px;
}

.notice-title {
  font-size: 24px;
  margin-bottom: 40px;
}

.notice-content p {
  font-size: 16px;
  margin-bottom: 24px;
}

.notice-content img {
  border-radius: 30px;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 24px 0;
}

@media screen and (max-width: 1300px) {
  .notice-container {
    padding: 0 64px;
  }
}
@media screen and (max-width: 850px) {
  .news-list-sub {
    max-width: 1024px;
    margin: 32px 16px 64px;
  }
  .notice-container {
    padding: 0 16px;
    margin: 32px 0px 64px;
  }
  .notice-date {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .notice-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .notice-content p {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .notice-content img {
    border-radius: 20px;
    margin: 16px 0;
  }
}
@media screen and (max-width: 500px) {
  .news-list-sub {
    font-size: 14px;
  }
  .news-item {
    padding: 24px 0;
  }
  .news-item .date {
    margin-right: 16px;
  }
}/*# sourceMappingURL=news.css.map */