/* ==========================================================================
   PATRIKA & LIVEMINT STYLE CLEAN EDITORIAL DESIGN SYSTEM
   100% Authentic Indian Media Portal (Clean, High-Contrast, Zero Clutter)
   ========================================================================== */

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

:root {
  --bg-page: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-card: #ffffff;

  /* Classic Newspaper Typography */
  --text-headline: #111827;      /* Pure sharp black */
  --text-body: #374151;          /* Highly legible editorial grey */
  --text-muted: #6b7280;         /* Timestamp grey */
  --text-tag: #4b5563;

  /* Identity Colors */
  --brand-saffron: #e11d48;      /* Breaking red / Patrika style highlight */
  --brand-green: #15803d;        /* Trending rank green */
  --brand-blue: #0284c7;

  /* Newspaper Dividers */
  --border-divider: #e5e7eb;
  --border-dark: #111827;

  /* Font Families */
  --font-hindi: 'Mukta', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --max-width: 1280px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-hindi);
  background-color: var(--bg-page);
  color: var(--text-headline);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

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

/* Category Tag */
.meta-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-tag-category {
  color: #4b5563;
  font-weight: 700;
}
