﻿:root {
  --npl-red: #e30613;
  --npl-red-dark: #a80008;
  --npl-ink: #101418;
  --npl-muted: #68707a;
  --npl-line: #e7e9ed;
  --npl-bg: #f7f8fa;
  --npl-card: #ffffff;
  --npl-soft: #f1f3f6;
  --npl-footer: #071017;
  --npl-shadow: 0 10px 30px rgba(16, 20, 24, 0.08);
  --npl-radius: 8px;
  --npl-container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--npl-ink);
  background: #fff;
  font-family: "Noto Sans Devanagari", "Mangal", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--npl-red);
}

button,
input,
select,
textarea {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.npl-container {
  width: min(100% - 32px, var(--npl-container));
  margin: 0 auto;
}

.admin-bar .npl-header {
  top: 32px;
}

.npl-topbar {
  border-bottom: 1px solid var(--npl-line);
  background: #fff;
  font-size: 0.84rem;
}

.npl-topbar__inner,
.npl-header__inner,
.npl-mainnav__inner,
.npl-breaking__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.npl-topbar__links,
.npl-topbar__actions,
.npl-mainnav__menu,
.npl-footer__links,
.npl-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.npl-topbar__inner {
  min-height: 34px;
}



