.title{
  display: flex;
  justify-content: space-between;
  font-size: max(20px, 2rem);
  font-weight: bold;
  margin-bottom: max(16px, 2rem);
  line-height: 1;
}
.title span {
  color: var(--themeColor);
  padding-bottom: max(10px, 1rem);
  border-bottom: 1px solid var(--activeColor);
}
.title img{
  width: max(18px, 1.5rem);
  height: auto;
  object-fit: contain;
}
.noticePanel{
  padding: 3.5rem 15px;
}
.notice-list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3.5rem 4rem;
}
.notice-item{
  width: 45%;
  height: 120px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 1.25rem;
  box-shadow: 0 0 0 1px rgba(9, 9, 11, 0.08), 0 1px 2px -1px rgba(9, 9, 11, 0.08), 0 2px 4px 0px rgba(9, 9, 11, 0.04);
  background-color: #fff;
  border-radius: 1rem;
}
.notice-date{
  font-size: 15px;
  color: #4D4D4D;
  display: flex;
  align-items: center;
}
.notice-date::before{
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f5f5f5;
  box-shadow: inset 1px 1px rgba(0, 0, 0, 0.1), inset 2px 2px rgba(0, 0, 0, 0.05), 1px 1px rgba(0, 0, 0, 0.05);
  margin-right: 8px;
}
.notice-desc{
  font-size: max(16px, 1.25rem);
  line-height: 1.2;
  color: #333333;
  font-weight: bold;
}

.loadMore{
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.loadMore-text{
  margin-right: 8px;
  color: var(--themeColor);
}
.loadMore .spinner{
  width: 20px;
  height: 20px;
  color: var(--activeColor);
}

@media screen and (max-width:768px){
  .notice-list{
    flex-direction: column;
    gap: 28px;
  }
  .notice-item{
    width: 100%;
    padding: 10px;
  }
}