.list-news {
  list-style: none;
  padding: 44px 0;
  border-bottom: 1px dashed #e2e7ef;
  margin: 0;
}


.list-news li {
  min-height: 62px;
  display: grid;
  grid-template-columns: 103px minmax(0, 1fr);
  gap: 23px;
  align-items: center;
}

.list-news time {
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 37px;
  height: 37px;
  background: #C8C8C8;
  transition: all 0.25s ease;

}

.list-news a {
  font-size: 20px;
  color: #080808;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.25s ease;
}

.list-news li:hover a {
  color: #3573DC;
  text-decoration: underline;
}

.list-news li:hover time {
  background: #3573DC;
}

.pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.pagination a {
  min-width: 28px;
  height: 28px;
  border: 1px solid #dce3ef;
  color: #2f80dd;

  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  background: #ffffff;
}

.pagination a.is-active {
  color: #ffffff;
  background: #2f80dd;
  border-color: #2f80dd;
}

body[data-page="notice"] .content-card {
  /* min-height: 730px; */
}

body[data-page="notice"] .notice-content-header {
  position: static;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid #edf1f6;
  text-shadow: none;
}

body[data-page="notice"] .notice-page-title {
  display: flex;
  align-items: center;
  gap: 14px;
  flex:1;
  width: 100%;
}

body[data-page="notice"] .notice-page-title img {
  width: 36px;
  height: 38px;
  object-fit: contain;
  flex: 0 0 42px;
}
.list-news{
padding:10px 0;
}
body[data-page="notice"] .notice-page-title h1 {
  margin: 0;
  color: #080808;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

body[data-page="notice"] .notice-location {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0 8px;
  color: #777;
  font-size: 14px;
  line-height: 1.8;
}

body[data-page="notice"] .notice-location-current {
  color: #080808
}



body[data-page="notice"] .notice-location a:hover {
  color: #3573DC;
}



@media (max-width: 1200px) {
  body[data-page="notice"] .notice-content-header {
    min-height: auto;
    padding: 0 0 18px;
    margin-bottom: 8px;
  }

  body[data-page="notice"] .notice-page-title h1 {
    font-size: 22px;
  }

  body[data-page="notice"] .notice-location {
    justify-content: flex-start;
  }

  .list-news time {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  body[data-page="notice"] .notice-content-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  body[data-page="notice"] .notice-page-title {
    gap: 10px;
        align-items: end;
  }

  body[data-page="notice"] .notice-page-title img {
    width: 26px;
    height: 26px;
    flex-basis: 36px;
  }

  body[data-page="notice"] .notice-page-title h1 {
    font-size: 17px;
  }

  body[data-page="notice"] .notice-location {
    font-size: 13px;
    gap: 0 6px;
  }

  .list-news li {
    grid-template-columns: 76px 1fr;
  }

  .list-news a {
    font-size: 13px;
  }
}