.dab-news-list-page,
.dab-news-detail-page {
  margin: 0;
  background: var(--dab-bg);
  color: var(--dab-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

.dab-news-list-page *,
.dab-news-detail-page * {
  box-sizing: border-box;
}

.dab-news-main {
  overflow: hidden;
  background: linear-gradient(180deg, #080a0d 0%, #10140f 48%, #080a0d 100%);
}

.dab-news-hero,
.dab-news-section,
.dab-news-article-hero,
.dab-news-article-shell,
.dab-news-cta {
  width: min(100% - 40px, var(--dab-max));
  margin-right: auto;
  margin-left: auto;
}

.dab-news-kicker {
  margin: 0 0 14px;
  color: var(--dab-accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dab-news-hero,
.dab-news-article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.6fr);
  gap: 58px;
  align-items: center;
  min-height: 620px;
  padding: 90px 0 74px;
}

.dab-news-hero h1,
.dab-news-article-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--dab-text);
  font-size: 58px;
  line-height: 1.05;
  letter-spacing: 0;
}

.dab-news-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--dab-muted);
  font-size: 17px;
  line-height: 1.75;
}

.dab-news-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.dab-news-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.dab-news-button:hover {
  transform: translateY(-1px);
}

.dab-news-button-primary {
  background: var(--dab-accent);
  color: #06110f;
}

.dab-news-button-secondary {
  border-color: var(--dab-line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--dab-text);
}

.dab-news-hero-panel {
  display: grid;
  border-top: 1px solid var(--dab-line);
}

.dab-news-hero-panel span {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 0 8px;
  border-bottom: 1px solid var(--dab-line);
  color: var(--dab-text);
  font-size: 15px;
  font-weight: 750;
}

.dab-news-hero-panel b {
  color: #f0c66a;
  font-size: 12px;
}

.dab-news-section {
  padding: 76px 0;
}

.dab-news-section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.dab-news-section-heading h2,
.dab-news-cta h2 {
  margin: 0;
  color: var(--dab-text);
  font-size: 42px;
  line-height: 1.13;
  letter-spacing: 0;
}

.dab-news-topic-grid,
.dab-news-card-grid,
.dab-news-path-grid,
.dab-news-related-grid {
  display: grid;
  gap: 18px;
}

.dab-news-topic-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dab-news-topic-grid article,
.dab-news-path-grid > a,
.dab-news-related-grid article {
  min-width: 0;
  border: 1px solid var(--dab-line);
  border-radius: 7px;
  background: rgba(16, 21, 27, 0.76);
}

.dab-news-topic-grid article {
  min-height: 238px;
  padding: 25px;
  border-top: 2px solid rgba(240, 198, 106, 0.7);
}

.dab-news-topic-grid span,
.dab-news-path-grid span {
  display: block;
  margin-bottom: 36px;
  color: #f0c66a;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dab-news-topic-grid h3,
.dab-news-card h3,
.dab-news-path-grid h3,
.dab-news-related-grid h3 {
  margin: 0;
  color: var(--dab-text);
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: 0;
}

.dab-news-topic-grid p,
.dab-news-card p,
.dab-news-path-grid p,
.dab-news-related-grid p,
.dab-news-cta p {
  color: var(--dab-muted);
  font-size: 15px;
  line-height: 1.72;
}

.dab-news-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dab-news-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--dab-line);
  border-radius: 7px;
  background: rgba(16, 21, 27, 0.82);
}

.dab-news-card-image {
  display: block;
  overflow: hidden;
  background: #121920;
}

.dab-news-card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.dab-news-card:hover .dab-news-card-image img {
  transform: scale(1.025);
}

.dab-news-card-copy {
  padding: 24px;
}

.dab-news-card-meta,
.dab-news-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: #aeb8c2;
  font-size: 12px;
  font-weight: 700;
}

.dab-news-card-meta {
  justify-content: space-between;
  margin-bottom: 18px;
}

.dab-news-card-meta span:empty,
.dab-news-article-meta span:empty {
  display: none;
}

.dab-news-card h3 a,
.dab-news-text-link,
.dab-news-path-grid a,
.dab-news-related-grid a {
  color: inherit;
  text-decoration: none;
}

.dab-news-card p {
  margin: 14px 0 20px;
}

.dab-news-text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--dab-accent-strong);
  font-size: 13px;
  font-weight: 800;
}

.dab-news-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.dab-news-pagination a,
.dab-news-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--dab-line);
  border-radius: 4px;
  color: var(--dab-text);
  font-size: 13px;
  text-decoration: none;
}

.dab-news-empty {
  padding: 34px;
  border: 1px solid var(--dab-line);
  border-radius: 7px;
  background: rgba(16, 21, 27, 0.72);
}

.dab-news-empty p {
  margin: 0;
  color: var(--dab-muted);
  font-size: 15px;
}

.dab-news-path-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dab-news-path-grid > a {
  min-height: 250px;
  padding: 28px;
}

.dab-news-path-grid > a:hover,
.dab-news-related-grid article:hover {
  border-color: rgba(72, 214, 181, 0.5);
}

.dab-news-path-grid p {
  margin: 15px 0 0;
}

.dab-news-article-hero {
  min-height: 600px;
  padding-bottom: 70px;
}

.dab-news-article-hero h1 {
  font-size: 54px;
}

.dab-news-article-meta {
  margin-top: 26px;
}

.dab-news-cover {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--dab-line);
  border-radius: 7px;
  background: #121920;
}

.dab-news-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dab-news-article-shell {
  max-width: 920px;
  padding: 0 0 86px;
}

.dab-news-body {
  padding: 52px;
  border-radius: 7px;
  background: #f5f7f6;
}

.dab-news-related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dab-news-related-grid article {
  min-height: 220px;
}

.dab-news-related-grid a {
  display: block;
  height: 100%;
  padding: 26px;
}

.dab-news-related-grid time {
  display: block;
  margin-bottom: 22px;
  color: #f0c66a;
  font-size: 12px;
  font-weight: 800;
}

.dab-news-related-grid p {
  margin: 14px 0 0;
}

.dab-news-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 88px;
  padding: 42px;
  border: 1px solid rgba(72, 214, 181, 0.3);
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(72, 214, 181, 0.12), rgba(240, 198, 106, 0.08));
}

.dab-news-cta > div {
  max-width: 820px;
}

.dab-news-cta p {
  margin: 17px 0 0;
}

@media (max-width: 1380px) and (min-width: 1101px) {
  .dab-news-list-page .dab-header-cta,
  .dab-news-detail-page .dab-header-cta {
    display: none;
  }
}

@media (max-width: 1080px) {
  .dab-news-hero,
  .dab-news-article-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dab-news-topic-grid,
  .dab-news-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .dab-news-hero h1,
  .dab-news-article-hero h1 {
    font-size: 44px;
  }

  .dab-news-path-grid,
  .dab-news-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .dab-news-hero,
  .dab-news-section,
  .dab-news-article-hero,
  .dab-news-article-shell,
  .dab-news-cta {
    width: min(100% - 28px, var(--dab-max));
  }

  .dab-news-hero,
  .dab-news-article-hero {
    gap: 40px;
    padding: 66px 0 52px;
  }

  .dab-news-hero h1,
  .dab-news-article-hero h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  .dab-news-section {
    padding: 56px 0;
  }

  .dab-news-section-heading h2,
  .dab-news-cta h2 {
    font-size: 31px;
  }

  .dab-news-topic-grid,
  .dab-news-card-grid {
    grid-template-columns: 1fr;
  }

  .dab-news-topic-grid article,
  .dab-news-path-grid > a,
  .dab-news-related-grid article {
    min-height: 0;
  }

  .dab-news-topic-grid span,
  .dab-news-path-grid span {
    margin-bottom: 24px;
  }

  .dab-news-body {
    padding: 26px 22px;
  }

  .dab-news-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 64px;
    padding: 28px;
  }

  .dab-news-button {
    width: 100%;
  }
}
