/*
 Theme Name:   Global News Astra Child
 Theme URI:    https://danptest.com.au/
 Description:  Global News front-page layout on Astra
 Author:       Dan Petrie
 Author URI:   https://danptest.com.au/
 Template:     astra
 Version:      1.0.0
 Text Domain:  globalnews-astra-child
*/

/* GLOBAL NEWS THEME – BASE STYLES
   -------------------------------- */
:root {
  --font-serif: 'Georgia','Times New Roman',serif;
  --font-sans: 'Urbanist', 'Helvetica Neue', Arial, sans-serif; /* Updated to Urbanist */
  --color-primary: #000;
  --color-secondary: #555;
  --color-accent: #3A7FB9;
  --color-background: #fff;

  --color-header-bg: #fff;
  --color-topbar-bg: #008080;
  --color-topbar-text: #fff;
  --color-ticker-bg: #f8f8f8;

  --padding-base: 1.5rem;
}

/* Reset / base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-sans); /* Changed to use sans-serif (Urbanist) */
  line-height: 1.6;
  color: var(--color-primary);
  background: var(--color-background);
}
.container {
  max-width: 1320px;   /* was 1200px */
  margin: 0 auto;
  padding: 0 var(--padding-base);
}

h1,h2,h3,h4 { font-family: var(--font-sans); font-weight: 700; margin-bottom: .5rem; } /* Changed to use sans-serif (Urbanist) */
a { text-decoration: none; color: var(--color-primary); transition: color .2s; }
a:hover { color: var(--color-accent); }

/* ---------- Top slide-down MEGA menu ---------- */


/* ---------- Top slide-down MEGA menu ---------- */
.section-dropdown-menu {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: #f7f7f7;
  border-bottom: 2px solid var(--color-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .28s ease;
  z-index: 2000;
  padding-top: 60px;
  padding-bottom: 24px;
  box-shadow: 0 14px 36px rgba(0,0,0,.10);
}
.section-dropdown-menu.active { transform: scaleY(1); }

.mega-nav { position: relative; padding: .25rem 0 1rem; }

.menu-close{
  position: absolute;
  top: -15px;
  left: -35px;
  border: 0;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 10px 10px 10px 10px;
  color: #000;
}
.menu-close:hover{background: #000};, .menu-close:focus{ color: #fff; }
.menu-close:focus-visible{ outline: 2px solid #000; border-radius: 4px; }

/* 1. Main container - ENABLES 6 EQUAL HORIZONTAL COLUMNS */
.mega-columns {
    display: grid; 
    /* THIS IS THE CHANGE: Creates 6 columns, each 1fr */
    grid-template-columns: repeat(6, 1fr); 
    gap: 20px; /* Reduced gap slightly to help fit 6 columns, adjust as needed */
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-col {
    /* No need for 'flex' properties anymore, grid handles the width */
    list-style: none; /* Ensure li has no dots */
    padding: 0;
    margin: 0;
    /* You can add a border or background here if you want column separation */
}

.mega-head {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: .9rem;
  font-weight: 800;
  margin-bottom: .5rem;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: .25rem;
}
.mega-links { list-style: none; padding: 0; margin: 0; }
.mega-links li { margin: .15rem 0; }
.mega-links a {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .95rem;
  padding: .15rem 0;
}
.mega-links a:hover { color: var(--color-accent); }

.mega-col--wide .mega-links--multicol { column-count: 1; column-gap: 0; }

body.menu-open .top-bar, body.menu-open .site-header, body.menu-open .rolling-ticker-container {
  opacity: .45; transition: opacity .25s ease;
}

/* ---------- Top bar ---------- */
.top-bar {
  background: var(--color-topbar-bg);
  color: var(--color-topbar-text);
  padding: .4rem 0;
  font-family: var(--font-sans);
  font-size: .8rem;
}
.top-bar-content { display: flex; justify-content: flex-end; align-items: center; padding-left: var(--padding-base); padding-right: var(--padding-base); }



/* Centered search bar */



@media (max-width: 768px){
  .header-content{
    flex-direction:column;
    align-items:flex-start;
  }

  .header-center{
    position:relative;
    transform:none;
    width:100%;
    margin-top:0.5rem;
  }
}


.logo-container {
  justify-self: flex-start;
  margin-right: 5.5rem; /* ← key fix */
}

.logo { font-size: 1.5rem; font-weight: 900; letter-spacing: .1rem; line-height: 1; }
.tagline { font-family: var(--font-sans); font-size: .75rem; color: var(--color-secondary); font-style: italic; margin-top: .2rem; line-height: 1; }
.header-actions {
  justify-self: flex-end;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* SVG logo if pasted */
.logo-container .logo svg { height: 32.5px; width: auto; display: block; }

.logo svg {
  transform: translateY(1px);
}

/* Search + CTA */
.search-form {
  width: 100%;
  display: block;
  border: none;
  background: transparent;
}


.search-button { background: #333; color: #fff; border: none; padding: .3rem .6rem; cursor: pointer; font-size: .9rem; height: 100%; }
.mailing-btn { background: var(--color-accent); color: #fff; border: none; padding: .5rem 1rem; cursor: pointer; font-family: var(--font-sans); font-weight: 700; white-space: nowrap; }

/* ---------- Rolling ticker (with hamburger overlay) ---------- */
.rolling-ticker-container { background: var(--color-ticker-bg); position: relative; z-index: 1100; max-height: 45px; opacity: 1; transition: max-height .3s ease-in-out, opacity .3s ease-in-out; margin-top: 2.5px;}
.ticker-wrap { position: relative; display: flex; align-items: center; justify-content: flex-start; overflow: hidden; }
.ticker-wrap::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 56px; background: var(--color-ticker-bg); z-index: 2; }

.menu-toggle {
  position: relative; z-index: 3; top: -3px;
  margin-right: 1rem;
  background: var(--color-ticker-bg);
  border: 1px solid #000;
  color: #000;
  font-size: 1.3rem; cursor: pointer;
  padding: .05rem .5rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease, color .25s ease, background .25s ease;
  border-radius: 6px;
}
.menu-toggle:hover { color: var(--color-accent); transform: scale(1.05); background: #fff; }
.menu-toggle[aria-expanded="true"] { color: var(--color-accent); }

.ticker-content { position: relative; z-index: 1; display: flex; white-space: nowrap; width: 100%; animation: scroll-ticker 30s linear infinite; }
.ticker-content::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 58px; pointer-events: none; background: linear-gradient(to right, var(--color-ticker-bg) 0%, rgba(248,248,248,0) 100%); z-index: 2; }
.ticker-item { padding: 0 1.5rem; font-family: var(--font-sans); font-size: .85rem; padding-top: .75rem; padding-bottom: .75rem; }
.ticker-label { font-weight: 600; margin-right: .25rem; }
.price.up { color: green; } .price.down { color: red; }

@keyframes scroll-ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- Content + Footer ---------- */
.section-label { font-family: var(--font-sans); color: var(--color-accent); text-transform: uppercase; font-size: .8rem; letter-spacing: .05rem; margin-bottom: .25rem; }
.byline { font-family: var(--font-sans); font-size: .85rem; color: var(--color-secondary); margin-bottom: .5rem; }
.read-more { font-family: var(--font-sans); font-weight: 700; display: inline-block; }
.section-divider { border: 0; height: 1px; background: #eee; margin: 2rem 0; }

.top-of-fold {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}
.flanking-stories-column { grid-column: 1 / 2; }

/* ===========================
   Flanking stories (left column)
   Label overlaid on image, headlines aligned
   =========================== */
   
   .flanking-story {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  column-gap: 14px;
  padding: 0.7rem 0;
  border-bottom: 1px solid #eee;
  align-items: flex-start;
}

.flanking-thumb {
  position: relative;
}

.flanking-thumb .story-image {
  margin: 0;
}

.flanking-thumb .story-image img {
  width: 110px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.flanking-thumb .section-label.over-image {
  position: absolute;
  left: 4px;
  top: 4px;
  padding: 2px 6px;
  font-size: 10px;
  text-transform: uppercase;
  background: rgba(0,0,0,.7);
  color: #fff;
  border-radius: 2px;
}

.flanking-body h3 {
  margin: 0 0 4px;
  font-size: .95rem;
  line-height: 1.25;
}

.flanking-body .dek-short {
  margin: 0;
  font-size: .9rem;
  line-height: 1.3;
  color: #555;
}

.case-studies-title {
  margin-top: 1.3rem;
  margin-bottom: .4rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

   
   
   

.flanking-story.story-card {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  grid-auto-rows: auto;
  column-gap: 12px;
  padding: 14px 0 10px;
  border-top: 1px solid #e1e5ea;
  align-items: start;
}

.flanking-story.story-card:first-child {
  border-top: none;
}

/* Image on the left */
.flanking-story.story-card .story-image {
  grid-column: 1;
  grid-row: 1 / span 2;   /* spans headline + dek */
  margin: 0;
  position: relative;     /* for overlay label */
}

.flanking-story.story-card .story-image img {
  display: block;
  width: 120px;
  height: 72px;
  object-fit: cover;
  border-radius: 2px;
}

/* Section label overlaid on the image */
.flanking-story.story-card .section-label {
  position: absolute;
  top: 6px;
  left: 6px;
  margin: 0;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  background: rgba(240, 244, 250, 0.95);
  color: #2f3b4a;
  z-index: 1;
}

/* Headline and dek in the right column */
.flanking-story.story-card h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.flanking-story.story-card .dek-short {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #6b7583;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hover polish */
.flanking-story.story-card:hover h3 {
  text-decoration: underline;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .flanking-story.story-card {
    grid-template-columns: 100px minmax(0, 1fr);
    padding: 16px 0 10px;
  }

  .flanking-story.story-card .story-image img {
    width: 100px;
    height: 60px;
  }
}



.hero-story { grid-column: 2 / 3; }
.hero-image img { width: 100%; height: auto; display: block; margin-bottom: 1rem; }
.hero-story h1 { font-size: 2.8rem; line-height: 1.1; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.hero-story .dek { font-size: 1.3rem; color: var(--color-secondary); margin-bottom: 1.5rem; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }

.headlines-column { grid-column: 3 / 4; }


/* NEWSWIRE header row */
.headlines-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 2px solid #000;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

.headlines-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* Latest News pill */
.latest-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid #0050a4;
  color: #0050a4;
  background: #f0f8ff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.latest-pill:hover {
  background: #0050a4;
  color: #fff;
  border-color: #0050a4;
}



.newswire-item { padding: .5rem 0; border-bottom: 1px dotted #ccc; font-family: var(--font-sans); font-size: .9rem; line-height: 1.4; }
.newswire-item:first-of-type { padding-top: 0; }
.newswire-item:last-child { border-bottom: none; padding-bottom: 0; }
.newswire-time { color: #888; margin-right: .4rem; white-space: nowrap; }
.newswire-item a { font-family: var(--font-sans); font-weight: 400; }

.main-grid { display: grid; grid-template-columns: 3fr 1fr; gap: 3rem; margin-bottom: 1rem; margin-top:5rem;}
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;}
.news-grid h2 { grid-column: 1 / -1; font-family: var(--font-sans); text-transform: uppercase; font-size: 1.1rem; border-bottom: 2px solid var(--color-primary); padding-bottom: .5rem; margin-bottom: 1rem; }
.small-feature h3 { font-size: 1.4rem; line-height: 1.2; }

/* TradingView widget tweaks */
.tradingview-widget-container { background:#fff; border: 1px solid #eee; border-radius: 8px; overflow: hidden; }
.tradingview-widget-copyright { font-family: var(--font-sans); font-size: 12px; color: #777; padding: 6px 10px; }

.site-footer { background: var(--color-primary); color: #fff; padding: 2.5rem 0; font-family: var(--font-sans); font-size: .9rem; }
.footer-content { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 2rem; }
.footer-logo .logo { color: #fff; font-size: 1.5rem; font-weight: 900; letter-spacing: .1rem; }
.footer-logo .tagline { color: #ccc; font-style: normal; font-size: .8rem; margin-bottom: 1rem; }
.footer-section h4 { color: #fff; text-transform: uppercase; font-size: 1rem; margin-bottom: 1rem; font-family: var(--font-sans); }
.footer-section ul { list-style: none; }
.footer-section ul li a { color: #ccc; padding: .2rem 0; display: block; }
.footer-section ul li a:hover { color: #fff; }
.copyright { color: #888; font-size: .8rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) { .mega-columns { grid-template-columns: repeat(4, minmax(170px, 1fr)); } }
@media (max-width: 900px) {
  .search-form, .mailing-btn { display: none; }
  .top-bar { display: none; }
  .rolling-ticker-container { display: none; }
  .mega-columns { grid-template-columns: repeat(3, minmax(150px, 1fr)); }
  .top-of-fold { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-story { grid-column: 1 / -1; margin-bottom: 1.5rem; }
  .flanking-stories-column { grid-column: 1 / 2; }
  .headlines-column { grid-column: 2 / 3; }
}
@media (max-width: 700px) { .mega-columns { grid-template-columns: repeat(2, minmax(150px, 1fr)); } }
@media (max-width: 480px) { .mega-columns { grid-template-columns: 1fr; } .mega-col--wide .mega-links--multicol { column-count: 1; } }
@media (max-width: 768px) {
  .main-grid { grid-template-columns: 1fr; }
  .top-of-fold { grid-template-columns: 1fr; }
  .hero-story, .flanking-stories-column, .headlines-column { grid-column: auto; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .footer-logo { grid-column: 1 / -1; margin-bottom: 1rem; }
}


/* — Make the date-range chip match the quick pills — */
.date-dropdown .pill,
.date-range-chip{
  background:#0f3a4b;
  color:var(--text);
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  padding:8px 16px;
  font-size:.9rem;
  font-weight:600;
  transition:background .2s,border-color .2s,box-shadow .2s;
}

/* Keep the chip layout (two inputs + dash) */
.date-range-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

/* Inputs inside the chip: look like text, no extra chrome */
.date-range-chip .date-input{
  background:transparent;
  color:var(--text);
  border:none;
  outline:none;
  font:inherit;
  padding:0;
  min-width:8.5ch;
}

/* Hover/focus to match pill hover */
.date-range-chip:hover,
.date-dropdown .pill:hover{
  background:var(--hover-blue);
  border-color:rgba(255,255,255,.35);
  box-shadow:0 2px 10px rgba(0,0,0,.25);
}

/* Focus ring when typing in dates */
.date-range-chip:focus-within{
  box-shadow:0 0 0 3px rgba(123,227,255,.18);
  border-color:rgba(255,255,255,.35);
}


/* ---- Rotating Case Study ---- */
/* ---- Case Studies: single large rotating card ---- */

.case-rotation {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e1e5ea;
  position: relative;
  min-height: 320px; /* space for tallest slide */
}

.case-studies-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Base slide layout – override the flanking grid for case studies */
.case-rotation .focus-story.story-card {
  display: block;
  padding-top: 0;
  border-top: none;
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 2.1rem;          /* sits just under the heading */
  left: 0;
  width: 100%;
  transition: opacity 0.7s ease;
}

/* Active slide is the only one that participates in layout */
.case-rotation .focus-story.story-card.active {
  position: relative;
  top: 0;
  opacity: 1;
  pointer-events: auto;
}

/* Section label above the image */
.case-rotation .focus-story .section-label {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* Big image taking full column width */
.case-rotation .focus-story .story-image {
  margin: 0 0 0.5rem;
}

.case-rotation .focus-story .story-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}

/* Headline + dek underneath */
.case-rotation .focus-story h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.case-rotation .focus-story .dek-short {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #555;
}

/* Optional: tiny tweak on smaller screens */
@media (max-width: 900px) {
  .case-rotation {
    min-height: 260px;
  }
}




/* ---- Coming Up This Week ---- */
.coming-up {
  background: #f4f8fa;
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 6px;
}
.coming-up h2 {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  margin-bottom: .5rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.coming-up-preview {
  font-size: 1rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.coming-up-link {
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
}
.coming-up-link:hover {
  text-decoration: underline;
}


/* ---- Chart + Widget split ---- */
.chart-and-widget{
  display:grid;
  grid-template-columns: 3fr 1fr; /* 3/4 vs 1/4 */
  gap: 1.25rem;
  align-items: stretch;
}
.chart-and-widget .chart-side .tradingview-widget-container,
.chart-and-widget .widget-side .tradingview-widget-container {
  width: 100%;
  /* no fixed height – TradingView JS handles its own height */
}


@media (max-width: 1000px){
  .chart-and-widget{ grid-template-columns: 1fr; }
  .chart-and-widget .chart-side .tradingview-widget-container,
  .chart-and-widget .widget-side .tradingview-widget-container{ height: 420px; }
}


/* ==== Case Study beside Chart (replaces widget column) ==== */
.case-study-section{
  background:#f9f9f9;
  border:1px solid #eee;
  border-radius:8px;
  padding:1rem;
}
.case-study-section .section-label{ margin-bottom:.5rem; }

/* ==== Right-align Company + Legal Footer Sections ==== */
.footer-section:nth-last-child(2),
.footer-section:last-child {
  text-align: right;
  justify-self: end;
}

.footer-section:nth-last-child(2) ul,
.footer-section:last-child ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section:nth-last-child(2) li,
.footer-section:last-child li {
  margin: 0.2rem 0;
}

/* ==== Call to Action Below Hero Story ==== */
.cta-below-hero {
  background: #eaf5fa;
  border-left: 4px solid var(--color-accent);
  margin: 1.5rem 0 2rem;
  padding: 1rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cta-below-hero p {
  margin: 0;
  color: #0e3040;
}

.cta-link {
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cta-link:hover {
  color: #0077cc;
  text-decoration: underline;
}

/* ------------------------------------------
   HEADER DATE — vertically centered + Poppins
   ------------------------------------------ */


/* Date Block */
.header-date {
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.60rem;
  color: #fff;
  text-align: center;
  width: 100%;

  /* ensure vertical centering */
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top:5px;
  padding-bottom: 2.5px;

  /* matches ticker background */
background-color: #000;
}

.logo svg path{ fill:#000 !important; }
.top-bar{ display:none !important; }

.site-footer .logo svg path{ fill:#fff !important; }


/* ===== Latest News / Section archive shared layout ===== */
.latest-news-page {
    padding-top: .5rem;
    padding-bottom: 3rem;
}

.category-intro {
  font-size: 0.95rem;
  color: var(--color-secondary);
  margin-bottom: 1.25rem;
}

/* Hero */
.latest-hero {
  margin-bottom: 2rem;
}
.latest-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.latest-hero h2 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.latest-hero .hero-dek {
  font-size: 1rem;
  color: var(--color-secondary);
}



/* Listing */
.latest-list {
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
}
.list-heading {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.latest-list-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.latest-list-item h3 {
  font-size: 1rem;
  margin: 0 0 0.25rem;
}
.latest-list-item .dek-short {
  font-size: 0.9rem;
  color: #555;
}

@media (max-width: 768px) {
  .latest-two-up {
    grid-template-columns: 1fr;
  }
  .latest-small-card a {
    grid-template-columns: 110px minmax(0, 1fr);
  }
  .latest-small-thumb img {
    width: 110px;
    height: 80px;
  }
}

/* ============================
   Breadcrumbs
   ============================ */

.gn-breadcrumbs {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-family: var(--font-sans);
}

.gn-breadcrumbs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  align-items: center;
}

.gn-breadcrumbs li {
  color: #666;
}

.gn-breadcrumbs li a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
}

.gn-breadcrumbs li a:hover {
  text-decoration: underline;
}

/* separator arrows */
.gn-breadcrumbs li::after {
  content: ">";
  color: #aaa;
  margin-left: 0.4rem;
}

.gn-breadcrumbs li:last-child::after {
  content: "";
}

.gn-breadcrumbs li.current {
  font-weight: 700;
  color: #000;
}

.newswire-category {
  font-weight: 600;
  margin-right: 0.25rem;
}
.newswire-empty {
  font-size: 0.85rem;
  color: #999;
  padding-top: 0.5rem;
}


/* ============================
   SINGLE ARTICLE PAGE
===============================*/

.article-container {
  max-width: 900px;
  margin: 3rem auto;
  font-family: 'Urbanist', sans-serif;
}

.article-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}

.article-section {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #3A7FB9;
  margin-bottom: 0.3rem;
}

.article-title {
  font-size: 2.3rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.article-meta {
  color: #777;
  font-size: 0.95rem;
}

.article-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #222;
  margin-top: 2rem;
}

.article-content p {
  margin-bottom: 1.3rem;
}

.article-content strong {
  font-weight: 700;
}

.article-content h2, 
.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.article-content img {
  width: 100%;
  margin: 2rem 0;
  border-radius: 6px;
}

/* Hide default WP nav links */
.nav-links {
  display: none;
}

/* ============================================================
   LATEST NEWS PAGE (Hero + Two-Up + Listing)
   ============================================================ */

/* Default page template */
main.site-content {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.page-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.page-content {
  margin-bottom: 3rem;
  line-height: 1.8;
}

.latest-news-page {
  margin-top: 2.5rem;
  margin-bottom: 3rem;
  max-width: 900px;
}

.latest-news-page .page-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}

/* ------------------------------
   HERO STORY
   ------------------------------ */
/* ============================================================
   LATEST NEWS — HERO IMAGE WITH OVERLAY TEXT
   ============================================================ */

.latest-hero {
  position: relative;
  margin-bottom: 2.5rem;
}

.latest-hero-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.latest-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* overlay container */
.latest-hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 1.25rem 1.5rem;

  /* 50% transparent black */
  background: rgba(0, 0, 0, 0.50);

  /* ensure readability */
  color: #fff;

  /* smooth gradient option if you want:
     background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0)); 
  */
}

/* overlay headline */
.latest-hero-overlay h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  color: #fff;
}

/* overlay dek */
.latest-hero-overlay .hero-dek {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
  color: #f0f0f0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .latest-hero-overlay {
    padding: 1rem 1.2rem;
  }

  .latest-hero-overlay h2 {
    font-size: 1.4rem;
  }

  .latest-hero-overlay .hero-dek {
    font-size: 0.9rem;
  }
}


/* ------------------------------
   TWO-UP SECTION
   ------------------------------ */
.latest-two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.latest-small-card a {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1rem;
  text-decoration: none;
}

.latest-small-thumb img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
}

.latest-small-text h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 700;
}

.latest-small-text .dek-short {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.35;
}

/* ------------------------------
   LIST OF STORIES
   ------------------------------ */
.latest-list {
  border-top: 1px solid #e5e5e5;
  padding-top: 1.75rem;
}

.list-heading {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.latest-list-item {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.latest-list-item:last-child {
  border-bottom: none;
}

.latest-list-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.latest-list-item .dek-short {
  font-size: 0.92rem;
  color: #555;
  margin: 0;
  line-height: 1.45;
}

/* ------------------------------
   RESPONSIVE
   ------------------------------ */
@media (max-width: 768px) {

  .latest-news-page {
    padding: 0 1rem;
  }

  .latest-two-up {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .latest-small-card a {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .latest-small-thumb img {
    width: 120px;
    height: 85px;
  }

  .latest-hero h2 {
    font-size: 1.6rem;
  }

  .latest-hero .hero-dek {
    max-width: 100%;
  }
}

/* ============================
   LATEST NEWS LAYOUT
   ============================ */

.latest-news-page {
  margin-top: 2.5rem;
  margin-bottom: 3.5rem;
}

/* MAIN TOP GRID: hero + side stack */
.latest-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
  gap: 1.75rem;
  margin-bottom: 2.75rem;
}

/* ---------------- Hero card ---------------- */

.latest-hero-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.latest-hero-link {
  display: block;
  position: relative;
  color: inherit;
}

.latest-hero-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.latest-hero-text {
    padding: 1.5rem;
}

/* band across bottom of image */
.latest-hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.9rem 1.2rem 1.2rem;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.6) 40%,
    rgba(0,0,0,0.0) 100%
  );
  color: #fff;
}

.latest-hero-overlay .section-label {
  color: #fff;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
}

.latest-hero-title {
  margin: 0 0 0.35rem;
  font-size: 1.7rem;
  line-height: 1.2;
}

.latest-hero-overlay .hero-dek {
  margin: 0;
  font-size: 0.9rem;
  color: #f2f2f2;
}

/* ---------------- Side stack (two stories) ---------------- */

/* ---------------- Side stack (two stories) ---------------- */

.latest-side-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Card with image on top and headline underneath */
.latest-side-card a {
  display: flex;
  flex-direction: column;
  background: #f7f8fa;
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  border: 1px solid #e4e6ea;
  color: inherit;
  height: 180px;              /* Clean fixed height */
  text-decoration: none;
}

/* Image at top */
.latest-side-thumb img {
  width: 100%;
  height: 120px;              /* Good balance for card height */
  object-fit: cover;
  display: block;
}

/* Text area */
.latest-side-text {
  padding: 0.55rem 0.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.latest-side-text .section-label {
  margin-bottom: 0.15rem;
  font-size: 0.7rem;
}

.latest-side-text h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.25;
  font-weight: 600;
  color: #111;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;         /* Prevent multi-line break */
}

/* Hover polish */
.latest-side-card:hover h3 {
  text-decoration: underline;
}

/* Responsive tweak (remove fixed height on mobile) */
@media (max-width: 900px) {
  .latest-side-card a {
    height: auto;
  }

  .latest-side-thumb img {
    height: 150px;
  }

  .latest-side-text h3 {
    white-space: normal;
    overflow: visible;
  }
}

.latest-side-text .dek-short {
  margin: 0;
  font-size: 0.85rem;
  color: #555;
}

/* hover polish */
.latest-side-card:hover h3 {
  text-decoration: underline;
}

/* responsive tweak */
@media (max-width: 900px) {
  .latest-side-card a {
    height: auto;            /* let them grow on small screens */
  }

  .latest-side-thumb img {
    height: 140px;
  }
}

.latest-side-text .section-label {
  margin-bottom: 0.25rem;
  font-size: 0.7rem;
}

.latest-side-text h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  line-height: 1.3;
}

.latest-side-text .dek-short {
  margin: 0;
  font-size: 0.85rem;
  color: #555;
}

/* hover polish */
.latest-side-card:hover a,
.latest-hero-card:hover .latest-hero-title {
  text-decoration: underline;
}

/* ---------------- Remaining stories grid ---------------- */

.latest-list {
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
}

.latest-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.latest-list .list-heading {
  grid-column: 1 / -1;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.latest-list-item {
  background: #ffffff;
  border: 1px solid #eceff3;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.latest-list-item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.latest-list-thumb img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.latest-list-text {
  padding: 0.7rem 0.85rem 0.9rem;
}

.latest-list-text .section-label {
  margin-bottom: 0.25rem;
  font-size: 0.7rem;
}

.latest-list-text h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  line-height: 1.3;
}

.latest-list-text .dek-short {
  margin: 0;
  font-size: 0.88rem;
  color: #555;
}

.latest-list-item:hover h3 {
  text-decoration: underline;
}

/* ---------------- Responsive tweaks ---------------- */

@media (max-width: 900px) {
  .latest-top-grid {
    grid-template-columns: 1fr;
  }

  .latest-hero-image img {
    height: 260px;
  }
}

@media (max-width: 600px) {
  .latest-list-grid {
    grid-template-columns: 1fr;
  }

  .latest-side-card a {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .latest-side-thumb img {
    width: 100px;
    height: 70px;
  }
}

/* ============================
   SINGLE ARTICLE PAGE
   =========================== */

.article-container {
  max-width: 1100px;          /* a bit wider to accommodate sidebar */
  margin: 3rem auto;
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  font-family: 'Urbanist', sans-serif;
}

/* Main column */
.article-main {}

/* Header */
.article-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.article-section {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #3A7FB9;
  margin-bottom: 0.35rem;
}

.article-title {
  font-size: 2.1rem;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.article-meta {
  color: #777;
  font-size: 0.95rem;
}

/* Smaller hero image */
.article-hero-image {
  margin-top: 1.25rem;
}

.article-hero-image img {
  width: 100%;
  max-height: 320px;          /* <— reduce height */
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* Content */
.article-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #222;
}

.article-content p {
  margin-bottom: 1.3rem;
}

.article-content strong {
  font-weight: 700;
}

.article-content h2,
.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.article-content img {
  width: 100%;
  margin: 2rem 0;
  border-radius: 6px;
}

/* Hide default WP nav links under posts */
.nav-links {
  display: none;
}

/* ============================
   RELATED STORIES SIDEBAR
   =========================== */

.article-sidebar {
  border-left: 1px solid #eee;
  padding-left: 1.5rem;
  font-family: 'Urbanist', sans-serif;
}

.sidebar-heading {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
}

.related-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.related-item + .related-item {
  margin-top: 1rem;
}

.related-item a {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}

.related-thumb img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.related-text h3 {
  font-size: 0.95rem;
  line-height: 1.3;
  margin: 0 0 0.1rem;
}

.related-meta {
  font-size: 0.8rem;
  color: #777;
  margin: 0;
}

.related-empty {
  font-size: 0.85rem;
  color: #999;
}

/* Hover polish */
.related-item a:hover h3 {
  text-decoration: underline;
}

/* ============================
   RESPONSIVE
   =========================== */

@media (max-width: 900px) {
  .article-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .article-sidebar {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
  }
}

/* Ticker layout wrapper */
.ticker-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 1rem;
}

/* Left side: hamburger + moving ticker */
.ticker-left {
    display: flex;
    align-items: center;
    flex: 1;
    overflow: hidden;
}

/* Right side: Mailing List button */
.ticker-right {
    flex-shrink: 0;
}

/* Mailing list pill style */
.mailing-btn {
    background: #0e3040;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-family: var(--font-sans);
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mailing-btn:hover {
    background: #0050a4;
}

.tv-symbol-form {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-sans);
}

.tv-symbol-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #555;
}

.tv-symbol-input-wrapper {
  position: relative;
  flex: 1;
}

.tv-symbol-input {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.4rem 0.55rem;
  font-size: 0.9rem;
  font-family: var(--font-sans);
}

/* Suggestions dropdown */
.tv-symbol-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 220px;
  overflow-y: auto;
  z-index: 1200;
  font-size: 0.85rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.tv-symbol-suggestions li {
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.tv-symbol-suggestions li span.symbol-main {
  font-weight: 600;
}

.tv-symbol-suggestions li span.symbol-desc {
  font-size: 0.78rem;
  color: #777;
}

.tv-symbol-suggestions li:hover,
.tv-symbol-suggestions li.tv-suggestion-active {
  background: #f0f4ff;
}

/* Mobile tweak: let it breathe a bit */
@media (max-width: 768px) {
  .tv-symbol-form {
    flex-direction: column;
    align-items: flex-start;
  }

  .tv-symbol-input-wrapper {
    width: 100%;
  }
}

/*.tv-symbol-button{
  padding:6px 10px;
  border:none;
  border-radius:4px;
  background:#0a66c2;
  color:#fff;
  font-size:0.85rem;
  font-weight:600;
  cursor:pointer;
}

.tv-symbol-button:hover{
  background:#004f99;
}*/


/* Ensure header container matches .container width */
.site-header .header-content {
  width: 100%;
  max-width: 1320px;              /* same as .container */
  margin: 0 auto;
  padding: 12.5px var(--padding-base);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto; /* logo | search | CTA */
  column-gap: 1.25rem;
  align-items: center;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1200;
  background: var(--color-header-bg);
  border-bottom: 1px solid #333;
 
}

.header-center {
  justify-self: stretch;
}

/* Inner wrapper for the search input */
.search-inner-container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 580px;              /* keeps it nicely proportioned */
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  padding: 0 10px;
  gap: 8px;                      /* space between icon, input, and X */
}

/* Search input + icon */
/* Make the input field take up the remaining space */
.search-input {
  flex: 1 1 auto;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  font-size: 1rem;
}


/* kill any inherited background icons from Astra */
.search-input {
  background-image: none !important;
}

.search-input:focus { outline: none; background: #f0f0f0; }

.search-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  color: #555;
  margin-right: 4px;             /* extra breathing room before text */
}

/* Hide the Search button */
.search-button {
  display: none !important;
}

/* SEARCH RESULTS PAGE */
.search-results-page {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.search-header {
  margin-bottom: 2rem;
}

.search-title {
  font-size: 2rem;
  margin-bottom: .5rem;
  font-weight: 800;
}

.search-grid {
  margin-top: 1.5rem;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.search-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.search-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.search-card-text {
  padding: 1rem 1.2rem;
}

.search-card-text h3 {
  font-size: 1.1rem;
  margin: 0 0 .35rem;
}

.search-excerpt {
  font-size: .9rem;
  color: #555;
}

/* Clear (×) button — shows only when there's text */
.search-clear-btn {
  cursor: pointer;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  color: #888;
  padding: 0 2px;
  flex-shrink: 0;
  opacity: 0;
  pointer-events: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.search-clear-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.search-clear-btn:hover {
  color: #333;
}



/* --------------------------------------------------------
   IMPORTANT: Add a media query for responsiveness!
   On small screens, 5 columns are too narrow.
   -------------------------------------------------------- */
@media (max-width: 1024px) {
    /* Switch to 3 columns on tablets */
    .mega-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Switch to 2 columns on mobile devices */
    .mega-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* =======================================================
   TRADING VIEW CALENDAR PAGE STYLES (page-calendar.php)
   ======================================================== */

.calendar-page-wrapper {
    /* Ensures the custom container is wide */
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* 1. Target the TradingView main container class */
.tradingview-widget-container {
    width: 100% !important; /* Forces the outer container to use full width */
    max-width: 100% !important;
}

/* 2. Target the actual widget inside the container (if necessary) */
.tradingview-widget-container__widget {
    width: 100% !important;
    min-height: 800px; /* Optional: ensures minimum height for scroll visibility */
}

/* For mobile */
@media (min-width: 1024px)


.author-page {
  margin: 3rem auto;
  max-width: 1100px;
}

.author-header {
  margin-bottom: 2rem;
}

.author-name {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: .5rem;
}

.author-bio {
  font-size: 1rem;
  color: #555;
}

.author-story {
  border-bottom: 1px solid #eee;
  padding: 1.25rem 0;
}

.author-story a {
  display: grid;
  grid-template-columns: 180px minmax(0,1fr);
  gap: 1.25rem;
  color: inherit;
}

.author-thumb img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
}

/* Smart search suggestions block */
.search-smart-suggestions {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  background: #f5f7fb;
  border: 1px solid #e0e4f0;
}



.search-smart-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.4rem;
  color: #555;
}

.search-smart-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.search-smart-list li + li {
  margin-top: 0.2rem;
}

.search-smart-list a {
  font-weight: 600;
  color: #0050a4;
  text-decoration: none;
}

.search-smart-list a:hover {
  text-decoration: underline;
}

.search-smart-meta {
  font-size: 0.8rem;
  color: #777;
  margin-left: 0.25rem;
}
