.news-wrap {
  margin-top: 16px;
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.news-hero {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(520px 260px at 20% 10%, rgba(214, 176, 122, 0.14), transparent 60%),
    radial-gradient(420px 260px at 70% 0%, rgba(120, 160, 220, 0.14), transparent 60%),
    linear-gradient(140deg, rgba(20, 26, 42, 0.85), rgba(11, 14, 24, 0.92));
  padding: 16px 18px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
}

.news-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent-3);
}

.news-title {
  margin-top: 6px;
  font-family: "Cinzel", serif;
  font-size: 22px;
  letter-spacing: 0.06em;
}

.news-sub {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.news-controls {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 12px;
  align-items: center;
}

.tabs {
  display: flex;
  gap: 10px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 16, 28, 0.7);
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tab:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 176, 122, 0.45);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
}

.tab.active {
  color: rgba(30, 20, 10, 0.95);
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(240, 214, 176, 0.95), rgba(196, 138, 68, 0.9) 60%, rgba(122, 78, 35, 0.95));
}

.search {
  position: relative;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 16, 28, 0.7);
  overflow: hidden;
}

.search input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  padding: 11px 40px 11px 14px;
  font-size: 13px;
}

.search svg {
  width: 18px;
  height: 18px;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(214, 176, 122, 0.95);
}

.news-list {
  display: grid;
  gap: 10px;
}

.news-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 24, 40, 0.82);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-item:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 176, 122, 0.35);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.45);
}

.news-item.focus {
  border-color: rgba(240, 214, 176, 0.85);
  box-shadow: 0 0 0 1px rgba(240, 214, 176, 0.25), 0 30px 70px rgba(0, 0, 0, 0.55);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 26, 0.55);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-3);
  white-space: nowrap;
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0d6b0, #c48a44);
  box-shadow: 0 0 10px rgba(214, 176, 122, 0.45);
}

.news-main {
  display: grid;
  gap: 6px;
}

.news-item-title {
  font-size: 14px;
  font-weight: 700;
}

.news-item-excerpt {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.news-meta {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(167, 177, 201, 0.9);
  white-space: nowrap;
  padding-top: 6px;
}

.news-empty {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 24, 40, 0.75);
  padding: 16px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  text-align: center;
}

@media (max-width: 1024px) {
  .news-controls {
    grid-template-columns: 1fr;
  }
}
