﻿:root {
  --red: #bf0000;
  --red-deep: #bf0000;
  --black: #0a0a0a;
  --ink: #1b1b1b;
  --muted: #777;
  --gray: #f4f4f4;
  --line: #e8e8e8;
  --white: #fff;
  --font: var(--font-mukta), var(--font-noto-devanagari), system-ui, sans-serif;
  --display: var(--font-noto-devanagari), var(--font-mukta), system-ui, sans-serif;
}

body {
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
}

.section-wrap {
  width: min(1184px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  min-height: 84px;
  height: auto;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 20;
  overflow: visible;
}

.header-inner {
  height: 84px;
  width: min(1184px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 56px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  letter-spacing: -1px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  min-width: 0;
  flex: 0 1 auto;
}

.brand-logo {
  height: 56px;
  width: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.brand-logo img {
  width: auto;
  height: 56px;
  max-height: 56px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.brand-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-text > span {
  color: var(--red);
}

.brand-pulse {
  display: flex;
  align-items: end;
  gap: 2px;
  height: 23px;
}

.brand-pulse i {
  width: 4px;
  display: block;
  border-radius: 4px;
  background: var(--red);
  font-style: normal;
}

.brand-pulse i:nth-child(1) {
  height: 9px;
}

.brand-pulse i:nth-child(2) {
  height: 19px;
}

.brand-pulse i:nth-child(3) {
  height: 13px;
}

.main-nav {
  height: 100%;
  display: flex;
  gap: 29px;
  align-items: center;
  flex: 1;
}

.main-nav a {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  color: #585858;
  font-size: 15px;
  font-weight: 600;
}

.main-nav a:hover,
.main-nav .active {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 60;
}

.header-inner > .brand {
  margin-left: auto;
}

.header-contact {
  color: #585858;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.header-contact:hover,
.header-contact.active {
  color: var(--red);
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
}

.header-socials a {
  display: inline-flex;
  color: var(--black);
  line-height: 0;
}

.language-switch {
  color: var(--red);
  border: 0;
  padding: 0;
  background: transparent;
  font-size: 17px;
  font-weight: 700;
}

.menu-button {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: none;
  gap: 5px;
  place-content: center;
  padding: 0;
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 50%;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
  z-index: 70;
  flex-shrink: 0;
}

.menu-button span {
  display: block;
  width: 14px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.menu-open .menu-button span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.site-header.menu-open .menu-button span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.mobile-menu-root {
  display: none;
}

.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9000;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9001;
  padding: 0 0 20px;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  max-height: 90%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1184px, calc(100% - 32px));
  margin: 0 auto;
  height: 68px;
}

.mobile-menu-title {
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: var(--black);
  font-size: 26px;
  line-height: 1;
  touch-action: manipulation;
}

.ticker {
  height: 43px;
  display: flex;
  align-items: stretch;
  color: var(--white);
  background: var(--red);
  overflow: hidden;
}

.ticker-label {
  z-index: 1;
  min-width: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.1px;
}

.signal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(191, 0, 0, 0.18);
}

.ticker-window {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: max-content;
  align-items: center;
  will-change: transform;
  animation: scrollTicker 84s linear infinite;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.ticker-sequence {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  white-space: nowrap;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-right: 42px;
}

.ticker-track span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
}

.ticker.paused .ticker-track {
  animation-play-state: paused;
}

.ticker-control {
  width: 50px;
  color: white;
  background: #0b5a2a;
  border: 0;
  font-size: 18px;
}

@keyframes scrollTicker {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.hero {
  padding: 36px 0 40px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 25px;
}

.hero-heading {
  margin-bottom: 27px;
}

.eyebrow {
  color: var(--red);
  display: block;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 9px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
}

h1 {
  color: var(--black);
  font-size: 35px;
  line-height: 1.05;
  letter-spacing: -1.25px;
}

h2 {
  color: var(--black);
  font-size: 29px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-heading > p {
  color: #818181;
  font-size: 13px;
  padding-bottom: 4px;
}

.hero-heading > p span {
  display: inline-block;
  margin: 0 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  vertical-align: 3px;
  background: var(--red);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.03fr) minmax(260px, 0.97fr);
  gap: 22px;
}

.main-story {
  min-height: 453px;
  position: relative;
  color: var(--white);
  border-radius: 3px;
  overflow: hidden;
  text-align: left;
  border: 0;
  padding: 0;
  background: var(--black);
  display: block;
}

.main-story img {
  transition: transform 0.5s ease;
}

.main-story:hover img {
  transform: scale(1.035);
}

.story-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 25%,
    rgba(0, 0, 0, 0.84) 100%
  );
}

.story-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 31px 34px;
}

.badge {
  width: fit-content;
  padding: 4px 10px 3px;
  border-radius: 2px;
  color: var(--red);
  background: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  line-height: 1.2;
  text-transform: uppercase;
}

.story-copy .badge {
  display: block;
  margin-bottom: 14px;
}

.main-story h2 {
  max-width: 700px;
  color: #fff;
  font-size: clamp(26px, 2.55vw, 36px);
  line-height: 1.17;
  letter-spacing: -0.9px;
}

.story-copy p {
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.trending-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid transparent;
  border-image: linear-gradient(
      90deg,
      #ff720e 0%,
      #ff720e 33.333%,
      #ffffff 33.333%,
      #ffffff 66.666%,
      #138808 66.666%,
      #138808 100%
    )
    1;
}

.tricolor-top-border {
  border-top: 2px solid transparent;
  border-image: linear-gradient(
      90deg,
      #ff720e 0%,
      #ff720e 33.333%,
      #ffffff 33.333%,
      #ffffff 66.666%,
      #138808 66.666%,
      #138808 100%
    )
    1;
}

.trending-title {
  padding: 9px 0 10px;
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
}

.thumbnail-story {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  background: transparent;
  text-align: left;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.thumbnail-story:hover h3 {
  color: var(--red);
}

.thumbnail-image {
  height: 75px;
  border-radius: 2px;
  overflow: hidden;
}

.thumbnail-story .badge {
  margin-bottom: 5px;
  font-size: 9px;
  padding: 3px 7px 2px;
  background: #f2f2f2;
}

.thumbnail-story h3 {
  color: var(--black);
  font-size: 16px;
  line-height: 1.22;
  letter-spacing: -0.3px;
  transition: color 0.2s;
}

.latest {
  padding: 0 0 96px;
  border-top: 1px solid var(--line);
}

.text-link {
  padding: 0;
  border: 0;
  color: var(--red);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  margin-left: 4px;
  font-size: 17px;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.standard-card {
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
  text-align: left;
  display: block;
}

.standard-card:hover .standard-img img {
  transform: scale(1.04);
}

.standard-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin-bottom: 13px;
  border-radius: 2px;
  overflow: hidden;
}

.standard-img img {
  transition: transform 0.4s;
}

.card-meta {
  margin-bottom: 5px;
  color: var(--red);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 1px;
}

.standard-card .badge {
  display: block;
  margin-bottom: 5px;
  font-size: 9px;
  padding: 3px 7px 2px;
  background: #f2f2f2;
}

.standard-card h3 {
  color: var(--black);
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.45px;
}

.video-section {
  padding: 48px 0 64px;
  color: white;
  background: var(--red);
}

.video-heading h2 {
  color: white;
}

.live-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.live-label i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(191, 0, 0, 0.2);
  font-style: normal;
}

.video-layout {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(260px, 0.85fr);
  grid-template-rows: auto auto;
  gap: 23px;
  align-items: start;
}

.video-item {
  min-height: 0;
}

.video-item--lead {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.video-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.video-item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.text-link-inverse {
  color: #fff;
}

.video-heading .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.live-player {
  min-height: 385px;
  position: relative;
  padding: 0;
  color: #fff;
  border: 0;
  overflow: hidden;
  background: #000;
  text-align: left;
}

.live-player:hover img {
  transform: scale(1.03);
}

.live-player img {
  transition: transform 0.5s;
}

.live-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(0, 0, 0, 0.85));
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  color: var(--red);
  background: #fff;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 5px 20px #0005;
}

.player-copy {
  position: absolute;
  left: 26px;
  bottom: 21px;
  display: flex;
  flex-direction: column;
}

.player-copy strong {
  font-size: 21px;
}

.player-copy small {
  margin-top: 1px;
  color: #ddd;
  font-size: 12px;
}

.video-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  gap: 12px;
  padding: 0;
  margin: 0;
  text-align: left;
  color: white;
  background: transparent;
  border: 0;
}

.video-card-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 0;
}

.video-card--lead .video-card-copy {
  padding-bottom: 4px;
}

.video-card-img {
  position: relative;
  overflow: hidden;
  flex: none;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-card--lead .video-card-img {
  aspect-ratio: 16 / 9;
}

.video-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card-img--player {
  aspect-ratio: 16 / 9;
}

.video-card-img--player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-card--player .video-card-copy {
  color: inherit;
  text-decoration: none;
}

.video-card-img::after {
  content: "\25B6";
  position: absolute;
  inset: auto auto 6px 7px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  padding-left: 2px;
  color: var(--red);
  border-radius: 50%;
  background: #fff;
  font-size: 9px;
}

.video-card-img--player::after {
  display: none;
}

.video-card h3 {
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
}

.video-card .card-meta {
  color: #fff;
  font-size: 9px;
}

.categories {
  padding: 40px 0 48px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.category-block {
  min-height: 152px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  padding: 19px;
  overflow: hidden;
  color: white;
  text-align: left;
  border: 0;
  border-radius: 2px;
  background: #444;
}

.category-block img {
  position: absolute;
  inset: 0;
  opacity: 0.78;
  transition: transform 0.4s;
}

.category-block:hover img {
  transform: scale(1.05);
}

.category-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.75));
}

.category-block strong,
.category-block span {
  position: relative;
  z-index: 1;
}

.category-block strong {
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.6px;
}

.category-block span {
  margin-top: 4px;
  font-size: 12px;
  color: #eee;
}

.site-footer {
  padding: 35px 0;
  color: #b3b3b3;
  background: #0c0c0c;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand-footer {
  color: white;
  font-size: 18px;
}

.brand-footer .brand-logo,
.brand-footer .brand-logo img {
  height: 28px;
  max-height: 28px;
}

.footer-inner > p {
  font-size: 13px;
}

.footer-link {
  font-size: 13px;
  color: #b3b3b3;
}

.footer-link:hover {
  color: #fff;
}

.footer-meta {
  margin-left: auto;
  font-size: 12px !important;
}

.article-page {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 275px;
  max-width: 1040px;
  margin: 0 auto;
}

.article-main {
  padding: 46px 48px 62px;
}

.article-main .badge {
  display: block;
  margin-bottom: 16px;
  background: color-mix(in srgb, var(--red) 12%, white);
}

.article-main h1 {
  font-size: 43px;
  line-height: 1.12;
}

.article-byline {
  margin: 14px 0 21px;
  color: #777;
  font-size: 14px;
}

.article-main > figure {
  margin: 0 0 24px;
  height: auto;
  max-height: 480px;
  overflow: hidden;
  border-radius: 2px;
}

.article-main > figure img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: 2px;
}

.article-body {
  max-width: 700px;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.85;
}

.article-body::after {
  content: "";
  display: table;
  clear: both;
}

.article-body p + p {
  margin-top: 17px;
}

.article-body img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.article-body figure {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 17px 0;
  overflow: visible;
}

.article-body figcaption {
  display: block;
  margin-top: 8px;
  color: #555;
  font-size: 14px;
  line-height: 1.45;
}

.article-body .alignleft,
.article-body .alignright,
.article-body .aligncenter,
.article-body .wp-block-image,
.article-body .wp-block-image.alignleft,
.article-body .wp-block-image.alignright,
.article-body .wp-block-image.aligncenter {
  float: none;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 17px 0;
  height: auto;
}

.article-body a {
  color: var(--red);
  text-decoration: underline;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 22px 0 10px;
  line-height: 1.3;
  color: var(--black);
}

.article-body ul,
.article-body ol {
  margin: 12px 0;
  padding-left: 1.25em;
}

.article-body blockquote {
  margin: 17px 0;
  padding-left: 14px;
  border-left: 3px solid var(--line);
  color: #555;
}

.article-body .wp-block-embed,
.article-body .wp-block-video,
.article-body .wp-block-embed__wrapper {
  margin: 17px 0;
  max-width: 100%;
}

.article-body .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.article-body iframe,
.article-body video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.article-body .wp-block-embed__wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: auto;
}

.article-author-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.article-author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-profile-avatar {
  display: block;
  width: 140px;
  height: 140px;
  margin: 16px 0 21px;
  border-radius: 2px;
  object-fit: cover;
}

.author-profile-avatar--empty {
  background: #e8e8e8;
}

.author-article-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.author-article-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  align-items: start;
  text-align: left;
}

.author-article-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 2px;
  background: #e8e8e8;
}

.author-article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-article-card-copy h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  color: var(--black);
}

.author-article-card-copy span:last-child {
  display: block;
  margin-top: 6px;
  color: #777;
  font-size: 13px;
}

.article-side {
  padding: 46px 27px;
  background: var(--gray);
}

.article-side h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.side-story {
  display: block;
  padding: 14px 0;
  border-top: 1px solid #ddd;
  color: #222;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
}

.side-story:hover {
  color: var(--red);
}

.side-story-image {
  display: block;
  height: 120px;
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: 2px;
}

.side-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 50;
  padding: 10px 18px;
  color: #fff;
  background: #111;
  border-radius: 4px;
  transform: translate(-50%, 90px);
  opacity: 0;
  transition: 0.25s;
  font-size: 14px;
  pointer-events: none;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

@media (max-width: 1024px) {
  .video-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
    gap: 20px;
  }

  .video-item--lead,
  .video-item:nth-child(2),
  .video-item:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
  }

  .video-card-img,
  .video-card--lead .video-card-img {
    flex: none;
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
}

@media (max-width: 800px) {
  .site-header {
    min-height: 68px;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
  }

  body {
    padding-top: 68px;
  }

  .header-inner {
    height: 68px;
    width: min(1184px, calc(100% - 32px));
    gap: 20px;
  }

  .brand {
    font-size: 15px;
    letter-spacing: -0.6px;
  }

  .brand-pulse {
    height: 18px;
  }

  .brand-pulse i {
    width: 3px;
  }

  .brand-pulse i:nth-child(1) {
    height: 7px;
  }

  .brand-pulse i:nth-child(2) {
    height: 15px;
  }

  .brand-pulse i:nth-child(3) {
    height: 10px;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    flex-shrink: 0;
  }

  .header-contact,
  .header-socials {
    display: none;
  }

  .brand-logo,
  .brand-logo img {
    height: 36px;
    max-height: 36px;
  }

  .menu-button {
    display: grid;
  }

  .mobile-menu-root {
    display: block;
  }

  .mobile-menu-nav,
  .mobile-menu-socials {
    width: min(1184px, calc(100% - 32px));
    margin: 0 auto;
  }

  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: #585858;
    font-size: 15px;
    font-weight: 600;
  }

  .mobile-menu-nav a:hover,
  .mobile-menu-nav a.active {
    color: var(--red);
  }

  .mobile-menu-socials {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 16px;
    color: var(--black);
  }

  .mobile-menu-socials a {
    display: inline-flex;
    color: var(--black);
    line-height: 0;
  }

  .ticker-label {
    min-width: 115px;
    padding: 0 13px;
    font-size: 10px;
  }

  .hero {
    padding: 24px 0 28px;
  }

  .section-wrap {
    width: min(100% - 32px, 1184px);
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .hero-heading > p {
    display: none;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 26px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .main-story {
    min-height: 375px;
  }

  .trending-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 15px;
  }

  .trending-title {
    grid-column: 1 / -1;
  }

  .thumbnail-story {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .thumbnail-image {
    height: 120px;
  }

  .thumbnail-story h3 {
    font-size: 15px;
  }

  .latest {
    padding: 28px 0 72px;
  }

  .latest-grid {
    gap: 20px;
  }

  .standard-card h3 {
    font-size: 17px;
  }

  .video-section {
    padding: 36px 0 45px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    display: block;
  }

  .article-main {
    padding: 35px 24px 40px;
  }

  .article-main h1 {
    font-size: 32px;
  }

  .article-main > figure {
    max-height: 320px;
  }

  .article-main > figure img {
    max-height: 320px;
  }

  .article-side {
    padding: 28px 24px;
  }
}

@media (max-width: 520px) {
  .ticker {
    height: 40px;
  }

  .ticker-label {
    min-width: 104px;
  }

  .ticker-track {
    font-size: 13px;
  }

  .main-story {
    min-height: 350px;
  }

  .story-copy {
    padding: 20px;
  }

  .main-story h2 {
    font-size: 25px;
  }

  .trending-list,
  .latest-grid {
    grid-template-columns: 1fr;
  }

  .thumbnail-story {
    grid-template-columns: 100px 1fr;
  }

  .thumbnail-story .badge {
    display: block;
    margin-bottom: 8px;
  }

  .thumbnail-image {
    height: 70px;
  }

  .standard-card {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 12px;
  }

  .standard-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    margin: 0;
  }

  .standard-card .card-copy {
    align-self: center;
  }

  .standard-card h3 {
    font-size: 16px;
  }

  .author-article-card {
    grid-template-columns: 1fr;
  }

  .category-block {
    min-height: 120px;
    padding: 14px;
  }

  .category-block strong {
    font-size: 20px;
  }

  .footer-inner {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .footer-meta {
    margin-left: 0;
    width: 100%;
  }

  .article-main {
    padding: 30px 20px;
  }

  .article-main h1 {
    font-size: 29px;
  }

  .article-main > figure {
    max-height: 240px;
  }

  .article-main > figure img {
    max-height: 240px;
  }

  .article-body {
    font-size: 17px;
  }

  .side-story-image {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}
