@charset "UTF-8";
/* The Sunflower Standard – Layout (non-fixed header/adbar, 2025-11-28)
   - Ad bar sits at top of page and scrolls normally
   - Site header (banner + nav) directly under ad bar
   - Feature + calendar row uses true 70% / 30% split
*/

/* =====================
   Root + Base
===================== */
:root {
  /* Brand */
  --brand-blue: #2a4455;
  --brand-gold: #8b836d;
  --sunflower-yellow: #f6c400;
  --gold-light: #fffaf0;

  /* Layout */
  --card-radius: 16px;
  --nav-bg: #ffffff;
  --nav-text: #111111;
  --gold: #C9A227;
  --gold-ink: #111111;
  --nav-radius: 14px;
  --nav-shadow: 0 4px 14px rgba(0,0,0,.06);

  /* Footer */
  --header-bg: #fff;
  --header-fg: #111;
  --header-border: #eee;
  --brand-max: 980px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: Georgia, serif;
  line-height: 1.6;
  background-color: #fff;
  color: #111;
}

/* =====================
   Top Ad Bar (non-fixed)
===================== */
.adbar {
  position: relative; /* normal flow */
  background: #fff;
  border: none;
  box-shadow: none;
  z-index: 1;
}

.adbar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
  margin: 0 auto;
  max-width: 1600px;
}

.adbar .ad-slot {
  display: block;
  width: 100%;
  aspect-ratio: 10 / 3; /* keep 400x120 style ratio */
  overflow: hidden;
  border-radius: 0;
}

.adbar .ad-slot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* =====================
   Site Header (non-fixed)
===================== */
.site-header {
  position: relative;
  background: #fff;
  border-bottom: 2px solid var(--brand-blue);
  z-index: 1;
}

.site-header .banner-link,
.site-header .banner {
  display: block;
  width: 100%;
}

.banner {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* =====================
   Navigation (single row)
===================== */
header nav,
nav[aria-label="Main Navigation"] {
  width: 95%;
  max-width: 1200px;
  margin: 0.25rem auto 0.5rem;
  background: var(--nav-bg);
  border-radius: var(--nav-radius);
  box-shadow: var(--nav-shadow);
  border: 1px solid rgba(0,0,0,.05);
}

.menu-toggle {
  display: none;
}

nav[aria-label="Main Navigation"] .nav-links {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: clamp(2px, 1.5vw, 16px);
  padding: clamp(4px, 1.2vw, 12px) clamp(6px, 2vw, 18px);
  margin: 0;
  overflow-x: hidden;
}

nav[aria-label="Main Navigation"] .nav-links > li {
  flex: 0 1 auto;
  min-width: 0;
}

nav[aria-label="Main Navigation"] .nav-links > li > a {
  display: block;
  text-decoration: none;
  color: var(--nav-text);
  font-weight: 600;
  white-space: nowrap;
  font-size: clamp(9px, 2.9vw, 16px);
  line-height: 1.1;
  padding: clamp(4px, 1vw, 10px) clamp(6px, 2vw, 14px);
  border-radius: 10px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

nav[aria-label="Main Navigation"] .nav-links > li > a:hover,
nav[aria-label="Main Navigation"] .nav-links > li > a:focus-visible {
  background: rgba(0,0,0,0.05);
  transform: translateY(-1px);
}

/* Donate pill */
nav[aria-label="Main Navigation"] .nav-links > li.donate-nav > a,
nav[aria-label="Main Navigation"] .nav-links > li.donate > a,
.donate-button {
  background: var(--gold);
  color: var(--gold-ink) !important;
  font-weight: 800;
  font-size: clamp(10px, 3.1vw, 17px);
  padding: clamp(5px, 1.3vw, 10px) clamp(10px, 2.4vw, 18px);
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: background-color 0.2s ease, transform 0.1s ease;
}

nav[aria-label="Main Navigation"] .nav-links > li.donate-nav > a:hover,
nav[aria-label="Main Navigation"] .nav-links > li.donate > a:hover,
.donate-button:hover {
  background: #b99723;
  transform: translateY(-1px);
}

@media (max-width: 800px) {
  header nav,
  nav[aria-label="Main Navigation"] {
    position: relative;
    width: min(94%, 420px);
    margin: 0.35rem auto 0.6rem;
    padding: 0.45rem;
    border-radius: 12px;
  }

  .menu-toggle {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 0;
    border-radius: 10px;
    background: var(--sunflower-yellow);
    color: #111;
    font-family: Georgia, serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
  }

  .menu-toggle:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
  }

  .menu-icon,
  .menu-icon::before,
  .menu-icon::after {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .menu-icon {
    position: relative;
  }

  .menu-icon::before,
  .menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-icon::before {
    top: -6px;
  }

  .menu-icon::after {
    top: 6px;
  }

  nav[aria-label="Main Navigation"] .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    z-index: 20;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.45rem;
    max-height: calc(100dvh - 7rem);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background: var(--nav-bg);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0,0,0,.16);
  }

  nav[aria-label="Main Navigation"] .nav-links.show {
    display: flex;
  }

  nav[aria-label="Main Navigation"] .nav-links > li {
    width: 100%;
  }

  nav[aria-label="Main Navigation"] .nav-links > li > a {
    width: 100%;
    padding: 0.72rem 0.9rem;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
  }

  nav[aria-label="Main Navigation"] .nav-links > li.donate-nav > a,
  nav[aria-label="Main Navigation"] .nav-links > li.donate > a,
  .donate-button {
    padding: 0.76rem 0.9rem;
    font-size: 1rem;
    border-radius: 8px;
    box-shadow: none;
  }
}

/* =====================
   Feature + Calendar Row
===================== */

.feature-wrap {
  max-width: 1200px;
  margin: 1.25rem auto 0;
  padding: 0 1rem;
}

/* Force true 70% / 30% split */
.feature-calendar-row {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 1rem;
  align-items: start;
  width: 100%;
}

/* Ensure children stay inside their grid cells */
.feature-calendar-row > .feature-card,
.feature-calendar-row > .calendar-widget {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* =====================
   Feature Article
===================== */

.feature-card {
  background: var(--gold-light);
  border-top: 3px solid var(--brand-blue);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Make the feature article clickable with no decoration */
.feature-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Keep original wide ratio ~1.91:1 and prevent expansion */
.feature-card img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1.91 / 1;
  object-fit: cover;
  display: block;
}

.feature-card .article-content {
  padding: 1rem 1.25rem 1.25rem;
  box-sizing: border-box;
  width: 100%;
}

.feature-card h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin: 0.5rem 0 0.25rem;
  color: var(--brand-blue);
  text-align: center;
}

.feature-card p {
  margin: 0 0 0.5rem;
  color: #333;
}

.feature-card h3 {
  margin: 0;
  color: #444;
}

/* Calendar widget next to feature */
.calendar-widget {
  width: 100%;
  max-width: 100%;
  overflow: hidden;   /* keeps cards from spilling out of the aside */
  display: block;     /* no flex stretching for the whole widget */
}



/* Let the list size itself naturally inside the widget */
.calendar-widget .sidebar-calendar-events {
  flex: 1 1 auto;
  overflow-y: visible;
  margin-bottom: 0.5rem;
}

@media (max-width : 1200px ){
  .calendar-widget .sidebar-calendar-events {
    overflow-y: visible;
    max-height: none;
  }
}


/* Mobile stacking */
@media (max-width : 1200px ){
  .feature-calendar-row {
    grid-template-columns: 1fr;
  }
  .calendar-widget {
    order: 2;
  }
}

/* =====================
   Content Columns (articles + sidebar)
===================== */
.content-columns {
  max-width: 1360px;
  margin: 1.5rem auto 2rem;
  padding: clamp(0.75rem, 2vw, 1.25rem);
}

.articles-col {
  min-width: 0;
}

/* =====================
   News Grid
===================== */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: clamp(1rem, 1.8vw, 1.45rem);
  row-gap: clamp(0.8rem, 1.35vw, 1.1rem);
  grid-auto-flow: row;
  grid-auto-rows: 8px;
  align-items: start;
}

.news-grid article,
.grid-ad {
  background-color: #fffdf8;
  border: 1px solid rgba(42, 68, 85, 0.22);
  border-top: 3px solid rgba(42, 68, 85, 0.42);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.075);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.news-grid article,
.grid-ad {
  align-self: start;
}

.news-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(42, 68, 85, 0.38);
  box-shadow: 0 10px 24px rgba(0,0,0,0.13);
}

.news-grid article a {
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.news-grid article img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  display: block;
  background: #fff;
}

.article-content {
  min-width: 0;
  padding: 0.7rem 0.8rem;
}

.article-content h2 {
  font-size: 0.86rem;
  line-height: 1.12;
  margin: 0 0 0.25rem;
  color: #111;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-content p,
.article-content h3 {
  color: #444;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.article-content p {
  color: var(--brand-blue);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 0.22rem;
  -webkit-line-clamp: 1;
  text-transform: uppercase;
}

.article-content h3 {
  font-size: 0.78rem;
  line-height: 1.24;
  margin: 0;
  -webkit-line-clamp: 2;
}

.news-grid .article-content h3 {
  display: none;
}

@media (min-width: 700px) {
  .news-grid {
    grid-template-columns: 1fr;
    column-gap: clamp(1.1rem, 2vw, 1.55rem);
    row-gap: clamp(0.85rem, 1.5vw, 1.15rem);
  }

  .news-grid article:not(.skinny-card) a {
    grid-template-columns: 1fr;
  }

  .news-grid article:not(.skinny-card) img {
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .news-grid article:not(.skinny-card) .article-content {
    padding: 0.75rem 0.85rem 0.85rem;
  }

  .news-grid article:not(.skinny-card) .article-content h2 {
    font-size: clamp(1rem, 1.55vw, 1.22rem);
    line-height: 1.1;
    -webkit-line-clamp: 3;
  }

  .news-grid article:not(.skinny-card) .article-content h3 {
    -webkit-line-clamp: 2;
  }

  .news-grid article.skinny-card a {
    grid-template-columns: minmax(92px, 34%) minmax(0, 1fr);
    align-items: center;
  }

  .news-grid article.skinny-card .article-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0;
    text-align: center;
    padding: 0.55rem 0.65rem;
  }

  .news-grid article.skinny-card .article-content h2 {
    margin-bottom: 0.18rem;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: clamp(0.72rem, 1.05vw, 0.84rem);
    line-height: 1.16;
    -webkit-line-clamp: 3;
  }

  .news-grid article.skinny-card .article-content p {
    margin: 0;
    font-size: 0.68rem;
  }

  .news-grid article.skinny-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: contain;
  }
}

@media (min-width: 1040px) {
  .content-columns {
    max-width: 1320px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    column-gap: clamp(1.25rem, 1.7vw, 1.65rem);
    row-gap: clamp(0.9rem, 1.2vw, 1.15rem);
  }

  .news-grid article:not(.skinny-card) .article-content h2 {
    font-size: clamp(1.02rem, 1.15vw, 1.2rem);
  }
}

@media (min-width: 700px) {
  .content-columns {
    display: grid;
    grid-template-columns: minmax(0, 60%) minmax(260px, 40%);
    gap: clamp(1rem, 2vw, 1.75rem);
    align-items: start;
  }
}

/* =====================
   Sidebar Ads
===================== */
.sidebar-ads {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(0.85rem, 1.6vw, 1.2rem);
  margin-top: 0.85rem;
}

@media (min-width: 700px) {
  .sidebar-ads {
    position: sticky;
    top: calc(var(--adbar-h, 0px) + var(--header-h, 0px) + 1rem);
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}

.sidebar-ads:empty {
  display: none;
}

.grid-ad {
  background: #fffdf8;
  border: 1px solid rgba(42, 68, 85, 0.22);
  border-top: 3px solid rgba(201, 162, 39, 0.8);
  box-shadow: 0 5px 15px rgba(0,0,0,0.075);
}

.grid-ad a {
  display: block;
}

.grid-ad img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
}

.grid-ad {
  align-self: start;
}

.grid-ad .sidebar-ad {
  display: block;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.sidebar-ads .sidebar-ad {
  border: 1px solid rgba(42, 68, 85, 0.22);
  border-top: 3px solid rgba(201, 162, 39, 0.8);
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.075);
  overflow: hidden;
}

.sidebar-ads .sidebar-ad a {
  display: block;
}

.sidebar-ads .sidebar-ad img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.grid-ad .sidebar-ad a {
  display: block;
}


/* =====================
   Sidebar Widgets (Facebook, etc.)
===================== */
.sidebar-widget {
  background: #fff;
  border: 1px solid #e8e8e0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-widget-title {
  margin: 0;
  padding: 12px 14px;
  font-size: 0.95rem;
  color: var(--brand-blue);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Make the FB plugin actually fill the card width */
.sidebar-facebook .fb-page,
.sidebar-facebook .fb-page span,
.sidebar-facebook .fb-page iframe {
  width: 100% !important;
}

/* Clean Facebook embed */
.sidebar-facebook {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.sidebar-facebook-follow a{
  display:block;
  margin-top:10px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,0.08);
  text-decoration:none;
}

/* Force the plugin to obey your sidebar width */
.sidebar-facebook .fb-page,
.sidebar-facebook .fb-page span,
.sidebar-facebook .fb-page iframe{
  width:100% !important;
}



/* =====================
   SIDEBAR CALENDAR – compact rectangles for index widget
===================== */

.sidebar-calendar {
  background: #fdfaf2;
  border-radius: var(--card-radius);
  padding: 0.6rem 0.7rem 0.7rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.sidebar-calendar-title {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  color: var(--brand-blue);
}

.sidebar-calendar-events {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

/* "No events" text */
.sidebar-calendar-empty {
  margin: 0;
  font-size: 0.8rem;
  color: #555;
}

/* Link to full calendar */
.sidebar-calendar-link {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--brand-blue);
}
.sidebar-calendar-link:hover {
  text-decoration: underline;
}

/* COMPACT EVENT CARDS */
.sidebar-calendar .event-card {
  box-shadow: none;
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.12);
  overflow: hidden;
}

/* Whole card clickable rectangle, no underline */
.sidebar-calendar .event-link {
  display: flex;
  align-items: center;
  padding: 0.45rem 0.6rem;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
}

/* Compact date tag */
.sidebar-calendar .event-date-tag {
  flex: 0 0 auto;
  min-width: 46px;
  padding: 0.25rem 0.35rem;
  border-radius: 4px;
  background: #f4f5f7;
  text-align: center;
}

.sidebar-calendar .event-month {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sidebar-calendar .event-day-num {
  display: block;
  font-size: 1.05rem;
  line-height: 1.1;
  font-weight: 600;
}

/* Hide day-of-week to keep tag compact */
.sidebar-calendar .event-dow {
  display: none;
}

/* Text block */
.sidebar-calendar .event-main {
  display: flex;
  flex-direction: column;
  min-width: 0; /* allows ellipsis to work */
}

/* One-line title with ellipsis */
.sidebar-calendar .event-title {
  margin: 0 0 0.1rem;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* One-line location/time (or time), also truncated */
.sidebar-calendar .event-meta {
  margin: 0;
  font-size: 0.78rem;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hide longer description + labels inside widget */
.sidebar-calendar .event-description,
.sidebar-calendar .event-label-row {
  display: none;
}

/* Optional highlight */
.sidebar-calendar .event-featured {
  border-color: var(--brand-blue);
  background: #fefbf2;
}

/* =====================
   Mobile ad inserts between articles
===================== */

.mobile-ad {
  display: none;
}

h5 {padding-left: 5px; padding-right: 5px}

@media (max-width: 600px) {
  .mobile-ad {
    display: block;
    margin: 15px 0;
    text-align: center;
  }

  .mobile-ad .sidebar-ad {
    height: auto;
  }

  .mobile-ad img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}









/* =====================
   Article Template (single-post pages)
===================== */

.news-article {
  max-width: 880px;
  margin: 2rem auto;
  background-color: var(--gold-light);
  border-radius: var(--card-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5rem 2rem;
}

.article-title {
  border-bottom: 2px solid var(--brand-blue);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.article-title h1 {
  color: var(--brand-blue);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin: auto;
  text-align: center;
}

.article-title h4 {
  margin: 0;
  color: #444;
  font-weight: 500;
}

.article-title h5 {
  margin-top: 0.25rem;
  color: #777;
  font-weight: normal;
}

.blog-content {
  font-size: 1rem;
  color: #222;
}

.blog-content p {
  margin: 1rem 0;
  text-align: justify;
}

.blog-content figure {
  margin: 1.5rem 0;
  text-align: center;
}

.blog-content img.article-photo-left {
  width: 80%;
  max-width: 80%;
  height: auto;
  border-radius: var(--card-radius);
  display: block;
  margin: 0.5rem auto; /* centers image */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.blog-content figcaption {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.5rem;
  font-style: normal; /* avoid italics */
}

/* =====================
   Click-to-enlarge photos (Lightbox)
===================== */

/* Make photo links behave cleanly */
.photo-lightbox {
  display: block;
  border-radius: var(--card-radius);
  overflow: hidden;
  text-decoration: none;
}

/* Optional hover cue without underlines */
.photo-lightbox img {
  cursor: zoom-in;
}

/* 3-up photo rows */
.photo-row {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  margin: 1.5rem 0;
}

.photo-row-3up {
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

.photo-row .article-figure {
  margin: 0;
  text-align: center;
}

/* A generic class for photos in 3-up layouts */
.blog-content img.article-photo {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--card-radius);
  display: block;
  margin: 0 auto;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* Stack on mobile */
@media (max-width: 700px) {
  .photo-row-3up {
    grid-template-columns: 1fr;
  }
}

/* Lightbox overlay */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.lightbox.is-open {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}

/* Dialog */
.lightbox-dialog {
  position: relative;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  margin: 5vh auto 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 9999px;
  background: rgba(0,0,0,0.08);
  color: #111;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(0,0,0,0.12);
}

/* Image area */
.lightbox-figure {
  margin: 0;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.lightbox-img {
  width: 100%;
  height: auto;
  max-height: 68vh;
  object-fit: contain;
  background: #f5f5f5;
  border-radius: 12px;
}

.lightbox-caption {
  font-size: 0.95rem;
  color: #333;
  text-align: center;
}

/* Actions */
.lightbox-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 0 14px 16px;
  flex-wrap: wrap;
}

.lightbox-actions a {
  display: inline-block;
  text-decoration: none;
  font: 600 0.95rem/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  color: #111;
  background: #fff;
}

.lightbox-actions a:hover {
  background: rgba(0,0,0,0.05);
}









/* ===== In-Article Advertisement Block ===== */

.article-ad {
  background-color: #ffffff;
  border-radius: var(--card-radius);
  padding: 1.5rem 1rem;
  margin: 2rem 0;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);

  /* Middle alignment */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Professional article-ad font styling */
.article-ad-font {
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2a4455; /* your brand blue */
  margin-bottom: 0.75rem;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

/* Clean responsive image inside ad */
/* Replace the old .article-ad img rule with this */
.article-ad img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== In-Article Advertisement Block (Two Images Layout) ===== */

.article-ad {
  width: min(75%, 880px); /* matches your current inline 75% idea, with a sensible cap */
  margin-left: auto;
  margin-right: auto;
}

/* Grid wrapper for two ad images */
.article-ad-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

/* Make the entire tile clickable */
.article-ad-link {
  display: block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

/* Image behavior: fill its tile consistently */
.article-ad-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0; /* tile already has radius */
  object-fit: cover;
}

/* Stack the two ads on small screens */
@media (max-width: 700px) {
  .article-ad {
    width: 100%;
  }

  .article-ad-grid {
    grid-template-columns: 1fr;
  }
}










/* =====================
   Load More
===================== */
.load-more {
  text-align: center;
  margin: 1.5rem 0 0;
}

.load-more button {
  min-width: 180px;
  padding: 0.65rem 1.25rem;
  border: none;
  background-color: var(--brand-blue);
  color: #fff;
  cursor: pointer;
  border-radius: 8px;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.load-more button:hover,
.load-more button:focus {
  background-color: #666;
}





























/* =====================
   Footer
===================== */
.container {
  max-width: var(--brand-max);
  margin: 0 auto;
  padding: 0 1rem;
}

.site-footer {
  background: var(--header-bg);
  color: var(--header-fg);
  border-top: 1px solid var(--header-border);
  height: 64px;
  display: flex;
  align-items: center;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  flex-wrap: nowrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 1;
}

.creamsicle-logo {
  height: 100%;
  max-height: 64px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.creamsicle-logo:hover {
  opacity: 1;
}

.footer-text {
  margin: 0;
  font: 400 0.95rem/1.4 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--header-fg);
  white-space: nowrap;
}

.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.footer-fb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--header-border);
  background: #1877F2;
  color: #fff;
  text-decoration: none;
  font: 600 0.9rem/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  transition: background-color 0.2s ease, transform 0.08s ease, box-shadow 0.15s ease;
}

.footer-fb:hover {
  background: #145dbf;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.footer-fb:active {
  transform: translateY(1px);
}

.footer-fb svg {
  flex-shrink: 0;
}

@media (max-width: 500px) {
  .footer-text {
    font-size: 0.8rem;
    white-space: normal;
  }
  .footer-fb span {
    display: none;
  }
  .footer-fb svg {
    width: 20px;
    height: 20px;
  }
}

/* =====================
   Responsive Tweaks
===================== */
@media (max-width: 700px) {
  .news-article {
    padding: 1.2rem;
    margin: 1rem;
  }
  .article-title h1 {
    font-size: 1.5rem;
  }
}

/* =====================
   Utility
===================== */
figure figcaption {
  font-style: normal;
}



.contact-button {
    display: inline-block;
    text-decoration: none;
    background-color: #1f4e79; /* lighter blue */
    color: #ffffff;
    border-radius: 6px;
    padding: 8px 12px;
    transition: all 0.25s ease;
    margin-top: 10px;
    max-width: 260px; /* keeps it compact */
}

.contact-button:hover {
    background-color: #f4b400; /* your gold */
    color: #0b2c4a;
}

.contact-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    font-size: 16px;
}

.contact-name {
    font-size: 14px;
    font-weight: 600;
}

.contact-details,
.contact-phone {
    font-size: 12px;
    line-height: 1.2;
}

/* =====================
   Newsletter Signup Page
===================== */
.newsletter-page {
  background: #fffaf0;
  min-height: 70vh;
}

.newsletter-hero {
  border-top: 3px solid var(--brand-blue);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: linear-gradient(180deg, #fffdf8 0%, #fff6dc 100%);
  padding: clamp(2rem, 5vw, 4rem) 1rem;
}

.newsletter-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.newsletter-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}

.newsletter-confirmation-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  align-items: start;
}

.newsletter-kicker {
  margin: 0 0 0.75rem;
  color: var(--brand-blue);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-title {
  margin: 0;
  max-width: 760px;
  color: #111;
  font-size: clamp(2.35rem, 7vw, 5.75rem);
  line-height: 0.95;
}

.newsletter-deck {
  max-width: 650px;
  margin: 1rem 0 0;
  color: #2b2b2b;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
}

.newsletter-note {
  margin: 1rem 0 0;
  color: #4a4a4a;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.95rem;
}

.newsletter-card {
  container-type: inline-size;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  padding: clamp(1.2rem, 3vw, 1.75rem);
}

.newsletter-card h2,
.newsletter-section h2 {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.1;
}

.newsletter-card p,
.newsletter-section p {
  margin: 0.75rem 0 0;
  color: #333;
}

.newsletter-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.newsletter-plan {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: 1rem;
  background: #fdfaf2;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
}

.newsletter-plan strong {
  display: block;
  color: #111;
  font-size: 1.25rem;
}

.newsletter-price {
  margin: 0.35rem 0 0;
  color: var(--brand-blue);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
}

.newsletter-price span {
  color: #555;
  font-size: 0.9rem;
  font-weight: 700;
}

.newsletter-plan p {
  flex: 1;
  font-size: 0.95rem;
}

.newsletter-button,
.newsletter-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 46px;
  margin-top: 1rem;
  border: 0;
  border-radius: 8px;
  background: var(--sunflower-yellow);
  color: #111;
  cursor: pointer;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
  padding: 0.85rem 0.9rem;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}

.newsletter-button:hover,
.newsletter-submit:hover {
  background: #e6b800;
}

.newsletter-button.secondary {
  background: var(--brand-blue);
  color: #fff;
}

.newsletter-button.secondary:hover {
  background: #1e3443;
}

.newsletter-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: stretch;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.newsletter-content > .newsletter-section,
.newsletter-content > .newsletter-promo {
  height: 100%;
}

.newsletter-section {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  padding: clamp(1.2rem, 3vw, 1.75rem);
}

.newsletter-promo {
  display: flex;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.newsletter-promo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.newsletter-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: #222;
}

.newsletter-insider-list {
  display: grid;
  gap: 0.6rem;
  padding-left: 0;
  list-style: none;
}

.newsletter-insider-list li {
  position: relative;
  padding-left: 1.9rem;
  font-weight: 700;
}

.newsletter-insider-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border-radius: 999px;
  background: var(--sunflower-yellow);
  color: #111;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1;
}

.newsletter-list li + li {
  margin-top: 0.45rem;
}

.newsletter-insider-list li + li {
  margin-top: 0;
}

.newsletter-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.newsletter-form label {
  display: grid;
  gap: 0.35rem;
  color: #111;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
}

.newsletter-form input,
.newsletter-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #333;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.9rem;
}

.newsletter-consent input {
  width: auto;
  min-height: auto;
  margin-top: 0.25rem;
}

.newsletter-status {
  min-height: 1.3rem;
  margin: 0;
  color: var(--brand-blue);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.newsletter-confirmation {
  display: grid;
  gap: 1rem;
}

.newsletter-confirmation .newsletter-title {
  line-height: 1.08;
}

.newsletter-section .sib-form,
.newsletter-section .sib-form-container,
.newsletter-section #sib-container {
  width: 100% !important;
  max-width: none !important;
}

.newsletter-section .sib-form {
  padding: 0 !important;
}

.newsletter-success-mark {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--sunflower-yellow);
  color: #111;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
}

.newsletter-next-steps {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.newsletter-step {
  padding: 0.9rem 1rem;
  background: #fdfaf2;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
}

.newsletter-step strong {
  display: block;
  color: var(--brand-blue);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.newsletter-small {
  margin-top: 0.75rem;
  color: #555;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.9rem;
}

/* =====================
   Article Search
===================== */
.article-search-wrap {
  width: 95%;
  max-width: 1320px;
  max-height: 260px;
  margin: 0.65rem auto 0.9rem;
  padding: 0 0.25rem;
  overflow: clip;
}

.insider-home-band {
  padding: clamp(0.35rem, 0.8vw, 0.55rem);
  border-top: 1px solid rgba(42, 68, 85, 0.12);
  border-bottom: 1px solid rgba(42, 68, 85, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf8 0%, #fff6dc 100%);
}

.article-search-row {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(0.4rem, 0.9vw, 0.7rem);
  align-items: center;
}

.article-search {
  display: grid;
  gap: 0.35rem;
  align-content: center;
  min-width: 0;
  min-height: 0;
  padding: clamp(0.45rem, 1vw, 0.7rem);
  border: 1px solid rgba(42, 68, 85, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.article-search label {
  color: var(--brand-blue);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.article-search-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.35rem;
  align-items: center;
}

.article-search input {
  width: 100%;
  min-height: 38px;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 7px;
  color: #111;
  background: #fffaf0;
  font-family: Georgia, serif;
  font-size: 0.96rem;
}

.article-search input:focus {
  outline: 3px solid rgba(201,162,39,0.35);
  border-color: var(--gold);
}

.article-search button {
  min-height: 38px;
  padding: 0.48rem 0.75rem;
  border: 0;
  border-radius: 7px;
  background: var(--brand-blue);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
}

.article-search button:hover,
.article-search button:focus-visible {
  background: #1f3442;
}

.article-search .article-search-clear {
  background: #ece7dc;
  color: #111;
}

.article-search .article-search-clear:hover,
.article-search .article-search-clear:focus-visible {
  background: #ded6c8;
}

.article-search-ad {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.article-search-ad-link {
  display: block;
  line-height: 0;
}

.article-search-ad-note {
  display: block;
  max-width: none;
  margin: 0;
  color: var(--brand-blue);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.article-search-ad img {
  display: block;
  width: auto;
  height: clamp(86px, 9vw, 120px);
  max-height: 120px;
  max-width: 100%;
  object-fit: contain;
}

.article-search-status,
.article-search-empty {
  margin: 0.45rem 0 0;
  color: #444;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.92rem;
}

.article-search-empty {
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  background: #fdfaf2;
  color: var(--brand-blue);
  font-weight: 700;
}

@media (max-width: 680px) {
  .article-search-wrap {
    max-height: 260px;
  }

  .article-search-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .article-search-controls {
    grid-template-columns: 1fr 1fr;
  }

  .article-search-controls input {
    grid-column: 1 / -1;
  }

  .article-search-ad {
    width: 100%;
    gap: 0.25rem;
    min-height: 0;
  }

  .article-search-ad-note {
    max-width: none;
    text-align: center;
  }

  .article-search-ad img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: 92px;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .article-search button {
    width: 100%;
  }
}

/* =====================
   Article Navigation
===================== */
.next-article-nav {
  width: 100%;
  max-width: 760px;
  margin: 2rem auto 1rem;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.next-article-button {
  display: grid;
  gap: 0.15rem;
  padding: 0.95rem 1.1rem;
  border-radius: 8px;
  background: var(--brand-blue);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.next-article-button:hover,
.next-article-button:focus-visible {
  background: #1f3442;
  color: #fff;
}

.next-article-button-previous {
  background: #ece7dc;
  color: #111;
}

.next-article-button-previous:hover,
.next-article-button-previous:focus-visible {
  background: #ded6c8;
  color: #111;
}

.next-article-label {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.next-article-title {
  font-family: Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
}

.next-article-home {
  text-align: center;
  font-weight: 800;
}

.insider-float {
  position: fixed;
  right: clamp(12px, 2vw, 22px);
  bottom: clamp(12px, 2vw, 22px);
  z-index: 2000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100vw - 24px);
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(0,0,0,0.14);
  border-radius: 999px;
  background: var(--sunflower-yellow);
  color: #111;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.insider-float:hover,
.insider-float:focus-visible {
  background: #e6b800;
  color: #111;
  transform: translateY(-1px);
}

@media (max-width: 650px) {
  .next-article-nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 850px) {
  .newsletter-hero-grid,
  .newsletter-content {
    grid-template-columns: 1fr;
  }

  .newsletter-content > .newsletter-section,
  .newsletter-content > .newsletter-promo {
    height: auto;
  }

  .newsletter-promo img {
    height: auto;
  }
}

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

@container (max-width: 460px) {
  .newsletter-plans {
    grid-template-columns: 1fr;
  }
}

@container (max-width: 340px) {
  .newsletter-button,
  .newsletter-submit {
    font-size: 0.9rem;
    padding: 0.75rem 0.7rem;
  }
}

/* Final desktop/tablet article layout guard */
@media (min-width: 700px) {
  .content-columns {
    display: grid !important;
    grid-template-columns: minmax(0, 60%) minmax(0, 40%) !important;
    gap: clamp(1rem, 2vw, 1.75rem) !important;
    align-items: start !important;
  }

  .content-columns > .articles-col {
    grid-column: 1 !important;
    min-width: 0 !important;
  }

  .content-columns > .articles-col > .news-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
    width: 100% !important;
  }

  .content-columns > .sidebar-ads {
    grid-column: 2 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-content: start !important;
    width: 100% !important;
    min-width: 0 !important;
    margin-top: 0 !important;
  }

  .content-columns > .articles-col > .news-grid > article,
  .content-columns > .articles-col > .news-grid > .grid-ad {
    grid-column: 1 !important;
    grid-row-end: auto !important;
  }

  .content-columns > .sidebar-ads .sidebar-ad,
  .content-columns > .sidebar-ads .sidebar-ad a,
  .content-columns > .sidebar-ads .sidebar-ad img {
    width: 100% !important;
    max-width: 100% !important;
  }

  .content-columns > .sidebar-ads .sidebar-ad img {
    display: block !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .content-columns > .articles-col > .news-grid > .grid-ad {
    display: none !important;
  }
}

@media (max-width: 699px) {
  .content-columns {
    display: block;
  }

  .content-columns > .sidebar-ads {
    display: none;
  }
}
