.abec-list-page .abec-article-site {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 48%, #eef5ff 100%);
}

.list-hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 22, 47, .98) 0%, rgba(8, 38, 75, .94) 54%, rgba(39, 67, 95, .96) 100%);
}

.list-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(65, 223, 173, .7), transparent);
}

.list-hero-inner {
  position: relative;
  z-index: 1;
  width: calc(100% - 40px);
  max-width: 1320px;
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.list-title {
  flex: 0 0 auto;
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.list-desc {
  flex: 1 1 auto;
  min-width: 220px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-hero-actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin: 0 0 0 auto;
}

.list-hero-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-weight: 900;
}

.list-hero-actions a:first-child {
  border-color: var(--green);
  color: #06162f;
  background: var(--green);
}

.list-hero-actions a:hover {
  transform: translateY(-1px);
}

.list-hero .article-breadcrumb {
  flex: 0 0 auto;
  margin: 0;
  font-size: 13px;
  white-space: nowrap;
}

.list-hero .article-kicker {
  flex: 0 0 auto;
  margin: 0;
  padding: 5px 10px;
  font-size: 12px;
  white-space: nowrap;
}

.list-main-wrap {
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 0 64px;
}

.list-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

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

.list-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.list-section-head span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.list-section-head h2 {
  margin: 4px 0 0;
  color: #0f2f58;
  font-size: 24px;
  line-height: 1.25;
}

.list-section-head > a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #d7e5f4;
  border-radius: 4px;
  color: #0f2f58;
  background: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.list-section-head > a:hover {
  border-color: var(--green);
  background: #effff9;
}

.list-articles {
  display: grid;
  gap: 16px;
}

.list-article {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  border: 1px solid rgba(231, 237, 247, .96);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 14px 34px rgba(18, 46, 88, .08);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.list-article:hover {
  border-color: rgba(65, 223, 173, .55);
  box-shadow: 0 18px 42px rgba(18, 46, 88, .13);
  transform: translateY(-2px);
}

.list-article-thumb {
  position: relative;
  min-height: 156px;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(31, 111, 255, .12), rgba(65, 223, 173, .14)),
    #eef6ff;
}

.list-article-thumb::before {
  content: "ABEC";
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 0;
  color: rgba(15, 47, 88, .16);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.list-article-thumb img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 156px;
  display: block;
  object-fit: cover;
  transition: transform .22s ease;
}

.list-article:hover .list-article-thumb img {
  transform: scale(1.035);
}

.list-article-thumb.is-empty img {
  display: none;
}

.list-article-thumb span {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  max-width: calc(100% - 24px);
  padding: 5px 10px;
  border-radius: 4px;
  color: #06162f;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.list-article-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.list-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 13px;
}

.list-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.list-article-meta i {
  color: var(--green);
}

.list-article h3 {
  margin: 11px 0 10px;
  color: #102033;
  font-size: 22px;
  line-height: 1.42;
  font-weight: 900;
}

.list-article h3 a:hover {
  color: var(--blue);
}

.list-article-desc {
  margin: 0;
  color: #52657d;
  font-size: 15px;
  line-height: 1.85;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.list-article-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
}

.list-source {
  color: var(--muted);
  font-size: 13px;
}

.list-read-more {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 4px;
  color: #06162f;
  background: #effff9;
  font-weight: 900;
}

.list-read-more::after {
  content: ">";
  margin-left: 8px;
  color: var(--green);
}

.list-read-more:hover {
  color: #06162f;
  background: var(--green);
}

.list-pagination {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(231, 237, 247, .96);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 14px 34px rgba(18, 46, 88, .08);
}

.list-pagination ul,
.list-pagination ol,
.list-pagination .dreamer-ul,
.list-pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.list-pagination li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.list-pagination a,
.list-pagination span {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid #d7e5f4;
  border-radius: 4px;
  color: #0f2f58;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.list-pagination a:hover,
.list-pagination li.active a,
.list-pagination li.active span,
.list-pagination .active a,
.list-pagination .active span {
  border-color: var(--green);
  color: #06162f;
  background: var(--green);
}

.list-aside {
  top: 18px;
}

.list-hot-list {
  display: grid;
  gap: 12px;
}

.list-hot-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.list-hot-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.list-hot-item span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0f2f58;
  background: #eef6ff;
  font-size: 13px;
  font-weight: 900;
}

.list-hot-item:nth-child(1) span {
  color: #06162f;
  background: var(--green);
}

.list-hot-item:nth-child(2) span {
  color: #fff;
  background: var(--blue);
}

.list-hot-item:nth-child(3) span {
  color: #fff;
  background: var(--orange);
}

.list-hot-item strong {
  color: #1e293b;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 800;
}

.list-hot-item:hover strong {
  color: var(--blue);
}

@media (max-width: 1100px) {
  .list-layout {
    grid-template-columns: 1fr;
  }

  .list-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .list-aside .article-widget-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .list-hero-inner,
  .list-main-wrap {
    width: calc(100% - 28px);
  }

  .list-hero-inner {
    padding: 22px 0 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .list-title {
    font-size: 30px;
    line-height: 1.28;
  }

  .list-desc {
    font-size: 15px;
    line-height: 1.8;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .list-hero-actions {
    width: 100%;
    margin-left: 0;
  }

  .list-hero-actions a {
    flex: 1 1 0;
  }

  .list-main-wrap {
    padding: 24px 0 44px;
  }

  .list-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .list-section-head h2 {
    font-size: 22px;
  }

  .list-article {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 14px;
  }

  .list-article-thumb,
  .list-article-thumb img {
    min-height: 190px;
  }

  .list-article h3 {
    font-size: 19px;
  }

  .list-article-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .list-read-more {
    width: 100%;
  }

  .list-aside {
    grid-template-columns: 1fr;
  }

  .list-pagination a,
  .list-pagination span {
    min-width: 34px;
    min-height: 34px;
    padding: 0 10px;
    font-size: 13px;
  }
}
