#CalendarNews {
  max-width: 1440px;
  padding: 30px;
  margin-bottom: 15px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
}
.back-to-some {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  cursor: pointer;
}
.back-to-some .back-btn {
  transform: rotate(180deg);
  height: 15px;
}
.news-wrap .items {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(230, 230, 230, 1);
}
.news-wrap .items .title {
  font-size: 18px;
  font-weight: 500;
  min-height: unset;
}
.news-wrap .items .summary {
  color: #666767;
  font-size: 14px;
  margin: 10px 0;
}
.news-wrap .items .time {
  color: #979797;
  font-size: 14px;
}
.add-more-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  background: transparent;
}
.add-more {
  min-width: 160px;
  padding: 14px 36px;
  border-radius: 32px;
  background: linear-gradient(90deg, #0572c3 0%, #3bade9 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition:
    background 0.22s,
    box-shadow 0.18s,
    transform 0.13s;
  box-shadow: 0 2px 8px rgba(59, 173, 233, 0.10);
  outline: none;
  border: none;
  position: relative;
  overflow: hidden;
}
.add-more:hover, .add-more:focus {
  background: linear-gradient(90deg, #3bade9 0%, #0572c3 100%);
  box-shadow: 0 6px 20px rgba(59, 173, 233, 0.16);
  transform: translateY(-2px) scale(1.04);
}
.add-more:active {
  background: linear-gradient(90deg, #0572c3 0%, #3bade9 100%);
  box-shadow: 0 2px 6px rgba(59, 173, 233, 0.08);
  transform: scale(0.97);
}

@media(max-width: 1200px) {
  #CalendarNews {
    max-width: 930px;
  }
}
@media(max-width: 992) {
  #CalendarNews {
    max-width: 780px;
  }
}
