/* ==========================================================================
   News1 (নিউজ১) - Modern Bengali News Portal Design System & Styles
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette - Light Theme with Vibrant Red & Royal Blue Accents */
  --bg-primary: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-subtle: #f1f5f9;
  --bg-accent: #eff6ff;

  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-inverse: #ffffff;

  --brand-red: #dc2626;
  --brand-red-hover: #b91c1c;
  --brand-red-light: #fef2f2;

  --brand-blue: #1d4ed8;
  --brand-blue-hover: #1e40af;
  --brand-blue-light: #eff6ff;

  --brand-gradient: linear-gradient(135deg, #dc2626 0%, #1d4ed8 100%);
  --brand-dark: #0f172a;

  --gold-accent: #d97706;
  --live-red: #ef4444;
  --sports-green: #059669;

  --border-color: #cbd5e1;
  --border-subtle: #e2e8f0;

  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.08);
  --shadow-md: 0 4px 8px -1px rgb(29 78 216 / 0.1), 0 2px 4px -2px rgb(220 38 38 / 0.08);
  --shadow-lg: 0 10px 20px -3px rgb(29 78 216 / 0.12);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.15);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --font-bengali: 'Hind Siliguri', sans-serif;
  --font-english: 'Inter', sans-serif;

  --header-height: 120px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

[data-theme="dark"] {
  --bg-primary: #0b0f19;
  --bg-surface: #151c2c;
  --bg-surface-subtle: #1e293b;
  --bg-accent: #1e1b4b;

  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-inverse: #0f172a;

  --brand-red: #f43f5e;
  --brand-red-hover: #fb7185;
  --brand-red-light: rgba(244, 63, 94, 0.15);

  --border-color: #334155;
  --border-subtle: #1e293b;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.5);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-bengali);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Layout Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Reading Font Size Modifiers */
body.font-size-lg {
  font-size: 18px;
}

body.font-size-sm {
  font-size: 14px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

/* Top Utilities Bar */
.topbar {
  background-color: var(--brand-dark);
  color: #94a3b8;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-item i {
  color: var(--brand-red);
}

.live-tv-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  animation: pulse-glow 2s infinite;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(225, 29, 72, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
  }
}

.theme-toggle-btn,
.font-size-btn,
.icon-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover,
.font-size-btn:hover,
.icon-btn:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}

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

/* Main Header Logo Banner */
.main-header {
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  transition: background-color var(--transition-normal);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.logo-tagline-rotator {
  position: relative;
  height: 18px;
  width: 100%;
  min-width: 130px;
  overflow: hidden;
  margin-top: 3px;
  text-align: center;
}

.logo-tagline-rotator .tagline-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-red, #dc2626);
  white-space: nowrap;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(12px);
  animation: taglineRotate 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

.logo-tagline-rotator .tagline-item:nth-child(1) {
  animation-delay: 0s;
}

.logo-tagline-rotator .tagline-item:nth-child(2) {
  animation-delay: 3s;
}

@keyframes taglineRotate {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  6%,
  44% {
    opacity: 1;
    transform: translateY(0);
  }

  50%,
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

[data-theme="dark"] .logo-tagline-rotator .tagline-item {
  color: #ef4444;
}

.site-logo-img {
  height: 70px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
  border-radius: 10px;
}

.brand-logo:hover .site-logo-img {
  transform: scale(1.02);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #dc2626 0%, #1d4ed8 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.35);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.logo-title span {
  color: var(--brand-red);
}

.logo-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-trigger-btn,
.bookmark-drawer-btn {
  background: var(--bg-surface-subtle);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.search-trigger-btn:hover,
.bookmark-drawer-btn:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: var(--brand-blue-light);
}

/* Category Navigation Bar */
.cat-navbar {
  background-color: var(--bg-surface);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, #dc2626 0%, #1d4ed8 100%) 1;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.08);
  transition: background-color var(--transition-normal);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.nav-menu::-webkit-scrollbar {
  display: none;
}

.nav-link {
  display: inline-block;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  border-bottom: 3px solid transparent;
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: #dc2626;
  border-bottom-color: #dc2626;
  background: linear-gradient(180deg, transparent, rgba(220, 38, 38, 0.06));
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.4rem;
  color: var(--text-primary);
}

/* Breaking News Ticker Bar */
.breaking-ticker-bar {
  background: linear-gradient(90deg, #fef2f2 0%, #eff6ff 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
  font-size: 0.95rem;
}

[data-theme="dark"] .breaking-ticker-bar {
  background: linear-gradient(90deg, #1f1d2b 0%, #172033 100%);
}

.ticker-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.ticker-label {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.ticker-content {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee-scroll 35s linear infinite;
  will-change: transform;
}

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

@keyframes marquee-scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.ticker-item:hover {
  color: #dc2626;
}

.ticker-dot {
  width: 7px;
  height: 7px;
  background-color: #dc2626;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.75);
  animation: ticker-dot-pulse 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes ticker-dot-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.75);
  }

  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(220, 38, 38, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

/* ==========================================================================
   Main Grid Layout & Widgets
   ========================================================================== */

.main-content-layout {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
}

/* Section Header Styling */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #dc2626, #1d4ed8);
  border-radius: 2px;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title i {
  color: #dc2626;
}

.view-all-link {
  font-size: 0.9rem;
  color: #1d4ed8;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.view-all-link:hover {
  text-decoration: underline;
  color: #dc2626;
}

/* Hero News Grid */
.hero-news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.hero-main-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #000;
}

.hero-main-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.85;
}

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

.hero-overlay-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: #fff;
}

.cat-tag {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-headline {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #ffffff;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* Secondary Hero Stack */
.hero-secondary-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-horizontal-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 10px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.news-horizontal-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-red);
}

.news-horizontal-card .card-thumb {
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.news-horizontal-card .card-title {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Category Sections Grid & Containers */
.category-section-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

/* Distinct Category Color Accent Themes */
.category-section-container.theme-state {
  border-top: 4px solid var(--brand-red);
}

.category-section-container.theme-sports {
  border-top: 4px solid #10b981;
}

.category-section-container.theme-sports .section-header::after {
  background: #10b981;
}

.category-section-container.theme-sports .view-all-link {
  color: #10b981;
}

.category-section-container.theme-world {
  border-top: 4px solid #2563eb;
}

.category-section-container.theme-world .section-header::after {
  background: #2563eb;
}

.category-section-container.theme-world .view-all-link {
  color: #2563eb;
}

.category-section-container.theme-entertainment {
  border-top: 4px solid #d97706;
}

.category-section-container.theme-entertainment .section-header::after {
  background: #d97706;
}

.category-section-container.theme-entertainment .view-all-link {
  color: #d97706;
}

.category-section-container.theme-tech {
  border-top: 4px solid #7c3aed;
}

.category-section-container.theme-tech .section-header::after {
  background: #7c3aed;
}

.category-section-container.theme-tech .view-all-link {
  color: #7c3aed;
}

.category-section-container.theme-lifestyle {
  border-top: 4px solid #0d9488;
}

.category-section-container.theme-lifestyle .section-header::after {
  background: #0d9488;
}

.category-section-container.theme-lifestyle .view-all-link {
  color: #0d9488;
}

.cards-2col-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.news-vertical-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.news-vertical-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-red);
}

.card-image-box {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.news-vertical-card:hover .card-image-box img {
  transform: scale(1.05);
}

.card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-body .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.card-body .card-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Sports Section & Scorecard Widget */
.sports-section {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
}

.scorecard-banner {
  background: linear-gradient(135deg, #064e3b, #047857);
  color: #fff;
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.team-score {
  text-align: center;
}

.team-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.team-runs {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fde047;
}

.match-status {
  text-align: center;
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

/* Entertainment Grid */
.entertainment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

/* Video & Gallery Dark Section */
.dark-section-banner {
  background: #0f172a;
  color: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
}

.dark-section-banner .section-title {
  color: #fff;
  border-bottom-color: #334155;
}

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

.video-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: #1e293b;
}

.video-thumb-box {
  position: relative;
  height: 160px;
}

.play-btn-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.play-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.5);
  transition: transform var(--transition-fast);
}

.video-card:hover .play-icon {
  transform: scale(1.15);
}

.video-title {
  padding: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f8fafc;
  line-height: 1.35;
}

/* ==========================================================================
   Sidebar Widgets
   ========================================================================== */

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  bottom: 24px;
  align-self: flex-end;
}

.widget-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-normal);
}

.widget-title {
  font-size: 1.15rem;
  font-weight: 700;
  border-bottom: 2px solid var(--brand-red);
  padding-bottom: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Trending Top 5 List */
.trending-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trending-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trending-rank {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-red);
  font-family: var(--font-english);
  line-height: 1;
  width: 24px;
}

.trending-text {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
}

.trending-text:hover {
  color: var(--brand-red);
}

/* Market & Weather Widget */
.market-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.market-item {
  background: var(--bg-surface-subtle);
  padding: 10px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.market-name {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.market-value {
  font-size: 1rem;
  font-weight: 700;
}

.market-change {
  font-size: 0.75rem;
  font-weight: 600;
}

.market-change.up {
  color: #10b981;
}

.market-change.down {
  color: #ef4444;
}

/* ==========================================================================
   Live Top 10 Stock Market Widget Styles
   ========================================================================== */
.stock-market-widget {
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.stock-widget-header {
  margin-bottom: 12px;
}

.stock-header-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stock-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

[data-theme="dark"] .stock-live-badge {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border-color: rgba(52, 211, 153, 0.3);
}

.stock-live-dot {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: stockPulseDot 1.6s infinite;
}

@keyframes stockPulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.stock-refresh-btn {
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
  transition: all var(--transition-fast);
}

.stock-refresh-btn:hover {
  color: var(--brand-red);
  border-color: var(--brand-red);
  transform: rotate(90deg);
}

.stock-refresh-btn.spinning i {
  animation: stockSpin 0.8s linear infinite;
}

@keyframes stockSpin {
  100% { transform: rotate(360deg); }
}

/* Indices Snapshot (NIFTY & SENSEX) */
.stock-indices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.stock-index-card {
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  transition: transform var(--transition-fast);
}

.stock-index-card:hover {
  transform: translateY(-1px);
}

.index-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3px;
}

.index-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.index-change {
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 3px;
  padding: 1px 4px;
}

.index-change.positive {
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
}

.index-change.negative {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
}

.index-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
}

/* Featured Stock Spotlight Card (Auto Changing) */
.stock-spotlight-card {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 12px 14px 10px 14px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

[data-theme="dark"] .stock-spotlight-card {
  background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
  border-color: rgba(99, 102, 241, 0.2);
}

.spotlight-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.spotlight-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #10b981, #38bdf8);
}

.spotlight-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.spotlight-company {
  display: flex;
  align-items: center;
  gap: 8px;
}

.spotlight-rank {
  background: rgba(255, 255, 255, 0.15);
  color: #f8fafc;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.spotlight-symbol {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #f8fafc;
  line-height: 1.2;
}

.spotlight-name {
  font-size: 0.76rem;
  color: #94a3b8;
  line-height: 1.2;
}

.spotlight-badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.spotlight-badge.positive {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.spotlight-badge.negative {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.3);
}

.spotlight-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.spotlight-label {
  font-size: 0.75rem;
  color: #94a3b8;
}

.spotlight-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.3px;
}

/* Filter Tabs */
.stock-filter-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 10px;
}

.stock-tab-btn {
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 2px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.stock-tab-btn:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
}

.stock-tab-btn.active {
  background: var(--brand-red);
  color: #ffffff;
  border-color: var(--brand-red);
}

/* Stock List Container */
.stock-list-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-width: thin;
}

.stock-list-container::-webkit-scrollbar {
  width: 4px;
}

.stock-list-container::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

.stock-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  background: var(--bg-surface-subtle);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  cursor: pointer;
}

.stock-item-row:hover {
  background: rgba(220, 38, 38, 0.04);
  border-color: rgba(220, 38, 38, 0.2);
  transform: translateX(2px);
}

.stock-item-row.spotlight-active {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.35);
}

[data-theme="dark"] .stock-item-row.spotlight-active {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(52, 211, 153, 0.4);
}

.stock-item-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.stock-item-rank {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 50%;
  background: var(--border-color);
  color: var(--text-primary);
  flex-shrink: 0;
}

.stock-item-row.spotlight-active .stock-item-rank {
  background: #10b981;
  color: #fff;
}

.stock-item-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.stock-item-symbol {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.stock-item-name {
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
}

.stock-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.stock-item-price {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stock-change-pill {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.stock-change-pill.positive {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.stock-change-pill.negative {
  background: rgba(220, 38, 38, 0.12);
  color: #dc2626;
}

[data-theme="dark"] .stock-change-pill.positive {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

[data-theme="dark"] .stock-change-pill.negative {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

/* Real-time Flash Animation */
.stock-flash-green {
  animation: priceGlowGreen 1.2s ease-out;
}

.stock-flash-red {
  animation: priceGlowRed 1.2s ease-out;
}

@keyframes priceGlowGreen {
  0% { background-color: rgba(16, 185, 129, 0.35); }
  100% { background-color: transparent; }
}

@keyframes priceGlowRed {
  0% { background-color: rgba(220, 38, 38, 0.35); }
  100% { background-color: transparent; }
}

.stock-widget-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--border-color);
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Horoscope Zodiac Widget */
.horoscope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.zodiac-item {
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-color);
  padding: 8px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.zodiac-item:hover,
.zodiac-item.active {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}

/* Ad Placement Banner Mockup */
.ad-banner-box {
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  color: #fff;
  padding: 24px 16px;
  border-radius: var(--radius-md);
  text-align: center;
}

.ad-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a5b4fc;
  margin-bottom: 6px;
}

.ad-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.ad-btn {
  background: #f59e0b;
  color: #000;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  display: inline-block;
}

/* ==========================================================================
   Article Detail Page Styles (article.html)
   ========================================================================== */

.article-container {
  max-width: 860px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 24px;
}

.article-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.article-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.article-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 500;
}

.article-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  margin-bottom: 24px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.pub-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.article-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  transition: transform var(--transition-fast);
}

.share-btn:hover {
  transform: scale(1.1);
}

.share-btn.fb {
  background: #1877f2;
}

.share-btn.tw {
  background: #1da1f2;
}

.share-btn.wa {
  background: #25d366;
}

.share-btn.cp {
  background: var(--text-muted);
}

.audio-reader-box {
  background: var(--bg-surface-subtle);
  border-left: 4px solid var(--brand-red);
  padding: 14px 18px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.audio-reader-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

.featured-media-box {
  margin-bottom: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.media-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: center;
  font-style: italic;
}

.article-content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content blockquote {
  border-left: 4px solid var(--brand-red);
  padding: 16px 20px;
  margin: 24px 0;
  background: var(--bg-surface-subtle);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 600;
}

/* ==========================================================================
   Modals & Drawers (Search, Bookmark, Video Popup)
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-surface);
  width: 90%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform var(--transition-fast);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.modal-close-btn {
  font-size: 1.4rem;
  color: var(--text-muted);
}

.search-input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--brand-red);
  padding: 8px 14px;
  border-radius: var(--radius-full);
}

.search-input-group input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1.05rem;
}

/* Side Drawer for Bookmarks */
.side-drawer {
  position: fixed;
  top: 0;
  right: -360px;
  width: 360px;
  height: 100vh;
  background: var(--bg-surface);
  z-index: 1000;
  box-shadow: var(--shadow-xl);
  padding: 24px;
  transition: right var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.side-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.bookmark-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  flex-grow: 1;
}

/* ==========================================================================
   Footer Component
   ========================================================================== */

.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 48px 0 24px 0;
  border-top: 4px solid var(--brand-red);
}

.footer-logo-img,
.site-footer .site-logo-img {
  height: 140px !important;
  max-height: 140px !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.footer-col-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .main-content-layout {
    display: flex;
    flex-direction: column;
  }

  .main-feed-column {
    order: 1;
    width: 100%;
  }

  .sidebar {
    order: 2;
    position: static !important;
    align-self: auto !important;
    width: 100%;
    margin-top: 24px;
  }

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

  .hero-main-card {
    height: 320px !important;
  }
}

@media (max-width: 768px) {
  .topbar-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 6px;
  }

  .theme-label {
    display: none;
  }

  .header-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
  }

  .brand-logo img,
  .site-logo-img {
    max-height: 54px !important;
    height: 54px !important;
    width: auto;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-actions button {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    border-radius: var(--radius-md) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
    box-shadow: var(--shadow-sm);
  }

  .header-actions .search-trigger-btn,
  .header-actions .bookmark-drawer-btn {
    background: #f1f5f9 !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
  }

  [data-theme="dark"] .header-actions .search-trigger-btn,
  [data-theme="dark"] .header-actions .bookmark-drawer-btn {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
  }

  .header-actions button span {
    display: none;
  }

  .cat-navbar {
    position: relative;
    z-index: 999;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--brand-red) !important;
    border: 1px solid var(--brand-red) !important;
    color: #ffffff !important;
    cursor: pointer;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    background: var(--bg-surface);
    border-bottom: 3px solid var(--brand-red);
    box-shadow: var(--shadow-lg);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    padding: 8px 0;
  }

  .nav-menu.mobile-open {
    display: flex !important;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu .nav-link {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-subtle);
    display: block;
    font-size: 1rem;
  }

  /* Ticker Bar on Mobile */
  .breaking-ticker-bar {
    padding: 6px 0;
  }

  .ticker-wrapper {
    gap: 8px;
  }

  .ticker-label {
    padding: 3px 8px;
    font-size: 0.75rem;
  }

  .ticker-item {
    font-size: 0.85rem;
  }

  /* Grids & Cards on Mobile */
  .main-content-layout {
    padding: 16px;
    display: flex !important;
    flex-direction: column !important;
    gap: 24px;
  }

  .main-feed-column {
    order: 1 !important;
    width: 100% !important;
  }

  .sidebar {
    order: 2 !important;
    position: static !important;
    align-self: auto !important;
    width: 100% !important;
  }

  .hero-news-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .hero-main-card {
    height: 280px !important;
  }

  .hero-main-title {
    font-size: 1.25rem !important;
  }

  .hero-secondary-stack {
    gap: 12px;
  }

  .cards-2col-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .entertainment-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .video-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  /* Single Article Page Mobile Styling */
  .article-title {
    font-size: 1.45rem !important;
    line-height: 1.35 !important;
  }

  .article-subtitle {
    font-size: 0.95rem !important;
  }

  .article-meta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .article-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .audio-reader-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
  }

  .audio-reader-box button {
    width: 100%;
    justify-content: center;
  }

  .article-content {
    font-size: 1.05rem !important;
    line-height: 1.8 !important;
  }

  .article-content p {
    margin-bottom: 16px;
  }

  /* Horizontal Cards on Mobile */
  .news-horizontal-card {
    gap: 10px;
  }

  .news-horizontal-card .card-thumb {
    width: 95px !important;
    min-width: 95px !important;
    height: 70px !important;
  }

  .news-horizontal-card .card-title {
    font-size: 0.92rem !important;
    line-height: 1.3 !important;
  }

  /* Category Header Banner on Mobile */
  .article-breadcrumbs {
    font-size: 0.78rem;
  }

  h1 {
    font-size: 1.5rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr repeat(1, 1fr);
    text-align: center;

  }

  .brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ==========================================================================
   Pagination Component & Global SVG Sizing
   ========================================================================== */

svg {
  max-width: 100%;
}

.pagination-wrapper {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination .page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.pagination .page-btn:hover:not(.disabled) {
  background: var(--brand-red);
  color: #ffffff;
  border-color: var(--brand-red);
}

.pagination .page-btn.active {
  background: var(--brand-red);
  color: #ffffff;
  border-color: var(--brand-red);
}

.pagination-wrapper svg,
.pagination svg {
  width: 16px;
  height: 16px;
  display: inline-block;
}