/*
Theme Name: Devbhoomi JK News
Theme URI: https://example.com/devbhoomi-jk-news
Author: Codex
Description: Dynamic WordPress news theme converted from the supplied HTML news agency page.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: devbhoomi-jk-news
*/

    :root {
      --red: #D10000;
      --red-dark: #a30000;
      --red-light: #ff2626;
      --navy: #0a1628;
      --navy-mid: #132040;
      --gold: #e8a215;
      --text: #1a1a1a;
      --text-muted: #666;
      --border: #e0e0e0;
      --bg-light: #f5f5f5;
      --bg-white: #fff;
      --ticker-bg: #D10000;
      --breaking-badge: #ff0000;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'DM Sans', sans-serif; background: #f3f3f3; color: var(--text); font-size: 14px; }
    a { text-decoration: none; color: inherit; }
    a:hover { color: var(--red); }
    img { max-width: 100%; display: block; }

    /* ─── TOPBAR ─── */
    .topbar {
      background: var(--navy);
      color: #bfc9d9;
      font-size: 12px;
      padding: 5px 0;
      border-bottom: 2px solid var(--red);
    }
    .topbar a { color: #bfc9d9; margin: 0 8px; }
    .topbar a:hover { color: #fff; }
    .topbar .social-icons a { font-size: 13px; margin: 0 4px; }
    .topbar .social-icons a:hover { color: var(--gold); }
    .topbar .datetime { font-size: 11.5px; letter-spacing: 0.3px; }

    /* ─── BREAKING TICKER ─── */
    .ticker-wrap {
      background: var(--navy-mid);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      overflow: hidden;
      display: flex;
      align-items: center;
      height: 36px;
    }
    .ticker-label {
      background: var(--red);
      color: #fff;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 0 18px;
      height: 100%;
      display: flex;
      align-items: center;
      flex-shrink: 0;
      position: relative;
      z-index: 2;
    }
    .ticker-label::after {
      content: '';
      position: absolute;
      right: -10px;
      top: 0;
      border-left: 10px solid var(--red);
      border-top: 18px solid transparent;
      border-bottom: 18px solid transparent;
    }
    .ticker-track {
      display: flex;
      animation: ticker 45s linear infinite;
      white-space: nowrap;
      padding-left: 20px;
    }
    .ticker-track:hover { animation-play-state: paused; }
    .ticker-track span {
      color: #dce5f0;
      font-size: 12.5px;
      padding: 0 40px 0 0;
    }
    .ticker-track span::before {
      content: '●';
      color: var(--gold);
      margin-right: 10px;
      font-size: 8px;
      vertical-align: middle;
    }
    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ─── HEADER ─── */
    .site-header {
      background: #fff;
      padding: 10px 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.07);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .logo-text {
      font-family: 'Noto Serif', serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: -1px;
      line-height: 1;
    }
    .logo-text span { color: var(--red); }
    .logo-tagline { font-size: 10px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; }
    .header-search { display: flex; align-items: center; }
    .header-search input {
      border: 1.5px solid var(--border);
      border-right: none;
      border-radius: 4px 0 0 4px;
      padding: 8px 14px;
      font-size: 13px;
      width: 220px;
      outline: none;
    }
    .header-search button {
      background: var(--red);
      border: none;
      color: #fff;
      padding: 8px 14px;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
    }
    .header-ad-banner {
      width: 728px; max-width: 100%; height: 90px;
      background: linear-gradient(135deg, #e8f0fe 0%, #fce4ec 100%);
      border: 1px dashed #bbb;
      display: flex; align-items: center; justify-content: center;
      border-radius: 4px; color: #999; font-size: 12px; font-weight: 500;
      letter-spacing: 0.5px;
    }
    /* AD ZONES - Comment labels for WP dev */
    .ad-zone {
      background: #f0f0f0;
      border: 1px dashed #ccc;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #aaa;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      position: relative;
      border-radius: 3px;
    }
    .ad-zone::before {
      content: attr(data-ad);
      font-size: 10px;
      color: #bbb;
    }
    .ad-leaderboard { width: 100%; height: 90px; }
    .ad-banner-mid { width: 100%; height: 90px; margin: 12px 0; }
    .ad-rectangle { width: 100%; height: 250px; margin: 12px 0; }
    .ad-half { width: 100%; height: 120px; margin: 8px 0; }
    .ad-sidebar-top { width: 100%; height: 280px; margin-bottom: 16px; }
    .ad-native { width: 100%; height: 80px; margin: 6px 0; }
    .ad-inline { width: 100%; height: 100px; margin: 10px 0; }
    .ad-native-grid { width: 100%; min-height: 280px; margin: 0; }
    /* actual ad coloring */
    .ad-red    { background: #fff5f5; border-color: #f5c6c6; }
    .ad-blue   { background: #f0f6ff; border-color: #b8d4f8; }
    .ad-green  { background: #f0fff4; border-color: #b2e0c2; }
    .ad-gold   { background: #fffbf0; border-color: #f5dfa0; }

    /* ─── MAIN NAV ─── */
    .main-nav {
      background: #fff;
      border-top: 6px solid #5a0000;
      border-bottom: 1px solid #ededed;
      box-shadow: 0 3px 12px rgba(0,0,0,0.08);
      position: relative;
      z-index: 1002;
    }
    .nav-shell {
      min-height: 58px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .nav-brand {
      color: var(--red);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 17px;
      font-weight: 800;
      line-height: 1;
      white-space: nowrap;
      max-width: 230px;
    }
    .nav-brand:hover { color: var(--red-dark); }
    .nav-brand-mark {
      width: 0;
      height: 0;
      border-left: 11px solid transparent;
      border-right: 11px solid transparent;
      border-bottom: 22px solid var(--red);
      transform: rotate(8deg);
      display: inline-block;
    }
    .nav-menu-scroll {
      display: flex;
      align-items: center;
      gap: 6px;
      flex: 1;
      min-width: 0;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .nav-menu-scroll::-webkit-scrollbar { display: none; }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .nav-actions a {
      color: #333;
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 17px;
    }
    .nav-actions a:hover {
      background: #f1f1f1;
      color: var(--red);
    }
    .main-nav .nav-link {
      color: #333 !important;
      font-size: 13.5px;
      font-weight: 800;
      letter-spacing: 0;
      text-transform: none;
      padding: 18px 10px !important;
      transition: all 0.2s;
      border-bottom: 3px solid transparent;
      margin-bottom: -3px;
      white-space: nowrap;
    }
    .main-nav .nav-link:hover,
    .main-nav .nav-link.active,
    .main-nav .current-menu-item > .nav-link,
    .main-nav .current-menu-ancestor > .nav-link {
      color: var(--red) !important;
      border-bottom-color: var(--red);
    }
    .main-nav .nav-link.hot { color: #ff8888 !important; }
    .nav-more-btn {
      background: none;
      border: none;
      color: var(--red);
      padding: 0 4px;
      font-size: 18px;
      cursor: pointer;
      flex-shrink: 0;
    }
    .mega-nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      border-top: 1px solid #f0f0f0;
      box-shadow: 0 14px 28px rgba(0,0,0,0.14);
      padding: 22px calc(var(--bs-gutter-x, 1.5rem) * 0.5 + 12px) 26px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    }
    .main-nav:hover .mega-nav,
    .main-nav:focus-within .mega-nav,
    .mega-nav:hover {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .mega-panel {
      display: none;
      grid-template-columns: 180px 1fr;
      gap: 26px;
    }
    .mega-panel.is-active {
      display: grid;
    }
    .mega-topic-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .mega-topic-list a {
      color: var(--red);
      font-size: 13.5px;
      font-weight: 800;
    }
    .mega-topic-list .mega-panel-title {
      color: var(--navy);
      font-size: 14px;
      padding-bottom: 7px;
      border-bottom: 2px solid var(--red);
      margin-bottom: 2px;
    }
    .mega-topic-list a:hover { color: var(--navy); }
    .mega-story-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 22px;
    }
    .mega-story {
      color: #333;
      display: block;
      min-width: 0;
    }
    .mega-story img {
      width: 100%;
      height: 118px;
      object-fit: cover;
      border-radius: 4px;
      margin-bottom: 8px;
    }
    .mega-cat {
      color: var(--red);
      display: block;
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 4px;
    }
    .mega-story strong {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      font-family: 'Noto Serif', serif;
      font-size: 13px;
      line-height: 1.45;
      font-weight: 700;
    }
    .mega-story:hover strong { color: var(--red); }
    .nav-live-badge {
      background: var(--red);
      color: #fff;
      font-size: 9px;
      padding: 1px 5px;
      border-radius: 3px;
      margin-left: 4px;
      animation: blink 1.2s ease-in-out infinite;
      vertical-align: middle;
    }
    @keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
    .hamburger-btn { background: none; border: none; color: #fff; font-size: 20px; cursor: pointer; }

    /* ─── SECTION LABELS ─── */
    .section-head {
      display: flex;
      align-items: center;
      margin-bottom: 14px;
      border-bottom: 2px solid var(--red);
      padding-bottom: 8px;
    }
    .section-head h2 {
      font-size: 16px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      color: var(--navy);
    }
    .section-head .cat-badge {
      background: var(--red);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 2px 10px;
      border-radius: 2px;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-right: 10px;
    }
    .see-all {
      margin-left: auto;
      color: var(--red);
      font-size: 12px;
      font-weight: 600;
    }
    .see-all:hover { text-decoration: underline; }

    /* ─── HERO SECTION ─── */
    .front-layout {
      align-items: flex-start;
    }
    .home-topic-rail {
      position: sticky;
      top: 78px;
      background: #fff;
      border-radius: 4px;
      padding: 12px 12px 14px;
      box-shadow: 0 1px 8px rgba(0,0,0,0.05);
      max-height: calc(100vh - 96px);
      overflow: auto;
    }
    .home-topic-rail .rail-title {
      color: var(--navy);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      padding-bottom: 9px;
      border-bottom: 2px solid var(--red);
      margin-bottom: 8px;
    }
    .home-topic-rail a {
      display: block;
      color: var(--red);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.25;
      padding: 7px 0;
      border-bottom: 1px solid #f0f0f0;
    }
    .home-topic-rail a:hover {
      color: var(--navy);
      transform: translateX(2px);
    }
    .abp-hero-wrap {
      background: #fff;
      border-radius: 4px;
      padding: 10px;
      box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    }
    .compact-head {
      margin-bottom: 10px;
      padding-bottom: 8px;
    }
    .hero-card {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
    }
    .hero-card img {
      width: 100%;
      height: 330px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
    }
    .hero-card:hover img { transform: scale(1.03); }
    .hero-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent 0%, rgba(0,0,0,0.85) 100%);
      padding: 60px 20px 20px;
    }
    .hero-overlay .cat { background: var(--red); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 2px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; display: inline-block; }
    .hero-overlay h1 { color: #fff; font-family: 'Noto Serif', serif; font-size: 22px; font-weight: 700; line-height: 1.4; margin-bottom: 6px; }
    .hero-overlay h1:hover { color: var(--gold); }
    .hero-overlay .meta { color: rgba(255,255,255,0.65); font-size: 11px; }
    .hero-overlay .meta i { margin-right: 4px; }
    .hero-brief-card {
      background: var(--red);
      color: #fff;
      border-radius: 4px;
      height: 100%;
      min-height: 330px;
      padding: 14px;
      display: flex;
      flex-direction: column;
    }
    .brief-label {
      background: #fff;
      color: var(--red);
      width: fit-content;
      font-size: 11px;
      font-weight: 900;
      padding: 3px 8px;
      border-radius: 2px;
      margin-bottom: 9px;
      text-transform: uppercase;
      letter-spacing: 0.6px;
    }
    .hero-brief-card ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 0;
    }
    .hero-brief-card li {
      border-top: 1px solid rgba(255,255,255,0.22);
      padding: 10px 0;
    }
    .hero-brief-card li:first-child { border-top: 0; }
    .hero-brief-card a {
      color: #fff;
      font-family: 'Noto Serif', serif;
      font-size: 14px;
      font-weight: 800;
      line-height: 1.42;
    }
    .hero-brief-card a:hover { color: #ffe9a3; }

    /* ─── NEWS CARDS ─── */
    .news-card {
      background: #fff;
      border-radius: 4px;
      overflow: hidden;
      border: 1px solid #eeeeee;
      transition: box-shadow 0.2s, transform 0.2s;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .news-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.12); transform: translateY(-2px); }
    .news-card img { width: 100%; height: 150px; object-fit: cover; display: block; }
    .news-card .card-body { padding: 11px 12px 12px; flex: 1; display: flex; flex-direction: column; }
    .news-card .cat-tag {
      font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px;
      color: var(--red); margin-bottom: 6px;
    }
    .news-card h3 {
      font-family: 'Noto Serif', serif;
      font-size: 14px; font-weight: 800; line-height: 1.48; color: var(--text);
      margin-bottom: 8px; flex: 1;
    }
    .news-card h3:hover { color: var(--red); }
    .news-card .meta { font-size: 11px; color: var(--text-muted); margin-top: auto; display: flex; align-items: center; gap: 10px; }
    .news-card .meta i { font-size: 10px; }

    /* Horizontal card */
    .news-card-h {
      background: #fff;
      border-radius: 4px;
      overflow: hidden;
      display: flex;
      gap: 12px;
      padding: 12px;
      margin-bottom: 10px;
      transition: box-shadow 0.2s;
      align-items: flex-start;
    }
    .news-card-h:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.09); }
    .news-card-h .thumb {
      width: 130px;
      height: 92px;
      flex: 0 0 130px;
      display: block;
      overflow: hidden;
      border-radius: 3px;
      background: #eee;
    }
    .news-card-h img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 3px;
    }
    .news-card-h .info { flex: 1; min-width: 0; }
    .news-card-h .cat-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--red); letter-spacing: 0.6px; }
    .news-card-h h4 { font-family: 'Noto Serif', serif; font-size: 15px; font-weight: 800; line-height: 1.45; color: var(--text); margin: 4px 0; }
    .news-card-h h4:hover { color: var(--red); }
    .news-card-h .meta { font-size: 11px; color: var(--text-muted); }

    /* ─── LIST CARD (Trending/Sidebar) ─── */
    .list-news-item {
      display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border);
    }
    .list-news-item:last-child { border-bottom: none; }
    .list-news-item .num { font-size: 22px; font-weight: 700; color: #e0e0e0; min-width: 28px; line-height: 1; }
    .list-news-item h5 { font-family: 'Noto Serif', serif; font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.45; margin: 0; }
    .list-news-item h5:hover { color: var(--red); }
    .list-news-item .meta { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

    /* ─── VIDEO CARD ─── */
    .video-card {
      background: #fff; border-radius: 4px; overflow: hidden;
      transition: box-shadow 0.2s, transform 0.2s; height: 100%;
    }
    .video-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.12); transform: translateY(-2px); }
    .video-thumb { position: relative; }
    .video-thumb img { width: 100%; height: 155px; object-fit: cover; }
    .play-btn {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 42px; height: 42px; background: rgba(209,0,0,0.88);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
    }
    .play-btn i { color: #fff; font-size: 14px; margin-left: 3px; }
    .video-duration {
      position: absolute; bottom: 6px; right: 8px;
      background: rgba(0,0,0,0.72); color: #fff; font-size: 10px; padding: 1px 6px; border-radius: 2px;
    }
    .video-card .card-body { padding: 10px; }
    .video-card h3 { font-family: 'Noto Serif', serif; font-size: 13px; font-weight: 600; line-height: 1.45; color: var(--text); }
    .video-card h3:hover { color: var(--red); }

    /* ─── SIDEBAR WIDGETS ─── */
    .widget {
      background: #fff;
      border-radius: 4px;
      padding: 14px;
      margin-bottom: 20px;
      box-shadow: 0 1px 8px rgba(0,0,0,0.05);
      max-width: 100%;
      overflow: hidden;
    }
    .widget img,
    .widget iframe,
    .custom-html-widget iframe,
    .textwidget iframe {
      max-width: 100%;
    }
    .widget iframe,
    .custom-html-widget iframe,
    .textwidget iframe {
      width: 100% !important;
      display: block;
    }
    .custom-html-widget,
    .textwidget {
      max-width: 100%;
      overflow-wrap: anywhere;
    }
    .widget-title {
      font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px;
      color: var(--navy); padding-bottom: 10px; border-bottom: 2px solid var(--red); margin-bottom: 14px;
    }
    .tag-cloud a {
      display: inline-block; background: #f2f2f2; color: var(--text);
      font-size: 11px; padding: 4px 10px; border-radius: 20px; margin: 3px;
      border: 1px solid #e8e8e8; transition: all 0.2s;
    }
    .tag-cloud a:hover { background: var(--red); color: #fff; border-color: var(--red); }
    .sidebar-photo-lead {
      background: #1f1f1f;
      color: #fff;
    }
    .sidebar-photo-lead .widget-title {
      color: #fff;
      border-bottom-color: rgba(209,0,0,0.9);
    }
    .photo-lead-card {
      position: relative;
      display: block;
      overflow: hidden;
      border-radius: 5px;
      min-height: 260px;
      background: #111;
    }
    .photo-lead-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      opacity: 0.86;
    }
    .photo-lead-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(transparent 35%, rgba(0,0,0,0.92));
    }
    .photo-lead-card span {
      position: absolute;
      left: 12px;
      top: 12px;
      z-index: 1;
      background: #fff;
      color: var(--navy);
      border-radius: 4px;
      padding: 5px 8px;
      font-size: 12px;
      font-weight: 900;
    }
    .photo-lead-card strong {
      position: absolute;
      left: 12px;
      right: 12px;
      bottom: 12px;
      z-index: 1;
      color: #fff;
      font-family: 'Noto Serif', serif;
      font-size: 17px;
      line-height: 1.42;
    }
    .market-widget {
      border-top: 3px solid #25a05a;
    }
    .market-row {
      display: grid;
      grid-template-columns: 1fr auto auto;
      gap: 8px;
      align-items: center;
      padding: 9px 0;
      border-bottom: 1px solid var(--border);
      font-size: 12px;
    }
    .market-row:last-child { border-bottom: 0; }
    .market-row span { color: var(--text-muted); font-weight: 800; }
    .market-row strong { color: var(--navy); }
    .market-row em {
      color: #14883f;
      font-style: normal;
      font-weight: 900;
    }
    .market-row em.down { color: var(--red); }
    .sidebar-story-list {
      display: grid;
      gap: 10px;
    }
    .sidebar-story-item {
      display: grid;
      grid-template-columns: 82px minmax(0, 1fr);
      gap: 10px;
      align-items: center;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--border);
    }
    .sidebar-story-item:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }
    .sidebar-story-thumb {
      display: block;
      overflow: hidden;
      border-radius: 4px;
      background: #eee;
    }
    .sidebar-story-thumb img {
      width: 82px;
      height: 58px;
      object-fit: cover;
    }
    .sidebar-story-copy {
      min-width: 0;
    }
    .sidebar-story-copy strong {
      color: var(--navy);
      display: -webkit-box;
      font-family: 'Noto Serif', serif;
      font-size: 12.5px;
      font-weight: 800;
      line-height: 1.35;
      overflow: hidden;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }
    .sidebar-story-item:hover strong {
      color: var(--red);
    }
    .sidebar-story-copy em {
      color: var(--text-muted);
      display: block;
      font-size: 10.5px;
      font-style: normal;
      margin-top: 4px;
    }

    /* ─── WEATHER WIDGET ─── */
    .weather-widget { background: linear-gradient(135deg, #0a1628 0%, #1a3a6e 100%); color: #fff; padding: 16px; border-radius: 4px; margin-bottom: 20px; }
    .weather-city { font-size: 13px; opacity: 0.7; }
    .weather-temp { font-size: 40px; font-weight: 700; line-height: 1; }
    .weather-desc { font-size: 12px; opacity: 0.8; }
    .weather-detail span { font-size: 11px; opacity: 0.65; margin-right: 12px; }

    /* ─── STOCK TICKER ─── */
    .stock-bar {
      background: var(--navy-mid); padding: 6px 0; overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.07);
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .stock-track { display: flex; animation: ticker 30s linear infinite; white-space: nowrap; }
    .stock-item { display: inline-flex; align-items: center; gap: 6px; padding: 0 24px; font-size: 11.5px; color: #c8d3e8; }
    .stock-item .s-name { font-weight: 700; color: #fff; }
    .stock-item .s-up { color: #4caf50; }
    .stock-item .s-dn { color: #f44336; }

    /* ─── MAIN CONTENT AREA ─── */
    .main-content { padding: 16px 0 20px; }
    .content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .home-slider-slot {
      background: #fff;
      border-radius: 4px;
      margin-bottom: 14px;
      overflow: hidden;
      box-shadow: 0 1px 8px rgba(0,0,0,0.05);
      height: 280px;
      max-height: 280px;
    }
    .home-slider-slot .widget {
      margin: 0;
      padding: 0;
      box-shadow: none;
      overflow: hidden;
    }
    .home-slider-slot img,
    .home-slider-slot iframe,
    .home-slider-slot .metaslider {
      max-width: 100%;
    }
    .home-slider-slot .metaslider,
    .home-slider-slot .metaslider .flex-viewport,
    .home-slider-slot .metaslider .slides,
    .home-slider-slot .metaslider .slides > li {
      height: 280px !important;
      max-height: 280px;
    }
    .home-slider-slot .metaslider .slides img,
    .home-slider-slot img {
      width: 100% !important;
      height: 280px !important;
      max-height: 280px;
      object-fit: contain;
      object-position: center;
      background: #fff;
      display: block;
      margin: 0 auto;
    }
    .home-slider-slot .metaslider .flex-control-nav {
      bottom: 8px;
    }
    .home-slider-slot .metaslider .flex-direction-nav a {
      transform: scale(0.75);
    }
    .section-block {
      background: #fff;
      border-radius: 4px;
      padding: 12px;
      box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    }
    .media-dark-section {
      background: #151515;
      color: #fff;
      padding: 12px;
      border-top: 3px solid var(--red);
    }
    .media-dark-section .section-head {
      border-bottom-color: rgba(255,255,255,0.12);
    }
    .media-dark-section .section-head h2,
    .media-dark-section .see-all {
      color: #fff;
    }
    .media-dark-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }
    .media-dark-card {
      min-width: 0;
    }
    .media-thumb {
      display: block;
      position: relative;
      overflow: hidden;
      border-radius: 3px;
      background: #0b0b0b;
    }
    .media-thumb img {
      width: 100%;
      height: 130px;
      object-fit: cover;
      opacity: 0.9;
      transition: transform 0.25s;
    }
    .media-dark-card:hover .media-thumb img {
      transform: scale(1.04);
    }
    .media-thumb span {
      position: absolute;
      left: 8px;
      bottom: 8px;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--red);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
    }
    .media-dark-card h3 {
      color: #fff;
      font-family: 'Noto Serif', serif;
      font-size: 13px;
      font-weight: 800;
      line-height: 1.42;
      margin: 8px 0 0;
    }
    .media-dark-card h3 a:hover { color: #ffcf58; }

    /* ─── INFINITE SCROLL ─── */
    #infinite-container .news-batch { padding-top: 10px; }
    .load-more-spinner {
      text-align: center; padding: 30px;
      display: none;
    }
    .load-more-spinner .spinner-border { color: var(--red); }
    #end-message { text-align: center; padding: 30px; display: none; font-size: 13px; color: var(--text-muted); }
    #scroll-trigger { height: 10px; }

    /* ─── FOOTER ─── */
    .pre-footer-ad-wrap {
      background: #fff;
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
      padding: 12px 0;
    }
    .pre-footer-ad-slot {
      background: #fff;
      border-radius: 4px;
    }
    .pre-footer-ad-slot .widget {
      margin: 0;
      padding: 14px 18px;
      box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    }
    .pre-footer-ad-slot .widget-title {
      margin-bottom: 12px;
      padding-bottom: 9px;
    }
    .pre-footer-ad-slot ul {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 20px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .pre-footer-ad-slot li {
      list-style: none;
      display: block;
    }
    .pre-footer-ad-slot a {
      color: var(--navy);
      font-size: 13px;
      font-weight: 700;
    }
    .pre-footer-ad-slot a:hover { color: var(--red); }
    .pre-footer {
      background: var(--navy-mid);
      padding: 34px 0 30px;
      border-top: 3px solid var(--red);
    }
    .footer-brand-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding-bottom: 20px;
      margin-bottom: 24px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-brand-strip p {
      color: #9dafca;
      font-size: 13px;
      line-height: 1.6;
      margin: 6px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(150px, 1fr));
      gap: 28px;
      align-items: start;
    }
    .footer-link-col h5 {
      color: #fff;
      font-size: 12.5px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 13px;
      border-bottom: 1px solid rgba(255,255,255,0.12);
      padding-bottom: 9px;
      position: relative;
    }
    .footer-link-col h5::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -1px;
      width: 42px;
      height: 2px;
      background: var(--red);
    }
    .pre-footer a {
      display: block;
      color: #9dafca;
      font-size: 13px;
      line-height: 1.45;
      padding: 4px 0;
      transition: color 0.2s, transform 0.2s;
    }
    .pre-footer a:hover {
      color: #fff;
      transform: translateX(3px);
    }
    .footer { background: #071323; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.05); }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer p { color: #7185a3; font-size: 12px; margin: 0; }
    .footer a { color: #91a4c1; font-size: 12px; margin: 0 0 0 14px; }
    .footer a:hover { color: #fff; }
    .footer-logo { font-family: 'Noto Serif', serif; font-size: 30px; line-height: 1.1; font-weight: 700; color: #fff; }
    .footer-logo span { color: var(--red); }
    .footer-social-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    /* ─── MISC ─── */
    .bg-white-card { background: #fff; border-radius: 4px; padding: 16px; }
    .live-tag { background: var(--red); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 2px; letter-spacing: 1px; animation: blink 1.2s ease-in-out infinite; vertical-align: middle; margin-right: 4px; }
    .new-tag { background: var(--gold); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 2px; letter-spacing: 1px; vertical-align: middle; margin-right: 4px; }
    .hot-tag { background: #ff6b35; color: #fff; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 2px; letter-spacing: 1px; vertical-align: middle; margin-right: 4px; }
    .divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }

    .notification-overlay {
      position: fixed;
      z-index: 3000;
      inset: 0;
      background: rgba(10, 22, 40, 0.54);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .notification-prompt {
      position: relative;
      width: min(430px, calc(100vw - 40px));
      background: #fff;
      border-top: 3px solid var(--red);
      box-shadow: 0 12px 32px rgba(0,0,0,0.22);
      padding: 24px 24px 20px;
      text-align: center;
    }
    .notify-close {
      position: absolute;
      top: 8px;
      right: 10px;
      background: none;
      border: none;
      color: var(--text-muted);
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
    }
    .notification-icon {
      width: 44px;
      height: 44px;
      margin: 0 auto 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff5f5;
      color: var(--red);
      border-radius: 50%;
      font-size: 18px;
    }
    .notification-prompt strong {
      color: var(--navy);
      display: block;
      font-size: 18px;
      margin-bottom: 8px;
    }
    .notification-prompt p {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.45;
      margin: 0;
    }
    .notification-actions {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 18px;
    }
    .notification-actions button {
      border: 1px solid var(--border);
      background: #fff;
      color: var(--navy);
      font-size: 13px;
      font-weight: 800;
      min-width: 86px;
      padding: 10px 16px;
      border-radius: 3px;
      cursor: pointer;
    }
    .notification-actions .notify-yes {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
    }

    /* Responsive */
    @media(max-width:768px) {
      .content-grid { grid-template-columns: 1fr; }
      .home-slider-slot,
      .home-slider-slot .metaslider,
      .home-slider-slot .metaslider .flex-viewport,
      .home-slider-slot .metaslider .slides,
      .home-slider-slot .metaslider .slides > li {
        height: 180px;
        height: 180px !important;
        max-height: 180px;
      }
      .home-slider-slot .metaslider .slides img,
      .home-slider-slot img {
        height: 180px !important;
        max-height: 180px;
        object-fit: contain;
      }
      .hero-card img { height: 220px; }
      .hero-brief-card { min-height: 0; }
      .media-dark-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .media-thumb img { height: 112px; }
      .hero-overlay h1 { font-size: 16px; }
      .header-ad-banner { display: none; }
      .logo-text { font-size: 26px; }
      .main-nav .nav-link { font-size: 11px; padding: 10px 8px !important; }
      .ad-sidebar-top, .ad-rectangle { height: 160px; }
      .nav-shell { gap: 10px; min-height: 50px; }
      .nav-brand { font-size: 0; max-width: 34px; }
      .nav-brand-mark { border-left-width: 9px; border-right-width: 9px; border-bottom-width: 18px; }
      .nav-actions a { width: 30px; height: 30px; font-size: 14px; }
      .mega-nav { display: none; }
      .notification-overlay { padding: 14px; }
      .notification-prompt { width: 100%; }
      .pre-footer-ad-wrap { padding: 8px 0; }
      .pre-footer-ad-slot .widget { padding: 12px; }
      .pre-footer-ad-slot ul { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px; }
      .pre-footer { padding: 22px 0 20px; }
      .footer-grid { grid-template-columns: 1fr; gap: 18px; }
      .footer-brand-strip { align-items: flex-start; flex-direction: column; }
      .footer-bottom { justify-content: center; text-align: center; }
      .footer a { margin: 0 7px; }
    }

    @media(max-width:991px) {
      .site-header {
        padding: 8px 0;
      }
      .site-header .row {
        flex-wrap: nowrap;
      }
      .site-header .col-auto:last-child {
        margin-left: auto;
        flex-shrink: 0;
      }
      .site-header .logo-tagline {
        display: none;
      }
      .header-search input {
        display: none;
      }
      .header-search button {
        width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 4px;
      }
    }

    @media(max-width:575px) {
      .topbar .d-flex {
        max-width: 100%;
      }
      .site-header .btn,
      .site-header .header-search {
        display: none !important;
      }
      .logo-text {
        max-width: calc(100vw - 32px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
      .footer-logo {
        font-size: 24px;
      }
      .pre-footer-ad-slot ul {
        grid-template-columns: 1fr;
      }
    }

    /* ─── CUSTOM SCROLLBAR ─── */
    ::-webkit-scrollbar { width: 5px; height: 5px; }
    ::-webkit-scrollbar-track { background: #f0f0f0; }
    ::-webkit-scrollbar-thumb { background: #bbb; border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--red); }

    /* ─── PRINT ─── */
    .section-block { margin-bottom: 28px; }

    .main-nav li,
    .topbar li,
    .footer li { list-style: none; display: inline-flex; }
    .pre-footer li { list-style: none; }
    .custom-logo { max-height: 70px; width: auto; }
    .footer-social {
      color:#fff;
      width:32px;
      height:32px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:13px;
      background: var(--red);
    }
    .entry-content {
      background: #fff;
      border: 1px solid var(--border);
      padding: 20px;
      line-height: 1.8;
      font-size: 16px;
    }
    .entry-content p { margin-bottom: 1rem; }
    .entry-content img,
    .entry-content .wp-caption,
    .entry-content figure {
      max-width: 760px;
      width: auto;
    }
    .entry-content img {
      height: auto;
      max-height: 520px;
      object-fit: contain;
      margin: 12px auto;
    }
    .entry-content .aligncenter,
    .entry-content figure {
      margin-left: auto;
      margin-right: auto;
    }
    .entry-content .alignleft {
      margin: 6px 18px 12px 0;
    }
    .entry-content .alignright {
      margin: 6px 0 12px 18px;
    }

    /* ─── ARTICLE DETAIL ─── */
    .article-detail { background: transparent; }
    .single-layout-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 300px;
      gap: 16px;
      align-items: flex-start;
    }
    .single-main-column,
    .single-sidebar-column {
      min-width: 0;
    }
    .single-sidebar-column {
      width: 300px;
      max-width: 300px;
      align-self: flex-start;
    }
    @media(min-width:768px) {
      .single-sidebar-column {
        position: sticky;
        top: 86px;
      }
    }
    @media(max-width:991px) {
      .single-layout-row {
        grid-template-columns: minmax(0, 1fr) 260px;
        gap: 12px;
      }
      .single-sidebar-column {
        width: 260px;
        max-width: 260px;
      }
    }
    @media(max-width:639px) {
      .single-layout-row {
        display: block;
      }
      .single-sidebar-column {
        width: 100%;
        max-width: 100%;
        margin-top: 16px;
      }
    }
    .article-breadcrumb {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 7px;
      color: var(--text-muted);
      font-size: 12px;
      margin-bottom: 12px;
    }
    .article-breadcrumb a { color: var(--navy); font-weight: 600; }
    .article-breadcrumb a:hover { color: var(--red); }
    .article-kicker { margin-bottom: 10px; }
    .article-header {
      background: #fff;
      border-top: 3px solid var(--red);
      padding: 20px;
      margin-bottom: 12px;
    }
    .article-header h1 {
      font-family: 'Noto Serif', serif;
      color: var(--navy);
      font-size: 36px;
      line-height: 1.25;
      font-weight: 700;
      margin: 0;
    }
    .article-standfirst {
      color: var(--text-muted);
      font-size: 17px;
      line-height: 1.65;
      margin: 12px 0 0;
    }
    .article-meta-card {
      background: #fff;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 12px 14px;
      margin-bottom: 12px;
    }
    .article-byline {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .author-avatar img,
    .article-author-box img { border-radius: 50%; }
    .byline-name {
      color: var(--navy);
      font-size: 13px;
      font-weight: 700;
    }
    .byline-name a { color: var(--red); }
    .byline-date {
      color: var(--text-muted);
      font-size: 12px;
      margin-top: 2px;
    }
    .byline-date span { margin-left: 8px; }
    .article-share {
      display: flex;
      align-items: center;
      gap: 7px;
      flex-shrink: 0;
    }
    .article-share a {
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--navy);
      color: #fff;
      border-radius: 3px;
      font-size: 13px;
    }
    .article-share a:hover { background: var(--red); color: #fff; }
    .article-featured-image {
      background: #fff;
      border: 1px solid var(--border);
      padding: 10px;
      margin: 0 0 12px;
      text-align: center;
    }
    .article-featured-image img {
      width: auto;
      max-width: min(100%, 820px);
      max-height: 520px;
      height: auto;
      object-fit: contain;
      margin: 0 auto;
      border-radius: 3px;
    }
    .article-featured-image figcaption {
      color: var(--text-muted);
      font-size: 12px;
      padding-top: 8px;
    }
    .article-inline-ad { margin-bottom: 12px; }
    .article-sponsored-block {
      background: #fff;
      border: 1px solid var(--border);
      padding: 14px;
      margin-top: 12px;
    }
    .ad-section-label {
      color: var(--text-muted);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.2px;
      margin-bottom: 10px;
      text-align: center;
      text-transform: uppercase;
    }
    .article-sponsored-block .ad-zone {
      border-style: dashed;
    }
    .article-tags {
      background: #fff;
      border: 1px solid var(--border);
      padding: 14px;
      margin-top: 12px;
    }
    .article-tags > span {
      display: block;
      color: var(--navy);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 8px;
    }
    .article-author-box {
      background: #fff;
      border-left: 3px solid var(--red);
      display: flex;
      gap: 12px;
      padding: 16px;
      margin-top: 12px;
    }
    .article-author-box h3 {
      font-size: 16px;
      margin: 0 0 4px;
      font-weight: 700;
    }
    .article-author-box p {
      color: var(--text-muted);
      font-size: 13px;
      line-height: 1.6;
      margin: 0;
    }
    .author-label {
      color: var(--red);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 3px;
    }
    .article-nav-links {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 12px;
    }
    .article-nav-links a {
      background: #fff;
      border: 1px solid var(--border);
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 10px;
      text-align: center;
      font-size: 12px;
      font-weight: 700;
      line-height: 1.4;
    }
    .article-nav-links a:hover {
      border-color: var(--red);
      color: var(--red);
    }
    .related-stories { margin-top: 20px; }

    /* ─── COMMENTS ─── */
    .comments-area {
      background: #fff;
      border: 1px solid var(--border);
      border-top: 3px solid var(--red);
      padding: 20px;
      margin-bottom: 28px;
    }
    .comments-head {
      display: flex;
      align-items: center;
      gap: 10px;
      padding-bottom: 12px;
      margin-bottom: 18px;
      border-bottom: 1px solid var(--border);
    }
    .comments-head h2 {
      color: var(--navy);
      font-size: 17px;
      font-weight: 800;
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 0.4px;
    }
    .comment-list {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
    }
    .comment-list .comment {
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
    }
    .comment-list .avatar {
      border-radius: 50%;
      margin-right: 10px;
    }
    .news-comment-respond {
      background: #f8f9fb;
      border: 1px solid #edf0f4;
      padding: 18px;
    }
    .comment-reply-title {
      color: var(--navy);
      font-family: 'Noto Serif', serif;
      font-size: 26px;
      font-weight: 700;
      line-height: 1.25;
      margin: 0 0 8px;
    }
    .comment-reply-title small {
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      margin-left: 8px;
    }
    .comment-notes,
    .logged-in-as {
      color: var(--text-muted);
      font-size: 13px;
      line-height: 1.6;
      margin: 0 0 14px;
    }
    .logged-in-as a,
    .comment-notes a {
      color: var(--red);
      font-weight: 700;
    }
    .news-comment-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .news-comment-form p {
      margin: 0;
    }
    .comment-form-comment,
    .comment-form-url,
    .comment-form-cookies-consent,
    .form-submit,
    .logged-in-as,
    .comment-notes {
      grid-column: 1 / -1;
    }
    .news-comment-form label {
      color: var(--navy);
      display: block;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.5px;
      margin-bottom: 6px;
      text-transform: uppercase;
    }
    .news-comment-form textarea,
    .news-comment-form input[type="text"],
    .news-comment-form input[type="email"],
    .news-comment-form input[type="url"] {
      width: 100%;
      border: 1px solid #d8dde5;
      background: #fff;
      color: var(--text);
      border-radius: 4px;
      font-size: 14px;
      line-height: 1.6;
      padding: 11px 12px;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .news-comment-form textarea {
      min-height: 160px;
      resize: vertical;
    }
    .news-comment-form textarea:focus,
    .news-comment-form input:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(209,0,0,0.08);
    }
    .comment-form-cookies-consent {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      color: var(--text-muted);
      font-size: 13px;
    }
    .comment-form-cookies-consent label {
      color: var(--text-muted);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0;
      line-height: 1.5;
      margin: 0;
      text-transform: none;
    }
    .form-submit .submit {
      background: var(--red);
      border: 1px solid var(--red);
      color: #fff;
      border-radius: 4px;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.4px;
      padding: 11px 18px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    .form-submit .submit:hover {
      background: var(--red-dark);
      transform: translateY(-1px);
    }

    .page-numbers {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 32px;
      height: 32px;
      padding: 0 10px;
      margin: 14px 2px 0;
      background: #fff;
      border: 1px solid var(--border);
      color: var(--navy);
      font-weight: 700;
      font-size: 12px;
    }
    .page-numbers.current,
    .page-numbers:hover { background: var(--red); color: #fff; border-color: var(--red); }
    .screen-reader-text {
      border: 0;
      clip: rect(1px, 1px, 1px, 1px);
      clip-path: inset(50%);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
      word-wrap: normal !important;
    }

    @media(max-width:768px) {
      .article-header { padding: 16px; }
      .article-header h1 { font-size: 25px; }
      .article-standfirst { font-size: 15px; }
      .article-meta-card { align-items: flex-start; flex-direction: column; }
      .article-share { width: 100%; }
      .article-share a { flex: 1; }
      .article-nav-links { grid-template-columns: 1fr; }
      .article-featured-image img,
      .entry-content img {
        max-width: 100%;
        max-height: 340px;
      }
      .entry-content .wp-caption,
      .entry-content figure {
        max-width: 100%;
      }
      .comments-area { padding: 15px; }
      .comments-head { align-items: flex-start; flex-direction: column; }
      .comment-reply-title { font-size: 22px; }
      .news-comment-respond { padding: 14px; }
      .news-comment-form { grid-template-columns: 1fr; }
    }
