/* ============================================================
   News Nation 24x7 — Fast News Portal UI
   Original design · Hindi/English · Mobile-first
   ============================================================ */

:root {
  --portal-black: #0a0e17;
  --portal-navy: #0b1d3a;
  --portal-navy-mid: #132d54;
  --portal-red: #d91f26;
  --portal-red-dark: #b0181e;
  --portal-red-soft: #fff0f1;
  --portal-gray-50: #f7f8fa;
  --portal-gray-100: #eef0f4;
  --portal-gray-200: #dde2ea;
  --portal-gray-500: #6b7a8f;
  --portal-gray-800: #2a3548;
  --portal-live: #00c853;
  --portal-font-hi: "Noto Sans Devanagari", "Source Sans 3", sans-serif;
  --portal-bottom-nav-h: 58px;
}

body.portal-body {
  padding-bottom: var(--portal-bottom-nav-h);
  background: var(--portal-gray-50);
}

@media (min-width: 992px) {
  body.portal-body { padding-bottom: 0; }
}

/* ---- NETWORK TOP BAR ---- */
.portal-network {
  background: var(--portal-black);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  border-bottom: 2px solid var(--portal-red);
}

.portal-network a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  white-space: nowrap;
}

.portal-network a:hover { color: #fff; }

.portal-network .network-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.portal-network .network-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}

.portal-lang-toggle .btn {
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
}

.portal-lang-toggle .btn.active {
  background: var(--portal-red);
  border-color: var(--portal-red);
  color: #fff;
}

.portal-social-mini a {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  font-size: 0.75rem;
}

.portal-social-mini a:hover { background: var(--portal-red); color: #fff; }

.portal-notify-btn {
  position: relative;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.2rem;
}

.portal-notify-btn .badge {
  position: absolute;
  top: -2px;
  right: -4px;
  font-size: 0.55rem;
  padding: 0.2em 0.4em;
  background: var(--portal-red);
}

/* ---- MAIN HEADER ---- */
.portal-header {
  background: var(--portal-navy);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.portal-header .portal-logo img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .portal-header .portal-logo img { height: 50px; max-width: 240px; }
}

.portal-search {
  max-width: 420px;
}

.portal-search .form-control {
  border: none;
  border-radius: 999px 0 0 999px;
  font-size: 0.875rem;
  padding: 0.55rem 1rem;
}

.portal-search .btn {
  border-radius: 0 999px 999px 0;
  background: var(--portal-red);
  border: none;
  color: #fff;
  padding: 0 1rem;
}

.portal-search .btn:hover { background: var(--portal-red-dark); color: #fff; }

.portal-btn-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 2px solid var(--portal-live);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.portal-btn-live .live-dot {
  width: 8px;
  height: 8px;
  background: var(--portal-live);
  border-radius: 50%;
  animation: livePulse 1.2s infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,200,83,0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0,200,83,0); }
}

.portal-btn-follow {
  background: var(--portal-red);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.45rem 1rem;
  border-radius: 4px;
  white-space: nowrap;
}

.portal-btn-follow:hover { background: var(--portal-red-dark); color: #fff; }

/* ---- MAIN NAV ---- */
.portal-nav {
  background: #fff;
  border-bottom: 3px solid var(--portal-red);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1020;
}

.portal-nav .nav-scroll {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.portal-nav .nav-scroll::-webkit-scrollbar { display: none; }

.portal-nav .nav-scroll a {
  display: block;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--portal-gray-800);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color 0.15s, border-color 0.15s;
}

.portal-nav .nav-scroll a:hover,
.portal-nav .nav-scroll a.active {
  color: var(--portal-red);
  border-bottom-color: var(--portal-red);
}

.portal-nav .nav-scroll a.nav-live {
  color: var(--portal-red);
}

body.lang-hi .portal-nav .nav-scroll a,
body.lang-hi .portal-headline,
body.lang-hi h1, body.lang-hi h2, body.lang-hi h3 {
  font-family: var(--portal-font-hi);
}

/* ---- BREAKING TICKER ---- */
.portal-breaking {
  display: flex;
  background: var(--portal-red-soft);
  border-bottom: 1px solid rgba(217,31,38,0.15);
  min-height: 38px;
  overflow: hidden;
}

.portal-breaking .breaking-label {
  background: var(--portal-red);
  color: #fff;
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.portal-breaking .breaking-label .dot {
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: livePulse 1.2s infinite;
}

.portal-breaking .ticker-track {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.portal-breaking .ticker-inner {
  display: flex;
  animation: portalTicker 40s linear infinite;
  white-space: nowrap;
}

.portal-breaking .ticker-inner:hover { animation-play-state: paused; }

.portal-breaking .ticker-inner a {
  padding: 0 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--portal-gray-800);
  text-decoration: none;
}

.portal-breaking .ticker-inner a:hover { color: var(--portal-red); }

@keyframes portalTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- TRENDING CHIPS ---- */
.portal-trending {
  background: #fff;
  border-bottom: 1px solid var(--portal-gray-200);
  padding: 0.6rem 0;
}

.portal-trending .trending-label {
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--portal-red);
  white-space: nowrap;
}

.portal-trending .chip-scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.15rem 0;
}

.portal-trending .chip-scroll::-webkit-scrollbar { display: none; }

.portal-trend-chip {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--portal-gray-100);
  border: 1px solid var(--portal-gray-200);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--portal-gray-800);
  text-decoration: none;
  white-space: nowrap;
}

.portal-trend-chip:hover {
  background: var(--portal-red);
  border-color: var(--portal-red);
  color: #fff;
}

/* ---- SECTION TITLES ---- */
.portal-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--portal-navy);
  position: relative;
}

.portal-section-title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--portal-red);
}

.portal-section-title h2 {
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--portal-navy);
}

.portal-section-title a {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--portal-red);
  text-decoration: none;
}

/* ---- LEAD STORY ---- */
.portal-lead {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.portal-lead img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.portal-lead .lead-body { padding: 1rem 1.25rem 1.25rem; }

.portal-lead h1,
.portal-lead .lead-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  line-height: 1.3;
  margin: 0.5rem 0;
}

.portal-lead h1 a,
.portal-lead .lead-title a {
  color: var(--portal-black);
  text-decoration: none;
}

.portal-lead h1 a:hover { color: var(--portal-red); }

.portal-side-story {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--portal-gray-200);
}

.portal-side-story:last-child { border-bottom: none; }

.portal-side-story img {
  width: 100px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.portal-side-story h3 {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.portal-side-story h3 a {
  color: var(--portal-gray-800);
  text-decoration: none;
}

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

/* ---- NEWS LIST ROW ---- */
.portal-news-row {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--portal-gray-200);
  background: #fff;
}

.portal-news-row img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.portal-news-row h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0.25rem 0;
}

.portal-news-row h3 a { color: var(--portal-black); text-decoration: none; }
.portal-news-row h3 a:hover { color: var(--portal-red); }

.portal-meta {
  font-size: 0.75rem;
  color: var(--portal-gray-500);
}

.portal-cat-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  background: var(--portal-navy);
  color: #fff;
  border-radius: 2px;
}

.portal-cat-badge.red { background: var(--portal-red); }

/* ---- NUMBERED LIST ---- */
.portal-ranked {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: rank;
}

.portal-ranked li {
  counter-increment: rank;
  display: flex;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--portal-gray-200);
}

.portal-ranked li::before {
  content: counter(rank);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--portal-red);
  min-width: 1.5rem;
  line-height: 1.2;
}

.portal-ranked a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--portal-gray-800);
  text-decoration: none;
  line-height: 1.4;
}

.portal-ranked a:hover { color: var(--portal-red); }

/* ---- CATEGORY GRID CARD ---- */
.portal-cat-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  height: 100%;
}

.portal-cat-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.portal-cat-card .card-body { padding: 0.75rem; }

.portal-cat-card h4 {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.portal-cat-card h4 a { color: var(--portal-black); text-decoration: none; }
.portal-cat-card h4 a:hover { color: var(--portal-red); }

/* ---- VIDEO / WEB STORY / PHOTO ---- */
.portal-video-card,
.portal-webstory-card,
.portal-photo-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.portal-video-card img,
.portal-webstory-card img,
.portal-photo-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.portal-webstory-card img { aspect-ratio: 9/16; }

.portal-photo-card img { aspect-ratio: 4/3; }

.portal-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
}

.portal-play-icon span {
  width: 44px;
  height: 44px;
  background: var(--portal-red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.portal-duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
}

.portal-video-card .caption,
.portal-webstory-card .caption {
  padding: 0.65rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
}

.portal-video-card .caption a,
.portal-webstory-card .caption a {
  color: var(--portal-black);
  text-decoration: none;
}

/* ---- LIVE TV BLOCK ---- */
.portal-live-block {
  background: linear-gradient(135deg, var(--portal-navy) 0%, var(--portal-navy-mid) 100%);
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
}

.portal-live-block .live-player {
  aspect-ratio: 16/9;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.portal-live-block .live-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--portal-red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  text-transform: uppercase;
}

/* ---- AD SLOT ---- */
.portal-ad {
  background: var(--portal-gray-100);
  border: 1px dashed var(--portal-gray-200);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--portal-gray-500);
  font-size: 0.7rem;
  min-height: 90px;
  margin: 1rem 0;
}

.portal-ad.tall { min-height: 250px; }
.portal-ad.leaderboard { min-height: 90px; }

/* ---- SIDEBAR PANEL ---- */
.portal-sidebar-box {
  background: #fff;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  border-top: 3px solid var(--portal-red);
}

.portal-sidebar-box h3 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--portal-navy);
  margin-bottom: 0.75rem;
}

/* ---- ARTICLE PAGE ---- */
.portal-article-head h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--portal-black);
}

.portal-font-controls .btn {
  width: 32px;
  height: 32px;
  padding: 0;
  font-weight: 800;
  font-size: 0.8rem;
  border: 1px solid var(--portal-gray-200);
}

.portal-article-body { line-height: 1.85; color: var(--portal-gray-800); }
.portal-article-body.font-sm { font-size: 0.9375rem; }
.portal-article-body.font-md { font-size: 1.0625rem; }
.portal-article-body.font-lg { font-size: 1.1875rem; }

.portal-tag-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.portal-tag-list a {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  background: var(--portal-gray-100);
  border-radius: 999px;
  color: var(--portal-gray-800);
  text-decoration: none;
}

.portal-tag-list a:hover { background: var(--portal-red); color: #fff; }

.portal-comment {
  background: #fff;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--portal-gray-200);
}

/* ---- MOBILE BOTTOM NAV ---- */
.portal-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--portal-bottom-nav-h);
  background: #fff;
  border-top: 1px solid var(--portal-gray-200);
  display: flex;
  z-index: 1030;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}

@media (min-width: 992px) {
  .portal-bottom-nav { display: none; }
}

.portal-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--portal-gray-500);
  text-decoration: none;
  padding: 0.35rem 0;
}

.portal-bottom-nav a i { font-size: 1.2rem; }

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

/* ---- OFFCANVAS DRAWER ---- */
.portal-drawer {
  background: var(--portal-navy);
  width: min(320px, 90vw);
}

.portal-drawer .nav-link {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
}

.portal-drawer .nav-link:hover,
.portal-drawer .nav-link.active {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* ---- LOGIN PAGE ---- */
.portal-auth-card {
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 2rem;
  border-top: 4px solid var(--portal-red);
}

.portal-social-login .btn {
  font-weight: 600;
  font-size: 0.875rem;
}

/* ---- CATEGORY HERO ---- */
.portal-category-hero {
  background: linear-gradient(135deg, var(--portal-navy) 0%, var(--portal-navy-mid) 100%);
  color: #fff;
  padding: 2.5rem 0;
  margin-bottom: 1.5rem;
}

.portal-category-hero h1 {
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.portal-category-hero .breadcrumb-item a {
  color: rgba(255,255,255,0.85);
}

.portal-category-hero .breadcrumb-item.active {
  color: rgba(255,255,255,0.65);
}

.portal-category-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.5);
}

/* ---- FILTER CHIPS ---- */
.portal-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.portal-filter-chip,
a.portal-filter-chip,
button.portal-filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid var(--portal-gray-200);
  background: #fff;
  color: var(--portal-gray-800);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.portal-filter-chip:hover,
a.portal-filter-chip:hover {
  border-color: var(--portal-red);
  color: var(--portal-red);
}

.portal-filter-chip.active,
a.portal-filter-chip.active,
button.portal-filter-chip.active {
  background: var(--portal-red);
  border-color: var(--portal-red);
  color: #fff;
}

/* ---- SHARE BUTTONS ---- */
.portal-share-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.portal-share-btns a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--portal-gray-200);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--portal-gray-800);
  text-decoration: none;
  background: #fff;
}

.portal-share-btns a:hover {
  border-color: var(--portal-red);
  color: var(--portal-red);
  background: var(--portal-red-soft);
}

/* ---- LIVE TV SCHEDULE ---- */
.portal-schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.portal-schedule-list li {
  display: flex;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--portal-gray-200);
}

.portal-schedule-list li:last-child { border-bottom: none; }

.portal-schedule-list li.now {
  background: var(--portal-red-soft);
  margin: 0 -0.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-radius: 6px;
  border-bottom: none;
}

.portal-schedule-list .time {
  font-weight: 800;
  color: var(--portal-red);
  min-width: 3.5rem;
  font-size: 0.875rem;
}

/* ---- WEB STORY VIEWER ---- */
.portal-story-viewer {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.portal-story-progress {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  display: flex;
  gap: 0.35rem;
  z-index: 3;
}

.portal-story-progress span {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
}

.portal-story-progress span.done { background: rgba(255,255,255,0.85); }
.portal-story-progress span.active { background: var(--portal-red); }

.portal-story-viewer img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}

.portal-story-viewer .story-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
}

.portal-story-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.portal-story-nav:hover { background: rgba(255,255,255,0.35); }
.portal-story-nav.prev { left: 0.5rem; }
.portal-story-nav.next { right: 0.5rem; }

@media (max-width: 991.98px) {
  .portal-news-row { flex-direction: column; }
  .portal-news-row img { width: 100%; height: auto; aspect-ratio: 16/9; }
}
