.notice-container {
  width: 100%;
}
.notice-center {
  width: var(--max-width);
  margin: 0 auto;
  padding: 2rem var(--root-padding-x);
}
.notice-list .time {
  width: 5rem;
  height: 5rem;
  background-color: #f1f1f1;
  flex-shrink: 0;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: auto;
}
.notice-list .time .day {
  font-size: 1.8rem;
  font-weight: 700;
  color: #888;
}
.notice-list .time .date {
  font-size: 0.8rem;
  font-weight: 400;
  color: #999;
  margin-top: 0.75rem;
}
.notice-list .desc {
  width: calc(100% - 6.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.3rem 0;
}
.notice-list .desc > h5 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #222;
}
@media (min-width: 1024px) {
  .notice-list .desc > h5 {
    font-size: 1.1rem;
  }
}
.notice-list .desc > p {
  font-size: 1rem;
  font-weight: 400;
  color: #777;
  line-height: 1.3rem;
}
@media (min-width: 1024px) {
  .notice-list .desc > p {
    font-size: 0.75rem;
  }
}
.notice-list .notice-a {
  display: flex;
  width: 100%;
}
.notice-list .notice-a:hover .time {
  background-color: #2a76bf;
}
.notice-list .notice-a:hover .time .day,
.notice-list .notice-a:hover .time .date {
  color: #fff;
}
.notice-list .notice-a:hover .desc h5 {
  color: #2a76bf;
}
.notice-list .notice-item {
  padding: 2rem 0;
  border-bottom: 1px solid #eeeeee;
}
