.hailingmeng-news-list-main {
  padding-top: 5.625rem;
  background-color: #f9f8f3;
}

.hailingmeng-news-list-header {
  margin-bottom: 1.75rem;
}

.hailingmeng-news-list-title {
  color: #333;
  font-family: var(--title-font-family);
  font-size: var(--font-size-h2);
  font-weight: 400;
  line-height: calc(46 / 36 * 1em);
  text-transform: capitalize;
  margin-bottom: .625rem;
}

.hailingmeng-news-list-desc {
  color: #666;
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: 1.5;
}

.hailingmeng-news-item {
  padding: 1.875rem 0;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hailingmeng-news-item-content {
  display: flex;
  align-items: center;
  gap: 4.25rem;
}

.hailingmeng-news-item-pic {
  flex: 1;
  aspect-ratio: 530 / 380;
  flex-shrink: 0;
}

.hailingmeng-news-item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hailingmeng-news-item-info {
  width: calc(1062 / 1660 * 100%);
}

.hailingmeng-news-item-date {
  color: #999;
  font-size: max(.875rem, 12px);
  font-weight: 400;
  line-height: calc(22 / 14 * 1em);
  margin-bottom: .5rem;
}

.hailingmeng-news-item-title {
  color: #333;
  font-size: var(--font-size-h3);
  font-weight: 400;
  line-height: calc(36 / 26 * 1em);
  text-transform: capitalize;
  margin-bottom: 3.375rem;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hailingmeng-news-item-desc {
  color: #666;
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1.25rem;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hailingmeng-news-item-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #616161;
  line-height: 1;
  font-size: 0;
  border-bottom: 1px solid #616161;
  width: fit-content;
}

.hailingmeng-news-item-btn span {
  font-size: max(.875rem, 12px);
  font-weight: 400;
  line-height: calc(22 / 14 * 1em);
}

.hailingmeng-news-item-btn svg {
  width: max(.8125rem, .625rem);
  aspect-ratio: 13 / 8;
  flex-shrink: 0;
  object-fit: contain;
}

.hailingmeng-news-item:hover {
  background-color: #E4DDCF;
}

.hailingmeng-news-item:hover .hailingmeng-news-item-title {
  color: var(--color-primary);
}

.hailingmeng-news-list-pagination {
  margin-top: 6.25rem;
}

@media screen and (max-width: 1024px) {
  .hailingmeng-news-list-main {
    padding-top: 4rem;
  }

  .hailingmeng-news-list-header {
    margin-bottom: 1.25rem;
  }

  .hailingmeng-news-item-content {
    gap: 2.5rem;
  }

  .hailingmeng-news-item-title {
    margin-bottom: 2rem;
  }

  .hailingmeng-news-item-desc {
    margin-bottom: 1rem;
  }

  .hailingmeng-news-list-pagination {
    margin-top: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .hailingmeng-news-list-main {
    padding-top: 2rem;
  }

  .hailingmeng-news-list-header {
    margin-bottom: 0.75rem;
  }

  .hailingmeng-news-item-content {
    gap: 1.25rem;
  }

  .hailingmeng-news-item-title {
    margin-bottom: 1.25rem;
  }

  .hailingmeng-news-item-desc {
    margin-bottom: 0.75rem;
  }

  .hailingmeng-news-list-pagination {
    margin-top: 2rem;
  }

  .hailingmeng-news-item-info {
    width: 55%;
  }
}

@media screen and (max-width: 576px) {
  .hailingmeng-news-item-content {
    flex-direction: column;
  }

  .hailingmeng-news-item-pic {
    width: 100%;
  }

  .hailingmeng-news-item-info {
    width: 100%;
  }
}




/* ── Pagination ── */
#pagesize ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

#pagesize ul li a {
  width: 40px;
  height: 40px;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;

  color: #666;
  font-size: 18px;
  font-weight: 700;
  line-height: calc(24 / 18 * 1em);
}

#pagesize ul li a:not(.disabled):hover,
#pagesize ul li a:not(.disabled).active {
  background: var(--color-primary);
  color: #fff;
}

#pagesize ul li svg {
  width: 6px;
  aspect-ratio: 6 / 11;
  object-fit: contain;
}

#pagesize ul li span {
  color: #666;
  font-size: 18px;
  font-weight: 700;
  line-height: calc(24 / 18 * 1em);
}

#pagesize ul li:first-child a,
#pagesize ul li:last-child a {
  color: #009A17;
  background: transparent;
}

#pagesize ul li a.disabled {
  color: #E0E0E0;
  cursor: not-allowed;
}

@media screen and (max-width: 768px) {
  #pagesize ul li a {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  #pagesize ul li svg {
    width: 5px;
  }

  #pagesize ul li span {
    font-size: 16px;
  }
}