    :root {
      --bg: #f7f8fc;
      --card: #ffffff;
      --ink: #131722;
      --muted: #566174;
      --accent: #2563eb;
      --line: #e5e7eb;
      --soft: #eef2ff;
      --radius: 12px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.5;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    .container {
      width: min(1200px, 92%);
      margin: 0 auto;
      padding: 0 0 56px;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: #fff;
      border-bottom: 1px solid var(--line);
      box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
    }
    .header-inner {
      width: min(1200px, 92%);
      margin: 0 auto;
      min-height: 66px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 10px 0;
    }
    .brand {
      font-weight: 800;
      letter-spacing: 0.2px;
      font-size: 24px;
      color: #0f172a;
      white-space: nowrap;
    }
    .brand span { color: var(--accent); }
    .menu-toggle {
      width: 28px;
      height: 28px;
      background: transparent;
      border: none;
      padding: 0;
      display: none;
      flex-direction: column;
      justify-content: space-around;
      cursor: pointer;
    }
    .menu-toggle span {
      width: 24px;
      height: 2px;
      background: #0f172a;
      display: block;
    }
    nav ul {
      list-style: none;
      display: flex;
      align-items: center;
      margin: 0;
      padding: 0;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    nav a {
      color: var(--muted);
      font-size: 15px;
      padding: 6px 0;
      transition: color 0.2s ease;
    }
    nav a:hover, nav a:focus-visible { color: var(--accent); }

    .hero {
      margin-top: 22px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .hero-image {
      position: relative;
      aspect-ratio: 16 / 10;
      min-height: 300px;
      background: #dbeafe;
    }
    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-content {
      padding: 22px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 10px;
    }
    .badge {
      display: inline-block;
      align-self: flex-start;
      padding: 5px 9px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      color: #fff;
      background: #dc2626;
    }
    .hero-content h1 {
      font-size: 30px;
      line-height: 1.15;
      margin: 0;
      color: #111827;
    }
    .hero-content p {
      color: var(--muted);
      margin: 0;
      max-width: 60ch;
      font-size: 16px;
    }
    .meta {
      display: inline-flex;
      gap: 10px;
      color: var(--muted);
      font-size: 13px;
      margin-top: 6px;
    }
    .hero-cta {
      display: inline-flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 8px;
    }
    .hero-cta .btn {
      font-weight: 600;
      border-radius: 999px;
      padding: 9px 14px;
      font-size: 14px;
      border: 1px solid #dbeafe;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
      background: #1d4ed8;
      color: #ffffff;
    }
    .hero-cta .btn:hover,
    .hero-cta .btn:focus-visible {
      background: #1e40af;
      transform: translateY(-1px);
    }
    .hero-cta .btn.outline {
      background: #ffffff;
      color: #1d4ed8;
      border-color: #bfdbfe;
    }
    .hero-cta .btn.outline:hover,
    .hero-cta .btn.outline:focus-visible {
      background: #eff6ff;
      color: #1e40af;
    }

    .section {
      margin-top: 22px;
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 14px;
    }
    .section-title {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 12px;
      border-bottom: 1px solid var(--line);
      padding-bottom: 10px;
    }
    .section-title h2 {
      margin: 0;
      font-size: 22px;
    }
    .section-title p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }
    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .pill {
      font-size: 13px;
      border: 1px solid var(--line);
      background: #f8fafc;
      padding: 8px 12px;
      border-radius: 999px;
      transition: border-color 0.2s ease, background 0.2s ease;
    }
    .pill:hover, .pill:focus-visible {
      border-color: var(--accent);
      background: #eff6ff;
      color: var(--accent);
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }
    .top-stories .grid {
      grid-template-columns: 1.7fr 1fr 1fr;
    }
    .card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }
    .thumb-wrap {
      width: 100%;
      aspect-ratio: 16 / 10;
      background: #eff6ff;
      min-height: 180px;
    }
    .thumb-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .card-body {
      padding: 12px 14px 14px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1;
    }
    .tag {
      font-size: 11px;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 700;
      letter-spacing: 0.2px;
    }
    .card-body h3 {
      margin: 0;
      font-size: 18px;
      line-height: 1.24;
    }
    .card-body p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .layout {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 16px;
      margin-top: 22px;
      align-items: start;
    }
    .sidebar .widget {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--card);
      margin-bottom: 14px;
      padding: 14px;
    }
    .widget h3 {
      margin: 0 0 10px;
      font-size: 18px;
      border-bottom: 1px solid var(--line);
      padding-bottom: 8px;
    }
    .widget ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 9px;
    }
    .widget li a {
      display: block;
      color: #1e293b;
      border-left: 3px solid #cbd5e1;
      padding-left: 9px;
      font-weight: 600;
      font-size: 14px;
    }
    .widget li a:hover { color: var(--accent); }
    .tag-table {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .tag-group {
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 10px;
      background: #fbfdff;
    }
    .tag-group-title {
      font-weight: 700;
      margin: 0 0 6px;
      font-size: 14px;
    }
    .skeleton-ad {
      border: 1px dashed #cbd5e1;
      height: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #64748b;
      background: repeating-linear-gradient(45deg, #f8fafc 0, #f8fafc 12px, #f1f5f9 12px, #f1f5f9 24px);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }

    footer {
      border-top: 1px solid var(--line);
      margin-top: 24px;
      background: #fff;
    }
    .footer-inner {
      width: min(1200px, 92%);
      margin: 0 auto;
      padding: 16px 0 28px;
      color: #64748b;
      font-size: 14px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: flex-start;
    }
    .footer-links {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-links a { font-size: 13px; }

    @media (max-width: 1024px) {
      .layout { grid-template-columns: 1fr; }
      .hero { grid-template-columns: 1fr; }
      .hero-content h1 { font-size: 26px; }
      .grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      nav ul {
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 10px 24px;
        flex-direction: column;
        align-items: flex-start;
        display: none;
      }
      body.menu-open nav ul { display: flex; }
      .menu-toggle { display: inline-flex; }
      .header-inner { padding: 8px 0; }
      .grid { grid-template-columns: 1fr; }
      .hero-content { padding: 16px; }
      .hero-content h1 { font-size: 22px; }
      .top-stories .grid { grid-template-columns: 1fr; }
      .hero-cta { margin-top: 4px; }
    }
 
 
     
   