:root {
  --ink: #132236;
  --muted: #5a6b7f;
  --line: #dce8ef;
  --soft: #f5f8fa;
  --teal: #00a4a6;
  --teal-dark: #087f86;
  --green: #6ecb63;
}

* { box-sizing: border-box; }

body {
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
  margin: 0;
}

a { color: var(--teal-dark); }

.news-header {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  min-height: 76px;
  padding: 10px 32px;
  position: sticky;
  top: 0;
  z-index: 2;
}

.news-header img {
  display: block;
  height: auto;
  max-height: 56px;
  width: auto;
}

.news-header nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
}

.news-header nav a,
.button {
  font-weight: 800;
  text-decoration: none;
}

.button {
  background: var(--teal);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  padding: 11px 16px;
}

.ad-728 {
  align-items: center;
  background: var(--soft);
  border: 1px dashed #adc1d6;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  height: 90px;
  justify-content: center;
  margin: 22px auto;
  max-width: calc(100% - 32px);
  width: 728px;
}

.ad-728 span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-main,
.article {
  margin: 0 auto;
  max-width: 860px;
  padding: 52px 24px 72px;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1 {
  font-size: 3rem;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 16px;
}

h2 { line-height: 1.2; }

.lead,
.article-meta {
  color: var(--muted);
}

.news-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.news-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  text-decoration: none;
}

.news-card strong {
  display: block;
  font-size: 1.26rem;
}

.article-body {
  font-size: 1.08rem;
  margin-top: 34px;
}

.article-promo {
  background: #eef9fb;
  border: 1px solid #bee7eb;
  border-radius: 8px;
  margin: 36px 0;
  padding: 22px;
}

.domain-search {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 40px auto;
  max-width: 860px;
  padding: 22px;
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
}

.search-row input,
.search-row button {
  border: 1px solid var(--line);
  font: inherit;
  min-height: 52px;
  padding: 0 14px;
}

.search-row button {
  background: var(--green);
  cursor: pointer;
  font-weight: 800;
}

.exchange-banner {
  text-align: center;
}

.exchange-banner iframe { max-width: 100%; }

.news-footer {
  background: var(--soft);
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 28px;
  text-align: center;
}

@media (max-width: 700px) {
  .news-header { flex-wrap: wrap; padding: 14px 18px; }
  .news-header nav { margin-left: 0; overflow-x: auto; width: 100%; }
  .news-header nav a { white-space: nowrap; }
  h1 { font-size: 2.24rem; }
  .search-row { grid-template-columns: 1fr; }
}
