.list-page-banner {
  height: 100vh;
  min-height: 100vh;
  padding-top: var(--header-height);
  background:
    linear-gradient(180deg, rgba(7, 18, 35, 0.2) 0%, rgba(7, 18, 35, 0.6) 100%),
    url("../../images/home/hero-2.jpg") center 35%/cover no-repeat;
}

.list-page-banner__eyebrow {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-list-template .section-block {
  padding-top: 3rem;
}

.list-page-shell {
  display: grid;
  grid-template-columns: 18rem minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.list-page-shell > * {
  min-width: 0;
}

.list-page-main {
  padding: 1.75rem;
}

.list-page-main__head {
  margin-bottom: 1.5rem;
}

.list-page-main__summary {
  display: grid;
  gap: 0.25rem;
  min-width: 11rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(var(--theme-primary-rgb), 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 1px solid rgba(var(--theme-primary-rgb), 0.14);
  text-align: right;
}

.list-page-main__summary-label {
  color: var(--theme-muted);
  font-size: 0.85rem;
}

.list-page-main__summary strong {
  color: var(--theme-heading);
  font-size: 1.4rem;
  line-height: 1.1;
}

.list-page-main__summary span:last-child {
  color: var(--theme-muted);
  font-size: 0.9rem;
}

.list-feed {
  margin-top: 0.35rem;
}

.list-feed__item {
  display: grid;
  grid-template-columns: 15rem minmax(0, 1fr) 5.25rem;
  gap: 1.25rem;
  align-items: center;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--theme-border-light);
}

.list-feed__item:first-child {
  padding-top: 0.15rem;
}

.list-feed__item:last-child {
  border-bottom: none;
  padding-bottom: 0.2rem;
}

.list-feed__thumb {
  display: block;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 14px 30px rgba(12, 34, 58, 0.12);
}

.list-feed__thumb img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.list-feed__item:hover .list-feed__thumb img {
  transform: scale(1.04);
}

.list-feed__body {
  min-width: 0;
}

.list-feed__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin-bottom: 0.8rem;
  color: #7f90a0;
  font-size: 0.92rem;
}

.list-feed__meta i {
  margin-right: 0.22rem;
}

.list-feed__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(var(--theme-primary-rgb), 0.1);
  color: var(--theme-primary);
  font-weight: 700;
}

.list-feed__title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.5;
}

.list-feed__title a {
  color: var(--theme-heading);
  text-decoration: none;
}

.list-feed__title a:hover {
  color: var(--theme-primary);
}

.list-feed__summary {
  margin: 0.9rem 0 0;
  color: var(--theme-muted);
  line-height: 1.85;
}

.list-feed__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  color: #8494a4;
  font-size: 0.92rem;
}

.list-feed__footer a {
  color: var(--theme-primary);
  font-weight: 700;
  text-decoration: none;
}

.list-feed__footer a:hover {
  color: var(--theme-primary-dark);
}

.list-feed__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 5.25rem;
  padding: 0.8rem 0.55rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(var(--theme-primary-rgb), 0.08) 0%, rgba(var(--theme-primary-rgb), 0.02) 100%);
  color: var(--theme-primary);
  text-align: center;
}

.list-feed__date strong {
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1;
}

.list-feed__date span {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.list-feed__footer-date {
  display: none;
}

.list-page-pager {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.list-page-pager .pagination {
  flex-wrap: wrap;
  gap: 0.45rem;
}

.list-page-pager .page-link {
  min-width: 2.8rem;
  min-height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  border: 1px solid var(--theme-border-light);
  color: var(--theme-text);
  font-weight: 700;
  box-shadow: none;
}

.list-page-pager .page-link:hover {
  color: var(--theme-primary);
  border-color: rgba(var(--theme-primary-rgb), 0.35);
  background: rgba(var(--theme-primary-rgb), 0.06);
}

.list-page-pager .page-item.active .page-link {
  background: var(--theme-primary);
  border-color: var(--theme-primary);
  color: #fff;
}

.list-page-pager .page-item.disabled .page-link {
  color: #9eacb9;
  background: #fff;
}

.list-page-empty {
  padding: 3rem 1rem;
  color: var(--theme-muted);
  text-align: center;
}

.list-page-aside {
  display: grid;
  gap: 1.25rem;
}

.list-page-aside .page-sidenav {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.list-page-guide {
  padding: 1.25rem;
}

.list-page-guide__title {
  margin: 0 0 0.9rem;
  color: var(--theme-heading);
  font-size: 1.1rem;
  font-weight: 800;
}

.list-page-guide__list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--theme-muted);
  line-height: 1.8;
}

.list-page-guide__list li + li {
  margin-top: 0.45rem;
}
/* 第二套：查看详情永久居右 */
.list-feed__footer {
  justify-content: flex-start;
}
.list-feed__source {
  margin-right: auto;
}
@media (max-width: 1199.98px) {
  .list-page-shell {
    grid-template-columns: 15rem minmax(0, 1fr);
  }

  .list-page-aside .page-sidenav {
    position: static;
  }
}

@media (max-width: 991.98px) {
  .list-page-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .list-page-main {
    order: 1;
  }

  .list-page-aside {
    order: 0;
    justify-items: center;
    margin-bottom: 0.35rem;
  }

  .list-page-aside .page-sidenav {
    width: min(20rem, 100%);
  }

  .list-feed__item {
    grid-template-columns: 12rem minmax(0, 1fr);
  }

  .list-feed__date {
    grid-column: 2 / 3;
    justify-self: start;
    flex-direction: row;
    gap: 0.5rem;
    min-height: auto;
    padding: 0.55rem 0.85rem;
  }

  .list-feed__date span {
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  .list-page-main {
    padding: 1.2rem;
  }

  .list-page-main__summary {
    width: 100%;
    text-align: left;
  }

  .list-feed__item {
    grid-template-columns: 7.5rem minmax(0, 1fr);
    gap: 0.85rem;
    align-items: start;
  }

  .list-feed__thumb {
    align-self: start;
  }

  .list-feed__thumb img {
    aspect-ratio: 4 / 3;
  }

  .list-feed__meta {
    gap: 0.45rem 0.65rem;
    margin-bottom: 0.55rem;
    font-size: 0.85rem;
  }

  .list-feed__title {
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .list-feed__summary {
    margin-top: 0.6rem;
    font-size: 0.92rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .list-feed__footer {
    justify-content: flex-start;
    gap: 0.55rem 0.85rem;
    margin-top: 0.75rem;
    font-size: 0.85rem;
  }

  .list-feed__source {
    flex-basis: 100%;
  }

  .list-feed__date {
    display: none;
  }

  .list-feed__footer-date {
    display: block;
    color: #7f90a0;
    font-size: 0.82rem;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .list-page-pager .page-link {
    min-width: 2.45rem;
    min-height: 2.45rem;
  }
}
