.news-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;
  height: 84px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.news-navbar-inner {
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-logo img {
  height: 140px;
  object-fit: contain;
}

.news-nav-links {
  display: flex;
  gap: 36px;
}

.news-nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  opacity: 0.9;
}

.news-nav-links a:hover {
  opacity: 1;
  color: red;
}


.news-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px 80px;
}

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

.news-subtitle {
  margin-top: 6px;
  margin-bottom: 40px;
  color: #9a9a9a;
}

.news-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}


.news-card {
  background: #0f0f0f;
  border: 1px solid #1e1e1e;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.news-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.news-content {
  padding: 18px;
}

.news-tag {
  font-size: 11px;
  color: #1db954;
  text-transform: uppercase;
}

.news-headline {
  margin-top: 6px;
  font-size: 16px;
  color: #fff;
}

.news-summary {
  margin-top: 8px;
  font-size: 14px;
  color: #ccc;
}

.news-meta {
  margin-top: 12px;
  font-size: 12px;
  color: #888;
  display: flex;
  justify-content: space-between;
}

.news-link {
  color: #1db954;
  text-decoration: none;
}

.page-loader {
  padding: 30px 16px;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

.page-loader.hidden {
  display: none;
}

/* mobile ui */
@media (max-width: 768px) {
  .news-navbar {
    height: 60px;
  }
  .news-navbar-inner {
    padding: 0 16px;
  }
  .news-logo img {
    height: 65px;
  }
  .news-nav-links {
    gap: 16px;
  }
  .news-nav-links a {
    font-size: 14px;
  }
  .news-page {
    padding: 72px 16px 60px;
  }
  .news-title {
    font-size: 24px;
  }
  .news-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .news-feed {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .news-card {
    border-radius: 16px;
  }
  .news-image {
    height: 200px;
  }
  .news-content {
    padding: 16px;
  }
  .news-headline {
    font-size: 16px;
  }
  .news-summary {
    font-size: 14px;
  }
}