.dx-news-list-v2 {
  width: 100%;
}

.dx-news-list-v2__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #d4d4d4;
}

.dx-news-list-v2__eyebrow {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f4c81;
}

.dx-news-list-v2__helper {
  margin: 0;
  font-size: 0.9375rem;
  color: #666;
  text-align: right;
}

.dx-news-list-v2__body {
  display: flex;
  flex-direction: column;
}

.dx-news-list-v2__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.dx-news-list-v2__card {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  min-height: 220px;
  padding: 1.4rem;
  border: 1px solid #dcdcdc;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dx-news-list-v2__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.08);
}

.dx-news-list-v2__card-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.dx-news-list-v2__card-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.45;
  color: #111;
  word-break: keep-all;
}

.dx-news-list-v2__card-summary {
  margin: 0;
  color: #4b5563;
  font-size: 0.96rem;
  line-height: 1.65;
}

.dx-news-list-v2__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.125rem 0;
  border-bottom: 1px solid #dcdcdc;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease;
}

.dx-news-list-v2__item:hover .dx-news-list-v2__title {
  text-decoration: underline;
}

.dx-news-list-v2__main {
  min-width: 0;
}

.dx-news-list-v2__meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
  color: #7a7a7a;
  font-size: 0.95rem;
}

.dx-news-list-v2__meta-divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #a8a8a8;
}

.dx-news-list-v2__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.45;
  color: #111;
  word-break: keep-all;
}

.dx-news-list-v2__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #222;
  flex-shrink: 0;
}

.dx-news-list-v2__arrow-icon {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
}

.dx-news-list-v2__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.25rem;
}

.dx-news-list-v2__legacy-footer {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 2rem;
}

.dx-news-list-v2__legacy-footer .btns {
  margin-right: 1%;
}

.dx-news-list-v2__legacy-footer .dx-news-list-v2__more {
  min-width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.dx-news-list-v2__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background-color: #fff;
  border: 1px solid #cfcfcf;
  text-decoration: none;
  color: #222;
}

.dx-news-list-v2__empty {
  margin: 0;
  padding: 2rem 0;
  text-align: center;
  color: #666;
  font-size: 1rem;
}

@media screen and (max-width: 900px) {
  .dx-news-list-v2__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .dx-news-list-v2__helper {
    text-align: left;
  }

  .dx-news-list-v2__item {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
  }

  .dx-news-list-v2__arrow {
    display: none;
  }

  .dx-news-list-v2__title {
    font-size: 1.1rem;
  }

  .dx-news-list-v2__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 640px) {
  .dx-news-list-v2__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
