   :root {
      --yellow: #f5c400;
      --yellow-dark: #d7aa00;
      --black: #111111;
      --ink: #202020;
      --muted: #666666;
      --line: #d8d8d8;
      --soft: #f2f2f2;
      --paper: #ffffff;
      --red: #c8102e;
      --blue: #0057a8;
      --green: #137a45;
      --max: 1220px;
      --shadow: 0 6px 22px rgba(0,0,0,.11);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: #e9e9e9;
      color: var(--ink);
      font-family: Roboto, Arial, Helvetica, sans-serif;
      line-height: 1.45;
    }
    body.modal-open { overflow: hidden; }
    img { display: block; width: 100%; }
    a { color: inherit; }
    button, input, select { font: inherit; }
    button { cursor: pointer; }
    .wrap { width: min(var(--max), calc(100% - 30px)); margin-inline: auto; }
    .skip-link {
      position: fixed; top: 8px; left: 8px; z-index: 9999;
      background: #fff; color: #000; padding: 10px 14px; border: 3px solid #000;
      transform: translateY(-160%);
    }
    .skip-link:focus { transform: translateY(0); }
    :focus-visible { outline: 3px solid #2a6fdb; outline-offset: 3px; }

    .utility {
      background: var(--black);
      color: #fff;
      font-size: 13px;
      border-bottom: 1px solid #3a3a3a;
    }
    .utility-row {
      min-height: 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
    }
    .utility-left, .utility-links { display: flex; align-items: center; gap: 16px; }
    .utility-links a { text-decoration: none; color: #fff; }
    .utility-links a:hover { color: var(--yellow); }
    .date-stamp { color: var(--yellow); font-weight: 800; white-space: nowrap; }
    .utility-divider { width: 1px; height: 16px; background: #4a4a4a; flex: 0 0 auto; }
    .weather-compact {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 28px;
      color: #fff;
      font-weight: 800;
      white-space: nowrap;
    }
    .weather-icon { width: 22px; text-align: center; color: var(--yellow); font-size: 18px; line-height: 1; }
    .weather-temp { color: #fff; }
    .weather-location, .weather-condition { color: #cfcfcf; font-weight: 500; }
    .weather-condition::before { content: "·"; margin-right: 7px; color: #777; }

    .masthead {
      background: var(--yellow);
      border-bottom: 1px solid #c79d00;
    }
    .masthead-row {
      min-height: 166px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 25px;
    }
    .brand {
      text-decoration: none;
      color: #050505;
      display: inline-flex;
      align-items: center;
      min-width: 0;
    }
    .brand-logo {
      width: clamp(255px, 31vw, 350px);
      height: auto;
      object-fit: contain;
      object-position: left center;
    }
    .brand-text-fallback {
      color: #050505;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(34px, 5vw, 68px);
      font-weight: 900;
      line-height: .9;
      letter-spacing: -0.05em;
    }
    .masthead-actions { display: flex; align-items: center; gap: 10px; }
    .header-button {
      border: 2px solid #111;
      background: transparent;
      color: #111;
      font-weight: 900;
      text-transform: uppercase;
      font-size: 12px;
      padding: 12px 15px;
      text-decoration: none;
    }
    .header-button.solid { background: #111; color: #fff; }
    .header-button:hover { transform: translateY(-1px); }

    .primary-nav {
      background: var(--black);
      color: #fff;
      border-bottom: 4px solid var(--yellow);
      position: sticky;
      top: 0;
      z-index: 90;
    }
    .nav-row { display: flex; align-items: stretch; min-height: 50px; }
    .menu-toggle {
      display: none;
      border: 0;
      background: var(--yellow);
      color: #000;
      font-weight: 900;
      padding: 0 16px;
    }
    .nav-list {
      display: flex;
      align-items: stretch;
      flex-wrap: nowrap;
      overflow-x: auto;
      list-style: none;
      padding: 0;
      margin: 0;
      scrollbar-width: none;
    }
    .nav-list::-webkit-scrollbar { display: none; }
    .nav-list a, .nav-list button {
      min-height: 50px;
      display: flex;
      align-items: center;
      border: 0;
      border-right: 1px solid #333;
      background: transparent;
      color: #fff;
      text-decoration: none;
      padding: 0 15px;
      font-family: "Roboto Condensed", Arial, sans-serif;
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .nav-list a:hover, .nav-list button:hover, .nav-list .active {
      background: #2b2b2b;
      color: var(--yellow);
    }

    .breaking-bar { background: var(--red); color: #fff; }
    .breaking-row { display: flex; min-height: 46px; align-items: stretch; overflow: hidden; }
    .breaking-label {
      align-self: stretch;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      background: #8f0018;
      padding: 0 17px;
      font-family: "Roboto Condensed", Arial, sans-serif;
      font-weight: 900;
      letter-spacing: 1px;
      text-transform: uppercase;
      position: relative;
      z-index: 2;
    }
    .breaking-copy {
      min-width: 0;
      overflow: hidden;
      white-space: nowrap;
      font-weight: 700;
      line-height: 1.2;
      display: flex;
      align-items: center;
      align-self: stretch;
      flex: 1 1 auto;
      position: relative;
    }
    .breaking-track {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
      width: max-content;
      will-change: transform;
      transform: translate3d(0, 0, 0);
    }
    .breaking-segment {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      gap: 42px;
      min-height: 46px;
      padding: 0 42px 0 18px;
    }
    .breaking-text { display: inline-block; }
    .breaking-separator {
      color: #ffccd5;
      font-size: 9px;
      line-height: 1;
      flex: 0 0 auto;
    }

    .page-shell { background: var(--paper); min-height: 100vh; }
    .ad-slot {
      margin: 22px auto;
      min-height: 92px;
      display: grid;
      place-items: center;
      border: 1px solid #d3d3d3;
      background: #fafafa;
      color: #8a8a8a;
      text-align: center;
      font-size: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .ad-slot strong { display: block; color: #555; margin-bottom: 3px; }

    [data-content-slot] { position: relative; }
    [data-content-slot]::before {
      content: attr(data-content-slot);
      position: absolute;
      z-index: 3;
      top: 8px;
      left: 8px;
      padding: 3px 6px;
      background: rgba(17,17,17,.82);
      color: #fff;
      font-size: 9px;
      font-weight: 900;
      letter-spacing: .7px;
      text-transform: uppercase;
      opacity: 0;
      pointer-events: none;
    }
    body.show-slot-labels [data-content-slot]::before { opacity: 1; }
    .feed-status {
      margin-left: auto;
      color: var(--muted);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .5px;
    }

    .section { padding: 10px 0 34px; }
    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      border-top: 5px solid var(--black);
      border-bottom: 1px solid var(--line);
      padding: 11px 0 9px;
      margin-bottom: 18px;
    }
    .section-title {
      margin: 0;
      font-family: "Roboto Condensed", Arial, sans-serif;
      font-size: clamp(25px, 4vw, 36px);
      font-weight: 900;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: -.7px;
    }
    .section-link {
      font-size: 13px;
      font-weight: 900;
      text-decoration: none;
      text-transform: uppercase;
      border-bottom: 3px solid var(--yellow);
    }

    .lead-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.75fr) minmax(250px, .9fr) minmax(260px, .8fr);
      gap: 22px;
    }
    .lead-story, .secondary-story, .news-card, .event-card, .support-card, .directory-card {
      background: #fff;
    }
    .story-link { display: block; text-decoration: none; }
    .story-image-wrap { position: relative; overflow: hidden; background: #ddd; }
    .story-image-wrap img { height: 100%; object-fit: cover; transition: transform .3s ease; }
    .story-link:hover img { transform: scale(1.025); }
    .lead-story .story-image-wrap { aspect-ratio: 16/9; }
    .secondary-story .story-image-wrap { aspect-ratio: 16/8.4; }
    .image-label {
      position: absolute;
      left: 0;
      bottom: 0;
      background: rgba(0,0,0,.82);
      color: #fff;
      padding: 5px 8px;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .6px;
      text-transform: uppercase;
    }
    .story-kicker {
      display: inline-block;
      color: var(--red);
      font-family: "Roboto Condensed", Arial, sans-serif;
      font-size: 12px;
      font-weight: 900;
      margin: 11px 0 5px;
      text-transform: uppercase;
      letter-spacing: .6px;
    }
    .story-kicker.black { color: #111; }
    .lead-headline, .secondary-headline, .card-headline {
      font-family: "Roboto Condensed", Arial, sans-serif;
      margin: 0;
      color: #171717;
      line-height: 1.05;
      letter-spacing: -.45px;
    }
    .lead-headline { font-size: clamp(31px, 4.3vw, 52px); }
    .secondary-headline { font-size: 24px; }
    .story-summary { margin: 10px 0 0; color: #555; font-size: 16px; }
    .story-meta { margin-top: 10px; color: #777; font-size: 12px; font-weight: 700; }
    .secondary-stack { display: grid; gap: 22px; align-content: start; }
    .secondary-story + .secondary-story { padding-top: 20px; border-top: 1px solid var(--line); }

    .latest-panel { border-left: 1px solid var(--line); padding-left: 20px; }
    .panel-title {
      margin: 0 0 8px;
      font-family: "Roboto Condensed", Arial, sans-serif;
      font-size: 24px;
      font-weight: 900;
      text-transform: uppercase;
      border-bottom: 5px solid var(--yellow);
      padding-bottom: 8px;
    }
    .latest-list { list-style: none; padding: 0; margin: 0; }
    .latest-item { border-bottom: 1px solid var(--line); padding: 13px 0; }
    .latest-item button {
      width: 100%; border: 0; background: transparent; padding: 0; text-align: left;
      color: #202020; font-weight: 800; line-height: 1.25;
    }
    .latest-item button:hover { color: var(--red); }
    .latest-time { display: block; margin-top: 5px; color: #777; font-size: 11px; font-weight: 700; }

    .category-toolbar {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }
    .filter-button {
      border: 1px solid #bbb;
      background: #fff;
      color: #222;
      padding: 8px 11px;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }
    .filter-button:hover, .filter-button.active { background: var(--black); color: var(--yellow); border-color: var(--black); }

    .news-layout { display: grid; grid-template-columns: minmax(0, 2fr) 330px; gap: 30px; }
    .news-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 22px; }
    .news-card { border-bottom: 1px solid var(--line); padding-bottom: 18px; }
    .news-card .story-image-wrap { aspect-ratio: 16/9; }
    .card-headline { font-size: 25px; }
    .card-summary { margin: 8px 0 0; color: #555; font-size: 14px; }
    .tag-row { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; margin-top: 9px; }
    .tag {
      display: inline-block;
      background: #eeeeee;
      color: #333;
      font-size: 10px;
      font-weight: 900;
      padding: 4px 6px;
      text-transform: uppercase;
      letter-spacing: .4px;
    }
    .tag.crime { background: #ffe7ec; color: #9b0020; }
    .tag.demo { background: #fff1a6; color: #4c3b00; }

    .side-rail { display: grid; gap: 20px; align-content: start; }
    .rail-box { border-top: 5px solid var(--black); background: #f4f4f4; padding: 17px; }
    .rail-box.yellow { background: var(--yellow); }
    .rail-box.red { border-top-color: var(--red); background: #fff; border-left: 1px solid var(--line); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .rail-title {
      margin: 0 0 12px;
      font-family: "Roboto Condensed", Arial, sans-serif;
      font-size: 23px;
      line-height: 1;
      font-weight: 900;
      text-transform: uppercase;
    }
    .rail-copy { margin: 0 0 13px; color: #444; font-size: 14px; }
    .rail-input {
      width: 100%; min-height: 43px; border: 1px solid #8f8f8f; background: #fff; padding: 9px 10px; margin-bottom: 8px;
    }
    .rail-button {
      width: 100%; border: 0; background: #111; color: var(--yellow); padding: 12px; font-weight: 900; text-transform: uppercase;
    }
    .rail-button:hover { background: #2a2a2a; }

    .report-box {
      border: 4px solid var(--red);
      background: #fff;
      padding: 18px;
    }
    .report-box h3 {
      margin: 0 0 6px;
      color: var(--red);
      font-family: "Roboto Condensed", Arial, sans-serif;
      font-size: 27px;
      line-height: 1;
      text-transform: uppercase;
    }
    .report-actions { display: grid; gap: 8px; margin-top: 13px; }
    .report-action {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      border: 1px solid #cfcfcf;
      padding: 10px 11px;
      text-decoration: none;
      font-size: 13px;
      font-weight: 900;
    }
    .report-action:hover { border-color: var(--red); }
    .report-note { margin: 11px 0 0; color: #555; font-size: 12px; }
    .incident-ref { display: grid; grid-template-columns: 1fr auto; margin-top: 12px; }
    .incident-ref input { min-width: 0; border: 1px solid #999; padding: 9px; }
    .incident-ref button { border: 0; background: var(--red); color: #fff; font-weight: 900; padding: 0 12px; }

    .whats-on { background: #111; color: #fff; padding: 34px 0 40px; }
    .whats-on .section-head { border-top-color: var(--yellow); border-bottom-color: #484848; }
    .whats-on .section-link { color: #fff; }
    .event-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
    .event-filter {
      border: 1px solid #666; background: transparent; color: #fff; padding: 9px 12px; font-size: 12px; font-weight: 900; text-transform: uppercase;
    }
    .event-filter.active, .event-filter:hover { background: var(--yellow); color: #000; border-color: var(--yellow); }
    .events-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
    .event-card { color: #111; min-width: 0; }
    .event-card img { aspect-ratio: 16/9; object-fit: cover; }
    .event-body { padding: 14px; }
    .event-date {
      color: var(--red); font-family: "Roboto Condensed", Arial, sans-serif; font-size: 13px; font-weight: 900; text-transform: uppercase;
    }
    .event-card h3 { margin: 4px 0 8px; font-family: "Roboto Condensed", Arial, sans-serif; font-size: 22px; line-height: 1.05; }
    .event-facts { display: grid; gap: 3px; font-size: 12px; color: #4c4c4c; }
    .event-cta {
      display: inline-block; margin-top: 11px; border-bottom: 3px solid var(--yellow-dark); font-size: 12px; font-weight: 900; text-decoration: none; text-transform: uppercase;
    }

    .support-intro { max-width: 850px; color: #4d4d4d; margin-top: -7px; margin-bottom: 18px; }
    .support-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
    .support-card { border: 1px solid var(--line); border-top: 5px solid var(--green); padding: 17px; }
    .support-card.women { border-top-color: #8d2c83; }
    .support-card.carers { border-top-color: var(--blue); }
    .support-card.crisis { border-top-color: var(--red); }
    .support-card h3 { margin: 0 0 7px; font-family: "Roboto Condensed", Arial, sans-serif; font-size: 22px; line-height: 1.1; }
    .support-card p { margin: 0 0 10px; color: #4d4d4d; font-size: 13px; }
    .support-card a { font-size: 12px; font-weight: 900; text-transform: uppercase; text-decoration-thickness: 3px; text-decoration-color: var(--yellow); text-underline-offset: 4px; }
    .support-small { display: block; margin-top: 9px; font-size: 11px; color: #777; }

    .directory-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 24px; }
    .directory-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
    .directory-card { border: 1px solid var(--line); padding: 15px; }
    .directory-card .sponsored { font-size: 9px; color: #777; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
    .directory-card h3 { margin: 5px 0 6px; font-family: "Roboto Condensed", Arial, sans-serif; font-size: 19px; }
    .directory-card p { margin: 0; color: #555; font-size: 12px; }
    .directory-card a { display: inline-block; margin-top: 9px; font-size: 11px; font-weight: 900; text-transform: uppercase; }
    .advertise-panel { background: var(--yellow); padding: 20px; border: 2px solid #111; }
    .advertise-panel h3 { margin: 0 0 7px; font-family: "Roboto Condensed", Arial, sans-serif; font-size: 27px; text-transform: uppercase; line-height: 1; }
    .advertise-panel p { margin: 0 0 14px; font-size: 13px; }

    .site-footer { background: #111; color: #fff; border-top: 6px solid var(--yellow); padding: 36px 0 22px; }
    .footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 28px; }
    .footer-brand { font-family: "Roboto Condensed", Arial, sans-serif; color: var(--yellow); font-size: 30px; font-weight: 900; text-transform: uppercase; line-height: 1; }
    .footer-copy { color: #bfbfbf; font-size: 13px; max-width: 330px; }
    .footer-col h3 { font-family: "Roboto Condensed", Arial, sans-serif; font-size: 16px; text-transform: uppercase; margin: 0 0 10px; color: var(--yellow); }
    .footer-col ul { list-style: none; padding: 0; margin: 0; }
    .footer-col li { margin: 7px 0; }
    .footer-col a { color: #ddd; text-decoration: none; font-size: 13px; }
    .footer-col a:hover { color: var(--yellow); }
    .footer-bottom { margin-top: 28px; padding-top: 17px; border-top: 1px solid #3a3a3a; color: #9d9d9d; font-size: 12px; display: flex; justify-content: space-between; gap: 20px; }

    .modal {
      position: fixed; inset: 0; z-index: 1000; display: none; align-items: flex-start; justify-content: center;
      background: rgba(0,0,0,.72); padding: 35px 15px; overflow: auto;
    }
    .modal.open { display: flex; }
    .modal-card { width: min(1180px, 100%); background: #fff; box-shadow: 0 18px 60px rgba(0,0,0,.35); position: relative; }
    .modal-close { position: sticky; float: right; top: 10px; margin: 10px 10px 0 0; z-index: 2; width: 42px; height: 42px; border: 0; background: #111; color: #fff; font-size: 24px; }
    .modal-image { aspect-ratio: 16/8; object-fit: cover; }
    .article-body { padding: 26px clamp(20px, 5vw, 56px) 42px; }
    .article-body h1 { margin: 8px 0 13px; font-family: "Roboto Condensed", Arial, sans-serif; font-size: clamp(36px, 6vw, 58px); line-height: 1; letter-spacing: -.8px; }
    .article-standfirst { color: #505050; font-size: 19px; }
    .article-byline { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 12px 0; margin: 18px 0; font-size: 12px; font-weight: 700; }
    .article-copy { font-family: Georgia, "Times New Roman", serif; font-size: 18px; line-height: 1.7; }
    .article-copy p { margin: 0 0 1.15em; }
    .article-share { display: flex; gap: 8px; flex-wrap: wrap; margin: 20px 0; }
    .article-share button { border: 1px solid #aaa; background: #fff; padding: 8px 11px; font-size: 12px; font-weight: 900; text-transform: uppercase; }

    /* Two-column article layout: main copy + sidebar rail for ads,
       related stories and the newsletter signup. Collapses to a single
       column on narrower screens (sidebar content moves below the copy). */
    .article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 36px; align-items: start; }
    .article-sidebar { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 20px; }
    @media (max-width: 860px) {
      .article-layout { grid-template-columns: 1fr; }
      .article-sidebar { position: static; }
    }

    /* Ad slots: clearly labelled placeholders sized to standard IAB units
       so a real ad network's script tag can be dropped straight in without
       any layout rework. Remove the placeholder label/border once real
       ad code is inserted. */
    .ad-slot {
      display: flex; align-items: center; justify-content: center; text-align: center;
      background: #f2f2f2; border: 1px dashed #b8b8b8; color: #8a8a8a;
      font-family: "Roboto Condensed", Arial, sans-serif; font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: .06em; margin: 0 auto;
    }
    .ad-slot-leaderboard { width: 100%; max-width: 728px; height: 90px; margin: 22px auto; }
    .ad-slot-mrec { width: 300px; height: 250px; }
    .ad-slot-incontent { width: 100%; max-width: 580px; height: 250px; margin: 28px auto; }
    @media (max-width: 500px) {
      .ad-slot-leaderboard { height: 50px; }
      .ad-slot-leaderboard::after { content: "Ad — 320×50"; }
    }
    .ad-slot-leaderboard::after { content: "Ad — 728×90"; }
    .ad-slot-mrec::after { content: "Ad — 300×250"; }
    .ad-slot-incontent::after { content: "Ad — 300×250"; }

    .sidebar-box { border: 1px solid var(--line); padding: 18px; }
    .sidebar-box h3 { margin: 0 0 12px; font-family: "Roboto Condensed", Arial, sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; border-bottom: 3px solid var(--yellow); padding-bottom: 8px; }
    .related-story { display: flex; gap: 10px; margin-bottom: 12px; text-decoration: none; color: inherit; cursor: pointer; }
    .related-story:last-child { margin-bottom: 0; }
    .related-story img { width: 72px; height: 54px; object-fit: cover; flex-shrink: 0; }
    .related-story .related-title { font-family: "Roboto Condensed", Arial, sans-serif; font-size: 14px; line-height: 1.25; font-weight: 700; }

    .newsletter-box { background: var(--black); color: #fff; padding: 20px; }
    .newsletter-box h3 { margin: 0 0 8px; font-family: "Roboto Condensed", Arial, sans-serif; font-size: 16px; text-transform: uppercase; color: var(--yellow); }
    .newsletter-box p { margin: 0 0 12px; font-size: 13px; color: #cfcfcf; }
    .newsletter-form { display: flex; flex-direction: column; gap: 8px; }
    .newsletter-form input[type="email"] { padding: 10px; border: 1px solid #444; background: #1c1c1c; color: #fff; font-size: 14px; }
    .newsletter-form button { padding: 10px; border: 0; background: var(--yellow); color: #111; font-weight: 900; text-transform: uppercase; font-size: 13px; cursor: pointer; }
    .newsletter-form button:hover { background: var(--yellow-dark); }
    .newsletter-note { font-size: 11px; color: #8f8f8f; margin-top: 8px; }
    .newsletter-status { font-size: 12px; margin-top: 8px; min-height: 1em; }

    .search-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,.82); z-index: 950; display: none; align-items: flex-start; justify-content: center; padding: 85px 15px;
    }
    .search-overlay.open { display: flex; }
    .search-panel { width: min(760px, 100%); background: #fff; padding: 22px; }
    .search-panel-row { display: grid; grid-template-columns: 1fr auto; }
    .search-panel input { min-width: 0; border: 2px solid #111; padding: 14px; font-size: 18px; }
    .search-panel button { border: 0; background: var(--yellow); font-weight: 900; padding: 0 18px; }
    .search-results { margin-top: 16px; max-height: 55vh; overflow: auto; }
    .search-result { display: block; width: 100%; text-align: left; border: 0; border-top: 1px solid var(--line); background: #fff; padding: 12px 0; font-weight: 800; }
    .search-result:hover { color: var(--red); }
    .search-close { margin-top: 14px; border: 0; background: #111 !important; color: #fff; padding: 10px 15px !important; }

    .cookie {
      position: fixed; left: 0; right: 0; bottom: 0; z-index: 1100; display: none;
      background: #111; color: #fff; border-top: 4px solid var(--yellow); padding: 16px 0;
    }
    .cookie.show { display: block; }
    .cookie-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
    .cookie p { margin: 0; font-size: 13px; }
    .cookie-actions { display: flex; gap: 8px; flex: 0 0 auto; }
    .cookie button { border: 1px solid var(--yellow); padding: 9px 12px; font-weight: 900; }
    .cookie-accept { background: var(--yellow); color: #000; }
    .cookie-decline { background: transparent; color: #fff; }

    .toast { position: fixed; right: 18px; bottom: 18px; z-index: 1200; background: #111; color: #fff; border-left: 5px solid var(--yellow); padding: 12px 16px; box-shadow: var(--shadow); transform: translateY(140%); transition: transform .25s ease; max-width: 330px; font-weight: 700; }
    .toast.show { transform: translateY(0); }
    .hidden { display: none !important; }

    @media (max-width: 1050px) {
      .lead-grid { grid-template-columns: minmax(0, 1.55fr) minmax(260px, .8fr); }
      .latest-panel { grid-column: 1 / -1; border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 15px; }
      .latest-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 18px; }
      .events-grid, .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 820px) {
      .utility-links a:nth-child(-n+2) { display: none; }
      .masthead-row { min-height: 142px; }
      .masthead-actions .header-button:not(.solid) { display: none; }
      .brand-logo { width: clamp(235px, 39vw, 310px); }
      .lead-grid, .news-layout, .directory-wrap { grid-template-columns: 1fr; }
      .secondary-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .side-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .report-box { grid-column: 1 / -1; }
      .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 620px) {
      .wrap { width: min(100% - 20px, var(--max)); }
      .utility-left { gap: 9px; }
      .utility-divider { display: block; }
      .weather-location, .weather-condition { display: none; }
      .weather-compact { gap: 4px; }
      .weather-icon { width: 20px; font-size: 17px; }
      .utility-links { display: none; }
      .masthead-row { grid-template-columns: minmax(0, 1fr) auto; gap: 8px; min-height: 116px; }
      .brand-logo { width: min(225px, 62vw); }
      .header-button.solid { padding: 9px 10px; font-size: 10px; }
      .menu-toggle { display: block; }
      .nav-row { position: relative; }
      .nav-list {
        display: none; position: absolute; top: 50px; left: 0; right: 0; background: #111; flex-direction: column; overflow: visible; box-shadow: var(--shadow);
      }
      .nav-list.open { display: flex; }
      .nav-list li, .nav-list a, .nav-list button { width: 100%; }
      .nav-list a, .nav-list button { border-right: 0; border-bottom: 1px solid #333; justify-content: flex-start; }
      .breaking-copy { font-size: 12px; }
      .breaking-segment { gap: 28px; padding: 0 28px 0 12px; }
      .breaking-label { padding-inline: 12px; font-size: 11px; }
      .lead-grid { gap: 24px; }
      .secondary-stack, .news-grid, .side-rail, .events-grid, .support-grid, .directory-grid, .latest-list { grid-template-columns: 1fr; }
      .latest-panel { padding-top: 12px; }
      .lead-headline { font-size: 37px; }
      .secondary-headline, .card-headline { font-size: 24px; }
      .section { padding-bottom: 28px; }
      .section-head { align-items: center; }
      .section-link { font-size: 11px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom, .cookie-row { flex-direction: column; align-items: flex-start; }
      .cookie-actions { width: 100%; }
      .cookie-actions button { flex: 1; }
    }

/* ROCHDALE_ONGOING_STORY_STYLES */
.ongoing-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 8px;
  padding: 4px 8px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  font-family: "Roboto Condensed", Roboto, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1;
}
.ongoing-label {
  padding: 12px 14px;
  border-left: 5px solid var(--red);
  background: #f6f6f6;
  font-family: Roboto, Arial, Helvetica, sans-serif;
}


/* ROCHDALE_EDITORIAL_QUALITY_V2 */
.visually-hidden{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.article-share{display:flex;align-items:center;gap:10px;margin:16px 0 22px}
.share-icon-button{width:44px;height:44px;display:inline-grid;place-items:center;border:1px solid #bdbdbd;border-radius:50%;background:#fff;color:#111;padding:10px}
.share-icon-button:hover{background:#111;color:#fff}
.share-icon-button svg{width:21px;height:21px;fill:currentColor;stroke:currentColor;stroke-width:1.5}
.article-sources{margin:24px 0 8px;font-size:14px;color:#555}
.article-sources summary{display:inline-block;cursor:pointer;font-weight:700;text-decoration:underline;text-underline-offset:3px}
.article-sources ul{margin:10px 0 0;padding-left:20px}
.article-sources li{margin:5px 0}
.article-breadcrumb{display:flex;align-items:center;gap:8px;margin-bottom:14px;font-size:14px;color:#666}
.article-breadcrumb a{color:inherit}
