@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+Devanagari:wght@500;600;700;800;900&family=Noto+Sans+Devanagari:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap");
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #F6F7F8;
  color: #121521;
  font-family: "Noto Sans Devanagari", "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Noto Serif Devanagari", "Georgia", serif;
  font-weight: 800;
}

p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid #071A5A;
  outline-offset: 2px;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .wrap {
    padding: 0 18px;
  }
}

.masthead {
  background: #FFFFFF;
  border-bottom: 1px solid #D9DBE2;
}
.masthead__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px 10px;
  gap: 24px;
}
.masthead__tools {
  display: flex;
  align-items: center;
  gap: 14px;
}
.masthead__nav {
  border-top: 1px solid #D9DBE2;
  position: relative;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, #C9130D, #071A5A 55%, #C9130D);
  position: relative;
  flex: none;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #F6F7F8;
}
.brand__word {
  font-family: "Noto Serif Devanagari", "Georgia", serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.5px;
  color: #121521;
  line-height: 1;
}
.brand__word span {
  color: #C9130D;
}
.brand__tag {
  display: none;
  font-family: "Noto Sans Devanagari", "Inter", sans-serif;
  font-size: 12px;
  color: #828798;
  border-left: 1px solid #D9DBE2;
  padding-left: 10px;
  letter-spacing: 0.02em;
}
@media (min-width: 640px) {
  .brand__tag {
    display: block;
  }
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D9DBE2;
  border-radius: 50%;
  background: transparent;
  color: #121521;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease;
}
.icon-btn:hover {
  background: #EBECF0;
  border-color: #828798;
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(18, 21, 33, 0.06);
}

.lang-pill {
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #FFFFFF;
  background: #C9130D;
  border: none;
  border-radius: 999px;
  padding: 9px 18px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease;
}
.lang-pill:hover {
  background: #910C08;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -8px rgba(201, 19, 13, 0.5);
}

.navbar {
  display: flex;
  align-items: center;
  gap: 2px;
}

.ticker {
  background: #071A5A;
  color: #FFFFFF;
  display: flex;
  align-items: stretch;
}
.ticker__label {
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #C9130D;
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 0 16px;
}
.ticker__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FFFFFF;
  animation: pulse 1.6s ease-in-out infinite;
}
.ticker__track-wrap {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.ticker__track {
  display: flex;
  gap: 56px;
  padding: 0 24px;
  white-space: nowrap;
  width: max-content;
  font-family: "Noto Sans Devanagari", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  align-items: center;
  height: 38px;
  animation: marquee 32s linear infinite;
}
.ticker__track span {
  opacity: 0.55;
  margin-right: 8px;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.7);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track,
  .brand__mark,
  .ticker__dot {
    animation: none;
  }
}
.navbar > a,
.nav-item > a {
  position: relative;
  font-family: "Noto Sans Devanagari", "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 16px;
  color: #4D5366;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.navbar > a::before,
.nav-item > a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.navbar > a:hover,
.nav-item > a:hover {
  color: #121521;
}
.navbar > a:hover::before,
.nav-item > a:hover::before {
  opacity: 0.55;
  transform: scale(1);
}
.navbar > a.is-active,
.nav-item > a.is-active {
  color: #C9130D;
}
.navbar > a.is-active::before,
.nav-item > a.is-active::before {
  opacity: 1;
  transform: scale(1);
  background: #C9130D;
}
.navbar > a.is-active::after,
.nav-item > a.is-active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 3px;
  background: #C9130D;
  border-radius: 2px 2px 0 0;
}

.navbar > a.op {
  color: #2B4082;
}
.navbar > a.op.is-active {
  color: #071A5A;
}
.navbar > a.op.is-active::before {
  background: #071A5A;
}
.navbar > a.op.is-active::after {
  background: #071A5A;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}
.nav-item__chevron-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  border: none;
  background: transparent;
  color: #828798;
  cursor: pointer;
  padding: 0;
}
.nav-item__chevron-btn svg {
  transition: transform 0.18s ease;
}
.nav-item:hover .nav-item__chevron-btn svg, .nav-item.is-open .nav-item__chevron-btn svg {
  transform: rotate(180deg);
  color: #C9130D;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 1px;
  background: #FFFFFF;
  border: 1px solid #D9DBE2;
  border-top: 3px solid #C9130D;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 28px 56px -16px rgba(18, 21, 33, 0.24);
  min-width: 600px;
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 210px;
  gap: 8px 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  z-index: 80;
}
.mega-menu--right {
  left: auto;
  right: 0;
}
.mega-menu__col h5 {
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #828798;
  margin-bottom: 6px;
}
.mega-menu__col a {
  display: block;
  padding: 8px 4px;
  font-family: "Noto Sans Devanagari", "Inter", sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: #4D5366;
  border-radius: 3px;
}
.mega-menu__col a:hover {
  color: #C9130D;
  background: #EBECF0;
}
.mega-menu__feature {
  border-left: 1px solid #D9DBE2;
  padding-left: 24px;
}
.mega-menu__feature a {
  display: block;
}
.mega-menu__feature .plate {
  aspect-ratio: 4/3;
  margin-bottom: 10px;
  width: 100%;
}
.mega-menu__feature p {
  font-family: "Noto Serif Devanagari", "Georgia", serif;
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.4;
}
.mega-menu__feature span {
  display: block;
  margin-top: 8px;
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #C9130D;
}

.nav-item--sports .mega-menu {
  border-top-color: #071A5A;
}

.nav-item--entertainment .mega-menu {
  border-top-color: #B4832A;
}

.nav-item--world .mega-menu {
  border-top-color: #1E5C4A;
}

.nav-item--economy .mega-menu {
  border-top-color: #6B4A9A;
}

.nav-item--tech .mega-menu {
  border-top-color: #2B4082;
}

@media (hover: hover) {
  .nav-item:hover .mega-menu,
  .nav-item:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.nav-item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-bottom: 1px solid #D9DBE2;
  box-shadow: 0 20px 40px -20px rgba(18, 21, 33, 0.25);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.2s ease, opacity 0.2s ease, padding 0.2s ease;
  z-index: 90;
}
.search-panel.is-open {
  max-height: 110px;
  opacity: 1;
  padding: 20px 0;
}
.search-panel__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #D9DBE2;
  border-radius: 999px;
  padding: 6px 8px 6px 20px;
}
.search-panel__inner svg {
  flex: none;
  color: #828798;
}
.search-panel input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: "Noto Sans Devanagari", "Inter", sans-serif;
  font-size: 16px;
  padding: 8px 0;
  color: #121521;
}
.search-panel input:focus {
  outline: none;
}
.search-panel button {
  flex: none;
  border: none;
  background: #C9130D;
  color: #FFFFFF;
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 999px;
}
.search-panel button:hover {
  background: #910C08;
}

.icon-btn.menu-btn {
  position: relative;
}
.icon-btn.menu-btn svg .l1, .icon-btn.menu-btn svg .l2, .icon-btn.menu-btn svg .l3 {
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: 12px 12px;
}
.icon-btn.menu-btn.is-active .l1 {
  transform: translateY(6px) rotate(45deg);
}
.icon-btn.menu-btn.is-active .l2 {
  opacity: 0;
}
.icon-btn.menu-btn.is-active .l3 {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 901px) {
  .menu-btn {
    display: none;
  }
}
@media (max-width: 900px) {
  .masthead__nav {
    border-top: none;
  }
  #primaryNav.navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #FFFFFF;
    border-top: 1px solid #D9DBE2;
    border-bottom: 1px solid #D9DBE2;
    box-shadow: 0 24px 48px -20px rgba(18, 21, 33, 0.28);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease;
    z-index: 70;
    gap: 0;
  }
  #primaryNav.navbar.is-open {
    max-height: 80vh;
    overflow-y: auto;
    opacity: 1;
  }
  .nav-item {
    flex-direction: column;
    border-bottom: 1px solid #D9DBE2;
  }
  .nav-item > a {
    flex: 1;
    padding: 15px 20px;
  }
  .nav-item > a::after {
    left: 20px !important;
    right: 20px !important;
  }
  .nav-item__chevron-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 40px;
    height: 40px;
  }
  .mega-menu {
    position: static;
    display: none;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-width: 0;
    box-shadow: none;
    border: none;
    border-top: 1px solid #D9DBE2;
    background: #EBECF0;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .mega-menu__feature {
    display: none;
  }
  .nav-item.is-open .mega-menu {
    display: grid;
  }
  .search-panel {
    position: static;
  }
  .search-panel.is-open {
    padding: 16px 18px 20px;
  }
}
body.nav-open {
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 16px;
  height: 2px;
  background: currentColor;
}
.eyebrow--politics {
  color: #C9130D;
}
.eyebrow--sports {
  color: #071A5A;
}
.eyebrow--entertainment {
  color: #B4832A;
}
.eyebrow--world {
  color: #1E5C4A;
}
.eyebrow--economy {
  color: #6B4A9A;
}
.eyebrow--tech {
  color: #2B4082;
}
.eyebrow--opinion {
  color: #121521;
}
.eyebrow--crimson {
  color: #C9130D;
}
.eyebrow--indigo {
  color: #071A5A;
}
.eyebrow--forest {
  color: #1E5C4A;
}
.eyebrow--gold {
  color: #B4832A;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #121521;
  background: #121521;
  color: #FFFFFF;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.btn:hover {
  background: #C9130D;
  border-color: #C9130D;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -10px rgba(201, 19, 13, 0.5);
}
.btn--ghost {
  background: transparent;
  color: #121521;
  border-color: #D9DBE2;
  box-shadow: none;
}
.btn--ghost:hover {
  background: #FFFFFF;
  border-color: #828798;
  color: #121521;
  box-shadow: 0 1px 3px rgba(18, 21, 33, 0.07), 0 6px 16px -10px rgba(18, 21, 33, 0.14);
}

.link-arrow {
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #071A5A;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-arrow svg {
  transition: transform 0.15s ease;
}
.link-arrow:hover svg {
  transform: translateX(4px);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 2px solid #121521;
  padding-bottom: 12px;
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: 26px;
  letter-spacing: 0.01em;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 48px 0 8px;
}
.pagination a {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D9DBE2;
  border-radius: 8px;
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #4D5366;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.pagination a:hover {
  border-color: #121521;
  color: #121521;
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(18, 21, 33, 0.06);
}
.pagination a.is-current {
  background: #121521;
  border-color: #121521;
  color: #FFFFFF;
  box-shadow: 0 1px 3px rgba(18, 21, 33, 0.07), 0 6px 16px -10px rgba(18, 21, 33, 0.14);
}
.pagination a.is-dots {
  border-color: transparent;
  box-shadow: none;
}
.pagination a.is-dots:hover {
  transform: none;
  box-shadow: none;
}

.ribbon {
  position: absolute;
  top: 14px;
  left: -6px;
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  padding: 6px 14px 6px 16px;
  z-index: 2;
}
.ribbon::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.35);
}
.ribbon--politics {
  background: #C9130D;
}
.ribbon--sports {
  background: #071A5A;
}
.ribbon--entertainment {
  background: #B4832A;
}
.ribbon--world {
  background: #1E5C4A;
}
.ribbon--economy {
  background: #6B4A9A;
}
.ribbon--tech {
  background: #2B4082;
}
.ribbon--opinion {
  background: #121521;
}

.plate {
  position: relative;
  overflow: hidden;
  background: #EBECF0;
  aspect-ratio: 16/10;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(18, 21, 33, 0.06);
  isolation: isolate;
}
.plate::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}
.plate svg.motif {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72%;
  height: 72%;
  overflow: visible;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.plate img.plate-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.plate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 6, 0) 60%, rgba(10, 8, 6, 0.18) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 1;
}
.plate--tall {
  aspect-ratio: 4/5;
}
.plate--wide {
  aspect-ratio: 21/9;
}
.plate--square {
  aspect-ratio: 1/1;
}
.plate--politics {
  background: linear-gradient(135deg, #600906, #C9130D 55%, #f45852);
}
.plate--sports {
  background: linear-gradient(135deg, black, #071A5A 55%, #0f38c2);
}
.plate--entertainment {
  background: linear-gradient(135deg, #594115, #B4832A 55%, #deb770);
}
.plate--world {
  background: linear-gradient(135deg, #020706, #1E5C4A 55%, #3ab18e);
}
.plate--economy {
  background: linear-gradient(135deg, #36264e, #6B4A9A 55%, #a58cc8);
}
.plate--tech {
  background: linear-gradient(135deg, #0f162e, #2B4082 55%, #5671c7);
}
.plate--opinion {
  background: linear-gradient(135deg, black, #121521 55%, #3a436a);
}
.plate--generic {
  background: linear-gradient(135deg, #4d505d, #828798 55%, #c0c2cb);
}

a:hover .plate::before,
.card:hover .plate::before {
  opacity: 1;
}
a:hover .plate .plate-photo,
a:hover .plate svg.motif,
.card:hover .plate .plate-photo,
.card:hover .plate svg.motif {
  transform: scale(1.07);
}

.card {
  display: block;
  background: #FFFFFF;
  border: 1px solid #D9DBE2;
  border-radius: 20px;
  padding: 14px 14px 20px;
  box-shadow: 0 1px 3px rgba(18, 21, 33, 0.07), 0 6px 16px -10px rgba(18, 21, 33, 0.14);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 22px 40px -16px rgba(201, 19, 13, 0.22), 0 10px 20px -10px rgba(18, 21, 33, 0.16);
}
.card > .plate {
  margin: -14px -14px 14px;
  border-radius: 20px 20px 0 0;
}
.card__thumb {
  position: relative;
  margin: -14px -14px 14px;
}
.card__thumb .plate {
  border-radius: 20px 20px 0 0;
}
.card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-size: 12.5px;
  color: #828798;
  margin-top: 10px;
}
.card__title {
  font-size: 19px;
  line-height: 1.32;
  font-weight: 700;
  transition: color 0.2s ease;
}
.card:hover .card__title {
  color: #C9130D;
}
.card__dek {
  font-size: 14.5px;
  color: #4D5366;
  margin-top: 8px;
  line-height: 1.5;
}
.card--row {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 16px;
  background: none;
  border: none;
  border-radius: 14px;
  padding: 8px;
  box-shadow: none;
}
.card--row:hover {
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(18, 21, 33, 0.07), 0 6px 16px -10px rgba(18, 21, 33, 0.14);
  transform: none;
  border-color: transparent;
}
.card--row > .plate {
  margin: 0;
  border-radius: 8px;
}
.card--row .card__title {
  font-size: 16px;
  line-height: 1.35;
}
@media (max-width: 380px) {
  .card--row {
    grid-template-columns: 92px 1fr;
    gap: 12px;
  }
  .card--row .card__title {
    font-size: 14.5px;
  }
}

.section {
  padding: 52px 1rem;
}
.section--tint {
  background: #EBECF0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}
@media (max-width: 860px) {
  .grid-3 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (max-width: 600px) {
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
@media (max-width: 960px) {
  .grid-4 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (max-width: 560px) {
  .grid-4 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 44px;
}
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 32px;
  padding: 40px 0;
}
@media (max-width: 900px) {
  .hero-lead {
    grid-template-columns: minmax(0, 1fr);
  }
}
.hero-lead__main {
  position: relative;
}
.hero-lead__main .plate {
  aspect-ratio: 16/10;
}
.hero-lead__main figcaption {
  padding-top: 18px;
}
.hero-lead__main h1 {
  font-size: 34px;
  line-height: 1.25;
  margin-top: 14px;
}
.hero-lead__main p.dek {
  margin-top: 12px;
  font-size: 16px;
  color: #4D5366;
  line-height: 1.6;
}
.hero-lead__side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero-lead__side .card--row {
  grid-template-columns: 104px 1fr;
}
.hero-lead__side .card--row .plate {
  aspect-ratio: 1/1;
}

.market-strip {
  border-top: 1px solid #D9DBE2;
  border-bottom: 1px solid #D9DBE2;
  background: #FFFFFF;
  overflow: hidden;
}
.market-strip .ticker__track {
  animation-duration: 26s;
  color: #FFFFFF;
  height: 44px;
}
.market-strip .up {
  color: #1E5C4A;
  font-weight: 700;
}
.market-strip .down {
  color: #C9130D;
  font-weight: 700;
}

.opinion-strip {
  background: #121521;
  color: #FFFFFF;
  padding: 52px 0;
}
.opinion-strip .section-head {
  border-color: #3A3B41;
}
.opinion-strip .section-head h2 {
  color: #FFFFFF;
}
.opinion-strip .card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.opinion-strip .card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 56px -16px rgba(18, 21, 33, 0.24);
}
.opinion-strip .card__title {
  color: #FFFFFF;
  font-size: 20px;
}
.opinion-strip .card__dek {
  color: #A6A8AE;
}
.opinion-strip .card:hover .opinion-strip .card__title {
  color: #F0A6A6;
}

.quick-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 32px 0;
}
@media (max-width: 860px) {
  .quick-services {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (max-width: 480px) {
  .quick-services {
    grid-template-columns: minmax(0, 1fr);
  }
}

.qs-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  border: 1px solid #D9DBE2;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 1px 2px rgba(18, 21, 33, 0.06);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.qs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px -12px rgba(18, 21, 33, 0.22), 0 4px 10px -6px rgba(18, 21, 33, 0.12);
  border-color: transparent;
}
.qs-card__icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.qs-card:hover .qs-card__icon {
  transform: scale(1.08);
}
.qs-card__body h5 {
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #828798;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.qs-card__body p {
  font-family: "Noto Serif Devanagari", "Georgia", serif;
  font-weight: 700;
  font-size: 16px;
}
.qs-card__body span {
  display: block;
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-size: 12.5px;
  color: #4D5366;
  margin-top: 2px;
}

.trending-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}
.trending-rail::-webkit-scrollbar {
  height: 6px;
}
.trending-rail::-webkit-scrollbar-thumb {
  background: #D9DBE2;
  border-radius: 99px;
}

.trending-item {
  flex: none;
  width: 230px;
  scroll-snap-align: start;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.trending-item:hover {
  transform: translateY(-3px);
}
.trending-item .num {
  font-family: "Noto Serif Devanagari", "Georgia", serif;
  font-weight: 900;
  font-size: 34px;
  color: #C9130D;
  flex: none;
}
.trending-item p {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.4;
}
.trending-item:hover p {
  color: #C9130D;
}
.trending-item .card__meta {
  margin-top: 6px;
}

.video-card {
  position: relative;
}
.video-card .plate {
  aspect-ratio: 16/9;
}
.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card__play span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px -6px rgba(10, 8, 6, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #121521;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}
.video-card:hover .video-card__play span {
  transform: scale(1.12);
  background: #FFFFFF;
}
.video-card__duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(10, 10, 12, 0.75);
  color: #FFFFFF;
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 8px;
}

.editors-picks {
  background: #EBECF0;
  border: 1px solid #D9DBE2;
  border-radius: 20px;
  padding: 36px;
}
@media (max-width: 600px) {
  .editors-picks {
    padding: 22px;
  }
}
.editors-picks .card {
  position: relative;
  padding-top: 2px;
}
.editors-picks .card::before {
  content: "सम्पादकको छनोट";
  display: inline-block;
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #B4832A;
  border: 1px solid #B4832A;
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.editors-picks .card .plate {
  margin-top: 1px;
}

.photo-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 36px;
}
@media (max-width: 860px) {
  .photo-feature {
    grid-template-columns: minmax(0, 1fr);
  }
}
.photo-feature__main .plate {
  aspect-ratio: 4/3;
}
.photo-feature__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.photo-feature__list .card--row .plate {
  aspect-ratio: 1/1;
}

.newsletter-banner {
  background: linear-gradient(120deg, #071A5A, #223472 60%, #C9130D);
  color: #FFFFFF;
  padding: 52px 32px;
  border-radius: 20px;
  box-shadow: 0 14px 28px -12px rgba(18, 21, 33, 0.22), 0 4px 10px -6px rgba(18, 21, 33, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.newsletter-banner h3 {
  font-size: 26px;
  max-width: 440px;
  line-height: 1.35;
}
.newsletter-banner p {
  margin-top: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 440px;
}
.newsletter-banner form {
  display: flex;
  min-width: 0;
  gap: 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  flex: none;
  width: 100%;
  max-width: 380px;
}
.newsletter-banner input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 14px 20px;
  color: #FFFFFF;
  font-family: "Noto Sans Devanagari", "Inter", sans-serif;
  font-size: 14.5px;
}
.newsletter-banner input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}
.newsletter-banner input:focus {
  outline: none;
}
.newsletter-banner button {
  border: none;
  background: #FFFFFF;
  color: #121521;
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-weight: 800;
  font-size: 13.5px;
  padding: 0 24px;
  letter-spacing: 0.02em;
}
.newsletter-banner button:hover {
  background: #EBECF0;
}

.page-band {
  background: #EBECF0;
  border-bottom: 1px solid #D9DBE2;
  padding: 36px 0;
}
.page-band__title {
  font-size: 42px;
  letter-spacing: 0.01em;
}
.page-band__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.breadcrumb {
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-size: 13px;
  color: #828798;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a:hover {
  color: #C9130D;
}

.category-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}
@media (max-width: 860px) {
  .category-feature {
    grid-template-columns: minmax(0, 1fr);
  }
}

.article-head {
  padding: 44px 0 30px;
  text-align: center;
  border-bottom: 1px solid #D9DBE2;
}
.article-head h1 {
  max-width: 900px;
  margin: 18px auto 0;
  font-size: 44px;
  line-height: 1.22;
}
@media (max-width: 600px) {
  .article-head h1 {
    font-size: 30px;
  }
}
.article-head .dek {
  max-width: 680px;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.6;
  color: #4D5366;
  font-family: "Noto Sans Devanagari", "Inter", sans-serif;
}
@media (max-width: 600px) {
  .article-head .dek {
    font-size: 16px;
  }
}

.byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-size: 13.5px;
  color: #4D5366;
}
.byline img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
.byline b {
  color: #121521;
  font-weight: 700;
}
.byline .sep {
  color: #828798;
}

.article-hero {
  margin-top: 36px;
}
.article-hero figcaption {
  max-width: 1280px;
  margin: 10px auto 0;
  padding: 0 32px;
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-size: 12.5px;
  color: #828798;
}

.article-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  padding: 48px 16px 0;
  align-items: start;
}
@media (max-width: 960px) {
  .article-body-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.share-rail {
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  float: left;
  margin: 4px 32px 0 -4px;
}
.share-rail button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #D9DBE2;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4D5366;
}
.share-rail button:hover {
  background: #121521;
  color: #FFFFFF;
  border-color: #121521;
}

.prose {
  font-family: "Noto Sans Devanagari", "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.85;
  color: #26272C;
}
@media (max-width: 600px) {
  .prose {
    font-size: 17px;
  }
}
.prose > p {
  margin-bottom: 24px;
}
.prose > p:first-of-type::first-letter {
  font-family: "Noto Serif Devanagari", "Georgia", serif;
  font-weight: 900;
  font-size: 64px;
  float: left;
  line-height: 0.8;
  padding: 8px 10px 0 0;
  color: #C9130D;
}
.prose h3 {
  font-size: 24px;
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 4px solid #C9130D;
}

.pull-quote {
  margin: 36px 0;
  padding: 26px 30px;
  background: #E5E9F5;
  border-left: 4px solid #071A5A;
  border-radius: 0 14px 14px 0;
  box-shadow: 0 1px 2px rgba(18, 21, 33, 0.06);
  font-family: "Noto Serif Devanagari", "Georgia", serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.5;
  color: #071A5A;
}
.pull-quote cite {
  display: block;
  margin-top: 14px;
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: #4D5366;
  text-transform: uppercase;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #D9DBE2;
}
.tag-row a {
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid #D9DBE2;
  border-radius: 999px;
  color: #4D5366;
}
.tag-row a:hover {
  border-color: #121521;
  color: #121521;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.sidebar-card {
  background: #FFFFFF;
  border: 1px solid #D9DBE2;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(18, 21, 33, 0.07), 0 6px 16px -10px rgba(18, 21, 33, 0.14);
  overflow: hidden;
}
.sidebar-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 2px solid #121521;
}
.sidebar-card__head h4 {
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rank-list {
  padding: 6px 20px 18px;
}
.rank-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #D9DBE2;
}
.rank-list li:last-child {
  border-bottom: none;
}
.rank-list .num {
  font-family: "Noto Serif Devanagari", "Georgia", serif;
  font-weight: 900;
  font-size: 26px;
  color: #D9DBE2;
  line-height: 1;
  flex: none;
  width: 26px;
}
.rank-list a {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.4;
}
.rank-list a:hover {
  color: #C9130D;
}

.ad-slot {
  border: 1px dashed #D9DBE2;
  background: #EBECF0;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #828798;
  text-transform: uppercase;
}

.related-strip {
  padding: 64px 1rem 8px;
}

.site-footer {
  position: relative;
  background: linear-gradient(160deg, #071A5A 0%, #041039 100%);
  color: rgba(255, 255, 255, 0.68);
  margin-top: 72px;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C9130D, #f12922, #C9130D);
  z-index: 2;
}
.site-footer::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 19, 13, 0.22), transparent 70%);
  pointer-events: none;
}

.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  padding: 64px 1rem 48px;
}
@media (max-width: 720px) {
  .footer-top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (max-width: 520px) {
  .footer-top {
    grid-template-columns: minmax(0, 1fr);
  }
}

.footer-brand__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.footer-brand__top img {
  height: 42px;
  width: auto;
  object-fit: contain;
  flex: none;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.25));
}

.footer-brand .brand__word {
  color: rgba(255, 255, 255, 0.96);
}
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.footer-social a:hover {
  background: #C9130D;
  border-color: #C9130D;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -8px rgba(201, 19, 13, 0.55);
}

.footer-col h4 {
  position: relative;
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 20px;
  padding-bottom: 13px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: #C9130D;
}
.footer-col li {
  margin-bottom: 13px;
  transition: transform 0.18s ease;
}
.footer-col li:hover {
  transform: translateX(4px);
}
.footer-col a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.18s ease;
}
.footer-col a:hover {
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
}

.footer-masthead {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px 40px;
}

.footer-masthead__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 44px;
}

.footer-masthead__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-masthead__item .label {
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}
.footer-masthead__item .value {
  font-family: "Noto Sans Devanagari", "Inter", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
}

.footer-masthead__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 26px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.68);
}
.footer-masthead__contact a,
.footer-masthead__contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-masthead__contact a {
  color: rgba(255, 255, 255, 0.96);
  transition: color 0.18s ease;
}
.footer-masthead__contact a:hover {
  color: #f1322c;
}
.footer-masthead__contact svg {
  flex: none;
  color: #C9130D;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  padding: 7px;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
}

@media (max-width: 756px) {
  .footer-masthead {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.46);
}
.footer-bottom strong {
  color: rgba(255, 255, 255, 0.96);
}
.footer-bottom img {
  width: 6rem;
  opacity: 0.85;
  transition: opacity 0.18s ease;
}
.footer-bottom .orangic {
  display: flex;
  align-items: center;
}
.footer-bottom .orangic:hover img {
  opacity: 1;
}
.footer-bottom .orangic span {
  margin-top: 0.3rem;
  margin-right: 1rem;
}

@media (max-width: 756px) {
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/*# sourceMappingURL=main.css.map */
