/*
Theme Name: Mustang Magazine
Theme URI: https://mustangmag.com
Author: Mustang Magazine
Description: A clean white automotive editorial magazine theme for Mustang Magazine. Fully editable — all text, links, ads, menus, and content managed through WordPress admin.
Version: 4.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mustang-magazine
Tags: light, magazine, automotive, custom-menu, featured-images, wide-blocks
*/

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Barlow:wght@400;500;600&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&display=swap');

/* ─── VARIABLES ─── */
:root {
  --red:      #C8102E;
  --red-d:    #a00d24;
  --red-lt:   #fdf2f4;    /* light red tint for hover states */

  /* Light palette */
  --white:    #ffffff;
  --bg:       #f8f8f6;    /* off-white page background */
  --bg2:      #f2f2ef;    /* slightly deeper for cards */
  --bg3:      #eaeae6;    /* deepest light bg, inputs */
  --border:   #e0e0da;    /* subtle borders */
  --border-d: #c8c8c0;    /* stronger border when needed */

  /* Text */
  --text:     #1a1a1a;    /* near-black body text — high contrast */
  --text-2:   #444444;    /* secondary text */
  --muted:    #777777;    /* captions, meta — passes WCAG AA */
  --heading:  #111111;    /* headings */

  /* Keep black for nav/footer accent */
  --black:    #111111;
  --nav-bg:   #ffffff;
  --nav-border: #e0e0da;

  --fh: 'Oswald', Impact, 'Arial Narrow', sans-serif;
  --fb: 'Barlow', Arial, sans-serif;
  --fs: 'Source Serif 4', Georgia, serif;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--text); text-decoration: none; transition: color .18s; }
a:hover { color: var(--red); }
img { display: block; max-width: 100%; height: auto; }
p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.4rem; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--fh);
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--heading);
}

/* ─── CONTAINER ─── */
.mm-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--red); color: #fff; padding: 8px 16px; z-index: 9999;
  font-family: var(--fh); font-size: 13px; text-transform: uppercase;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ════════════════════════════════════════════
   TOP BAR
════════════════════════════════════════════ */
#mm-topbar {
  background: var(--black);
  border-bottom: 1px solid #222;
  padding: 6px 0;
  font-size: 12px;
  color: #aaa;
  letter-spacing: .04em;
  text-transform: uppercase;
}
#mm-topbar .mm-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mm-topbar-links { display: flex; gap: 18px; flex-wrap: wrap; }
.mm-topbar-links a { color: #aaa; transition: color .15s; }
.mm-topbar-links a:hover { color: #fff; }
.mm-topbar-social { display: flex; gap: 14px; align-items: center; }
.mm-topbar-social a {
  color: #aaa;
  font-size: 11px;
  letter-spacing: .06em;
  transition: color .15s;
}
.mm-topbar-social a:hover { color: var(--red); }

/* ════════════════════════════════════════════
   SITE HEADER
════════════════════════════════════════════ */
#mm-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  box-shadow: 0 1px 0 var(--border);
}
#mm-header .mm-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.mm-site-branding { line-height: 1; flex-shrink: 0; }
.mm-site-title {
  font-family: var(--fh);
  font-size: 42px;
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
}
.mm-site-title a { color: var(--heading); }
.mm-site-title a:hover { color: var(--red); }
.mm-site-title .accent { color: var(--red); }
.mm-site-tagline {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
  font-family: var(--fb);
}
.mm-custom-logo-link img { max-height: 120px; width: auto; }

/* Search form */
.mm-header-search {
  display: flex;
  flex: 0 0 260px;
}
.mm-header-search input[type="search"] {
  background: var(--bg3);
  border: 1px solid var(--border-d);
  border-right: none;
  color: var(--text);
  font-family: var(--fb);
  font-size: 13px;
  padding: 9px 14px;
  flex: 1;
  outline: none;
  border-radius: 3px 0 0 3px;
  -webkit-appearance: none;
}
.mm-header-search input::placeholder { color: var(--muted); }

/* ─── ACCESSIBILITY: Focus styles ─── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }

.mm-header-search button {
  background: var(--red);
  border: none;
  color: #fff;
  padding: 9px 14px;
  cursor: pointer;
  border-radius: 0 3px 3px 0;
  font-size: 14px;
  transition: background .2s;
  line-height: 1;
}
.mm-header-search button:hover { background: var(--red-d); }

/* Subscribe CTA */
.mm-subscribe-btn {
  background: var(--red);
  color: #fff !important;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}
.mm-subscribe-btn:hover { background: var(--red-d); color: #fff !important; }

/* ════════════════════════════════════════════
   PRIMARY NAVIGATION
════════════════════════════════════════════ */
#mm-nav {
  background: var(--white);
  border-bottom: 2px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}
#mm-nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.10); }
#mm-nav .mm-container { display: flex; align-items: stretch; }

/* Menu */
#mm-primary-menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0; padding: 0;
  width: 100%;
}
#mm-primary-menu > li { position: relative; }
#mm-primary-menu > li > a {
  display: block;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 13px 15px;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}
#mm-primary-menu > li > a:hover,
#mm-primary-menu > li.current-menu-item > a,
#mm-primary-menu > li.current-menu-ancestor > a {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Dropdown */
#mm-primary-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  min-width: 200px;
  list-style: none;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(0,0,0,.10);
}
#mm-primary-menu > li:hover > .sub-menu,
#mm-primary-menu > li:focus-within > .sub-menu { display: block; }
#mm-primary-menu .sub-menu li a {
  display: block;
  padding: 10px 16px;
  font-family: var(--fh);
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color .15s, background .15s;
}
#mm-primary-menu .sub-menu li:last-child a { border-bottom: none; }
#mm-primary-menu .sub-menu li a:hover {
  color: var(--red);
  background: var(--red-lt);
  padding-left: 20px;
}
#mm-primary-menu > li.menu-item-has-children > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: .5;
  transition: opacity .15s;
}
#mm-primary-menu > li.menu-item-has-children:hover > a::after { opacity: 1; }
#mm-primary-menu .sub-menu li.current-menu-item > a,
#mm-primary-menu .sub-menu li.current-menu-ancestor > a {
  color: var(--red);
  background: var(--red-lt);
}

/* Mobile toggle */
.mm-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-d);
  color: var(--text);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 18px;
  margin: 8px 0;
  border-radius: 3px;
  font-family: var(--fb);
}

/* ════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════ */
.mm-hero {
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
}
.mm-hero-main {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: block;
}
.mm-hero-main .mm-thumb {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.mm-hero-main:hover .mm-thumb { transform: scale(1.02); }
.mm-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.20) 55%, transparent 100%);
}
.mm-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 26px;
}
.mm-hero-content h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 9px;
}
.mm-hero-content h1 a { color: #fff; }
.mm-hero-content h1 a:hover { color: var(--red); }
.mm-hero-content .mm-excerpt {
  font-size: 13px;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
  margin-bottom: 9px;
  max-width: 540px;
}
.mm-hero-content .mm-meta { font-size: 12px; color: rgba(255,255,255,.72); }

/* Hero sidebar */
.mm-hero-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mm-hero-side-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: block;
  flex: 1;
}
.mm-hero-side-card .mm-thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform .3s;
}
.mm-hero-side-card:hover .mm-thumb { transform: scale(1.05); }
.mm-hero-side-card .mm-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.08) 65%, transparent 100%);
}
.mm-hero-side-card .mm-hero-content { padding: 12px 14px; }
.mm-hero-side-card h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}
.mm-hero-side-card h3 a { color: #fff; }
.mm-hero-side-card h3 a:hover { color: var(--red); }

/* ─── Category Tag ─── */
.mm-cat-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 8px;
  transition: background .2s;
}
.mm-cat-tag:hover { background: var(--red-d); color: #fff; }

/* ════════════════════════════════════════════
   BREAKING NEWS TICKER
════════════════════════════════════════════ */
.mm-ticker {
  background: var(--red);
  overflow: hidden;
  padding: 7px 0;
  margin-top: 20px;
}
.mm-ticker-track {
  display: flex;
  animation: mm-tick 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.mm-ticker-track:hover { animation-play-state: paused; }
.mm-ticker-track span {
  font-size: 11px;
  color: #fff;
  padding: 0 30px;
  letter-spacing: .04em;
}
.mm-ticker-track span::after { content: ' //'; opacity: .5; margin-left: 6px; }
@keyframes mm-tick {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════
   SECTION HEADERS
════════════════════════════════════════════ */
.mm-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 2px solid var(--border);
  margin-bottom: 22px;
}
.mm-section-title {
  font-family: var(--fh);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--heading);
  border-bottom: 3px solid var(--red);
  padding-bottom: 10px;
  margin-bottom: -2px;
}
.mm-section-more {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 10px;
  transition: color .15s;
}
.mm-section-more:hover { color: var(--red); }

/* ════════════════════════════════════════════
   CONTENT LAYOUT
════════════════════════════════════════════ */
.mm-content-wrap {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
}
.mm-content-wrap.mm-no-sidebar { grid-template-columns: 1fr; }

/* ════════════════════════════════════════════
   POST CARDS
════════════════════════════════════════════ */
.mm-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}
.mm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.mm-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
}
.mm-card-thumb-wrap { overflow: hidden; display: block; }
.mm-card .mm-thumb {
  width: 100%;
  height: 185px;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.mm-card:hover .mm-thumb { transform: scale(1.04); }
.mm-card-body { padding: 16px; }
.mm-card-title {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--heading);
  line-height: 1.25;
  margin-bottom: 8px;
  display: block;
}
.mm-card-title:hover { color: var(--red); }
.mm-card-excerpt { font-size: 13px; color: var(--text-2); line-height: 1.5; margin-bottom: 9px; }
.mm-card-meta { font-size: 12px; color: var(--muted); }
.mm-card-meta a { color: var(--muted); }
.mm-card-meta a:hover { color: var(--red); }

/* Wide card */
.mm-card-wide {
  display: grid;
  grid-template-columns: 240px 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  transition: box-shadow .2s, transform .2s;
}
.mm-card-wide:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.09);
}
.mm-card-wide .mm-thumb { width: 100%; height: 100%; min-height: 160px; object-fit: cover; }
.mm-card-wide .mm-card-body { padding: 20px 22px; display: flex; flex-direction: column; justify-content: center; }
.mm-card-wide .mm-card-title { font-size: 18px; }

/* ════════════════════════════════════════════
   PROMO / FEATURE BANNER
════════════════════════════════════════════ */
.mm-promo-banner {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 4px;
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
  position: relative;
  overflow: hidden;
}
.mm-promo-banner::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(200,16,46,.06) 0%, transparent 70%);
  pointer-events: none;
}
.mm-promo-eyebrow {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.mm-promo-title {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--heading);
  line-height: 1.1;
  margin-bottom: 8px;
}
.mm-promo-sub { font-size: 14px; color: var(--text-2); }
.mm-promo-cta {
  background: var(--red);
  color: #fff !important;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}
.mm-promo-cta:hover { background: var(--red-d); }

/* ════════════════════════════════════════════
   VIDEO GRID
════════════════════════════════════════════ */
.mm-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 34px;
}
.mm-video-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.mm-video-thumb-wrap { position: relative; overflow: hidden; display: block; }
.mm-video-card .mm-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform .3s;
}
.mm-video-card:hover .mm-thumb { transform: scale(1.04); }
.mm-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 46px; height: 46px;
  background: rgba(200,16,46,.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
  transition: transform .2s, background .2s;
  pointer-events: none;
}
.mm-video-card:hover .mm-play-btn { transform: translate(-50%,-50%) scale(1.1); background: var(--red-d); }
.mm-video-dur {
  position: absolute; bottom: 7px; right: 8px;
  background: rgba(0,0,0,.80); color: #fff;
  font-size: 11px; padding: 2px 6px; border-radius: 2px;
}

/* ════════════════════════════════════════════
   SINGLE POST
════════════════════════════════════════════ */
.mm-single-header { margin-bottom: 20px; }
.mm-single-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--heading);
}
.mm-single-meta {
  font-size: 13px; color: var(--muted);
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.mm-single-meta a { color: var(--muted); }
.mm-single-meta a:hover { color: var(--red); }

/* ── Post body text ── */
.mm-post-content {
  font-family: var(--fs);
  font-size: 17px;
  line-height: 1.82;
  color: var(--text-2);
}
.mm-post-content h2 {
  font-size: 22px;
  border-left: 4px solid var(--red);
  padding-left: 14px;
  margin: 2rem 0 .9rem;
  line-height: 1.3;
  color: var(--heading);
}
.mm-post-content h3 {
  font-size: 19px;
  margin: 1.8rem 0 .8rem;
  line-height: 1.35;
  color: var(--heading);
}
.mm-post-content p { margin-bottom: 1.3rem; }
.mm-post-content a { color: var(--red); text-decoration: underline; }
.mm-post-content strong { color: var(--heading); }
.mm-post-content ul, .mm-post-content ol {
  margin-bottom: 1.3rem;
  padding-left: 1.4rem;
}
.mm-post-content li { margin-bottom: .4rem; }
.mm-post-content blockquote {
  border-left: 4px solid var(--red) !important;
  background: #1a1a1a !important;
  padding: 16px 20px;
  margin: 1.8rem 0;
  font-style: italic;
  color: #ffffff !important;
  border-radius: 0 4px 4px 0;
}
.mm-post-content blockquote,
.mm-post-content blockquote p,
.mm-post-content blockquote * {
  color: #ffffff !important;
}

/* ── Article featured image ── */
.mm-single-hero {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: unset;
  border-radius: 4px;
  display: block;
  margin: 18px 0 26px;
}

/* ── In-content images ── */
.mm-post-content img {
  border-radius: 4px;
  margin: 1.6rem auto;
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}
.mm-post-content .wp-block-image { margin: 1.6rem 0; }
.mm-post-content .wp-block-image img {
  margin: 0 auto;
  border-radius: 4px;
  width: 100%;
  height: auto;
}
.mm-post-content .wp-block-image figcaption {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 6px;
  font-style: italic;
}
.mm-post-content .wp-block-image.alignleft img,
.mm-post-content .wp-block-image.alignright img {
  width: auto;
  max-width: 45%;
  max-height: 320px;
}
.mm-post-content .wp-block-image.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.mm-post-content .wp-block-image.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.mm-post-content .wp-block-image.aligncenter { text-align: center; }
.mm-post-content p:after { content: ''; display: table; clear: both; }

/* ════════════════════════════════════════════
   PAGINATION
════════════════════════════════════════════ */
.mm-pagination {
  display: flex; justify-content: center;
  gap: 6px; margin: 28px 0;
}
.mm-pagination a, .mm-pagination span {
  display: flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 10px;
  background: var(--white); border: 1px solid var(--border-d);
  font-family: var(--fh); font-size: 13px; font-weight: 600;
  color: var(--text-2); border-radius: 3px;
  transition: background .2s, color .2s, border-color .2s;
}
.mm-pagination a:hover, .mm-pagination .current {
  background: var(--red); border-color: var(--red); color: #fff;
}

/* ════════════════════════════════════════════
   SIDEBAR
════════════════════════════════════════════ */
.mm-sidebar {}

/* Newsletter widget */
.mm-newsletter-widget {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 22px 18px;
  margin-bottom: 26px;
  text-align: center;
}
.mm-newsletter-widget h3 {
  font-family: var(--fh);
  font-size: 16px; font-weight: 700;
  text-transform: uppercase; color: var(--heading);
  margin-bottom: 6px;
}
.mm-newsletter-widget p { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.mm-newsletter-widget input[type="email"] {
  width: 100%;
  background: var(--white); border: 1px solid var(--border-d);
  color: var(--text); font-family: var(--fb); font-size: 13px;
  padding: 9px 12px; margin-bottom: 8px; outline: none; border-radius: 3px;
}
.mm-newsletter-widget input::placeholder { color: var(--muted); }
.mm-newsletter-widget input[type="submit"], .mm-newsletter-widget button {
  width: 100%; background: var(--red); color: #fff;
  font-family: var(--fh); font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  border: none; padding: 10px; cursor: pointer; border-radius: 3px;
  transition: background .2s;
}
.mm-newsletter-widget input[type="submit"]:hover,
.mm-newsletter-widget button:hover { background: var(--red-d); }

/* Generic sidebar widget */
.mm-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 26px;
  overflow: hidden;
}
.mm-widget .widget-title,
.mm-widget h3 {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 10px 16px;
  font-family: var(--fh);
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--heading); margin: 0;
}
.mm-widget .widget-content,
.mm-widget > *:not(.widget-title):not(h3) { padding: 14px 16px; }
.mm-widget ul { list-style: none; padding: 0; }
.mm-widget ul li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.mm-widget ul li:last-child { border-bottom: none; }
.mm-widget ul li a { color: var(--text-2); }
.mm-widget ul li a:hover { color: var(--red); }
.mm-widget .cat-item { display: flex; justify-content: space-between; }

/* Popular posts */
.mm-popular-list { list-style: none; padding: 0; }
.mm-popular-list li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.mm-popular-list li:last-child { border-bottom: none; padding-bottom: 0; }
.mm-pop-num {
  font-family: var(--fh); font-size: 20px; font-weight: 700;
  color: var(--border-d); line-height: 1; min-width: 22px;
  transition: color .15s;
}
.mm-popular-list li:hover .mm-pop-num { color: var(--red); }
.mm-pop-title {
  font-family: var(--fh); font-size: 13px; font-weight: 600;
  text-transform: uppercase; color: var(--text-2); line-height: 1.25;
}
.mm-pop-title:hover { color: var(--red); }
.mm-pop-meta { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* ════════════════════════════════════════════
   AD ZONES
════════════════════════════════════════════ */
.mm-ad-zone {
  margin-bottom: 26px;
  text-align: center;
  display: inline-block;
}
.mm-ad-zone a { display: block; }
.mm-ad-zone img { max-width: 100%; border-radius: 2px; }
.mm-ad-zone .mm-ad-label {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
  text-align: center;
}
.mm-ad-placeholder {
  background: var(--bg3);
  border: 1px dashed var(--border-d);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 11px;
  font-family: var(--fh);
  letter-spacing: .08em;
  text-transform: uppercase;
  gap: 6px;
  padding: 20px;
}
.mm-ad-placeholder span { color: var(--border-d); font-size: 10px; }
.mm-ad-inline { margin: 28px 0; text-align: center; }
.mm-ad-leaderboard {
  max-width: 1100px;
  margin: 0 auto 28px;
  padding: 0 24px;
  text-align: center;
}

/* ════════════════════════════════════════════
   ARCHIVE / CATEGORY HEADER
════════════════════════════════════════════ */
.mm-archive-header {
  background: var(--bg2);
  border-bottom: 3px solid var(--red);
  padding: 28px 0;
  margin-bottom: 30px;
}
.mm-archive-title { font-size: 30px; font-weight: 700; margin-bottom: 6px; color: var(--heading); }
.mm-archive-desc { color: var(--muted); font-size: 14px; }

/* ════════════════════════════════════════════
   404
════════════════════════════════════════════ */
.mm-404 { text-align: center; padding: 80px 20px; }
.mm-404 h1 { font-size: 90px; color: var(--red); line-height: 1; }
.mm-404 h2 { font-size: 26px; margin-bottom: 14px; color: var(--heading); }
.mm-404 p { color: var(--muted); margin-bottom: 24px; }
.mm-btn {
  display: inline-block;
  background: var(--red); color: #fff;
  font-family: var(--fh); font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 12px 28px; border-radius: 3px;
  transition: background .2s;
}
.mm-btn:hover { background: var(--red-d); color: #fff; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
#mm-footer {
  background: var(--black);
  border-top: 3px solid var(--red);
  padding: 40px 0 0;
  margin-top: 40px;
}
.mm-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #2a2a2a;
  margin-bottom: 22px;
}
.mm-footer-brand-logo {
  font-family: var(--fh); font-size: 28px; font-weight: 700;
  color: #fff; text-transform: uppercase;
  margin-bottom: 12px; line-height: 1;
}
.mm-footer-brand-logo a { color: #fff; }
.mm-footer-brand-logo .accent { color: var(--red); }
.mm-footer-brand-logo img { max-height: 50px; width: auto; margin-bottom: 8px; }
.mm-footer-desc { font-size: 13px; color: #999; line-height: 1.65; margin-bottom: 18px; }
.mm-footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.mm-footer-social a {
  background: #222; color: #999;
  padding: 6px 12px; font-family: var(--fh); font-size: 10px;
  letter-spacing: .06em; border-radius: 2px;
  transition: background .2s, color .2s;
}
.mm-footer-social a:hover { background: var(--red); color: #fff; }
.mm-footer-col-title {
  font-family: var(--fh); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #fff; border-bottom: 2px solid var(--red);
  padding-bottom: 8px; margin-bottom: 14px;
}
.mm-footer-nav { list-style: none; }
.mm-footer-nav li { margin-bottom: 9px; }
.mm-footer-nav a { font-size: 13px; color: #999; transition: color .15s; }
.mm-footer-nav a:hover { color: #fff; }
#mm-footer .menu { list-style: none; padding: 0; margin: 0; }
#mm-footer .menu li { margin-bottom: 9px; }
#mm-footer .menu a { font-size: 13px; color: #999; transition: color .15s; }
#mm-footer .menu a:hover { color: #fff; }
.mm-footer-bottom {
  padding: 16px 0;
  display: flex; justify-content: center; align-items: center;
  font-size: 12px; color: #666;
  flex-wrap: wrap; gap: 10px; text-align: center;
}

/* ════════════════════════════════════════════
   COMMENTS
════════════════════════════════════════════ */
.mm-comments { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--border); }
.mm-comments .comments-title { font-size: 18px; margin-bottom: 24px; color: var(--heading); }
.comment-list { list-style: none; padding: 0; }
.comment { padding: 18px 0; border-bottom: 1px solid var(--border); }
.comment-author b { font-family: var(--fh); font-size: 14px; color: var(--heading); }
.comment-meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.comment-content p { font-size: 14px; color: var(--text-2); margin-bottom: 0; }
.comment-form p { margin-bottom: 14px; }
.comment-form label {
  display: block; font-family: var(--fh); font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-2); margin-bottom: 5px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%; background: var(--white); border: 1px solid var(--border-d);
  color: var(--text); font-family: var(--fb); font-size: 14px;
  padding: 10px 12px; outline: none; border-radius: 3px;
}
.comment-form textarea { min-height: 120px; resize: vertical; }
.comment-form input[type="submit"] {
  background: var(--red); color: #fff; width: auto; padding: 10px 26px;
  font-family: var(--fh); font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; cursor: pointer; border: none; border-radius: 3px;
  transition: background .2s; font-size: 13px;
}
.comment-form input[type="submit"]:hover { background: var(--red-d); }

/* ════════════════════════════════════════════
   COOKIE CONSENT BANNER
════════════════════════════════════════════ */
#mm-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: 0 -4px 24px rgba(0,0,0,.12);
  z-index: 99999;
  padding: 14px 0;
  display: none; /* shown via JS once DOM ready */
}
#mm-cookie-banner.mm-cookie-visible { display: block; }
#mm-cookie-banner .mm-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.mm-cookie-text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}
.mm-cookie-text a {
  color: var(--red);
  text-decoration: underline;
}
.mm-cookie-text a:hover { color: var(--red-d); }
.mm-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
  flex-wrap: wrap;
}
.mm-cookie-accept {
  background: var(--red);
  color: #fff;
  border: none;
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 3px;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.mm-cookie-accept:hover { background: var(--red-d); }
.mm-cookie-decline {
  background: none;
  color: var(--muted);
  border: 1px solid var(--border-d);
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 3px;
  cursor: pointer;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.mm-cookie-decline:hover { color: var(--text); border-color: var(--text-2); }

/* ════════════════════════════════════════════
   NEWSLETTER INLINE (article widget)
════════════════════════════════════════════ */
.rem-nl-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  padding: 20px 24px;
  margin: 28px 0;
}
.rem-nl-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.rem-nl-text { flex: 1; min-width: 200px; }
.rem-nl-label {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--heading);
  margin-bottom: 4px;
}
.rem-nl-sub { font-size: 13px; color: var(--muted); line-height: 1.5; }
.rem-nl-form-wrap { flex: 1; min-width: 280px; }
.rem-nl-form { display: flex; gap: 8px; flex-wrap: wrap; }
.rem-nl-name, .rem-nl-email {
  flex: 1;
  min-width: 120px;
  background: var(--white);
  border: 1px solid var(--border-d);
  color: var(--text);
  border-radius: 3px;
  padding: 9px 12px;
  font-size: 13px;
  outline: none;
}
.rem-nl-name:focus, .rem-nl-email:focus { border-color: var(--red); }
.rem-nl-btn {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--fh);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.rem-nl-btn:hover { background: var(--red-d); }
.rem-nl-msg { margin-top: 8px; font-size: 12px; padding: 7px 12px; border-radius: 3px; }
.rem-nl-msg.ok { background: #d4edda; border: 1px solid #c3e6cb; color: #155724; }
.rem-nl-msg.err { background: #f8d7da; border: 1px solid #f5c2c7; color: #842029; }

/* ════════════════════════════════════════════
   ACCESSIBILITY UTILITIES
════════════════════════════════════════════ */
.screen-reader-text {
  border: 0;
  clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: var(--white);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0,0,0,.2);
  clip: auto !important;
  clip-path: none;
  color: var(--heading);
  display: block;
  font-size: 14px;
  font-weight: 600;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
.mm-subscribe-btn,
.mm-menu-toggle,
.mm-card-thumb-wrap,
#mm-primary-menu > li > a { min-height: 44px; }
@media (forced-colors: active) {
  a:focus-visible { outline: 3px solid ButtonText; }
}

/* ════════════════════════════════════════════
   TABLET — 1024px and below
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mm-hero { grid-template-columns: 1fr 1fr; }
  .mm-post-grid { grid-template-columns: repeat(2, 1fr); }
  .mm-video-grid { grid-template-columns: repeat(2, 1fr); }
  .mm-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ════════════════════════════════════════════
   MOBILE — 768px and below
════════════════════════════════════════════ */
@media (max-width: 768px) {
  .mm-container { padding: 0 16px; }
  #mm-topbar { display: none; }
  .mm-site-title { font-size: 26px; }
  #mm-header .mm-container { flex-wrap: wrap; gap: 10px; padding: 10px 16px; }
  .mm-custom-logo-link img { max-height: 80px; }
  .mm-header-search { flex: 1 1 100%; order: 3; }
  .mm-subscribe-btn { order: 2; }
  .mm-menu-toggle { display: block; }
  #mm-primary-menu { display: none; flex-direction: column; width: 100%; }
  #mm-primary-menu.open { display: flex; }
  #mm-primary-menu > li > a {
    padding: 14px 16px; font-size: 16px;
    border-bottom: 1px solid var(--border);
    border-bottom-color: var(--border) !important;
    min-height: 48px; display: flex; align-items: center;
  }
  #mm-primary-menu .sub-menu {
    position: static; box-shadow: none; border-top: none;
    display: block; border-left: 3px solid var(--red);
    background: var(--bg2);
  }
  #mm-primary-menu .sub-menu li a { min-height: 44px; display: flex; align-items: center; }
  .mm-hero { grid-template-columns: 1fr; }
  .mm-hero-main .mm-thumb { height: 260px; }
  .mm-hero-side { flex-direction: row; }
  .mm-hero-side-card .mm-thumb { height: 110px; }
  .mm-content-wrap { display: block; margin: 0 auto; padding: 0; max-width: 100%; }
  #mm-main { padding: 16px 16px 0; width: 100%; box-sizing: border-box; }
  .single .mm-sidebar, .single-post .mm-sidebar { display: none; }
  .home .mm-sidebar, .archive .mm-sidebar, .search .mm-sidebar {
    display: block; padding: 0 16px; order: 2;
  }
  .mm-single-header { margin-bottom: 16px; }
  .mm-single-title { font-size: 24px; line-height: 1.3; margin-bottom: 12px; }
  .mm-single-meta { font-size: 13px; gap: 8px; }
  .mm-single-hero {
    width: calc(100% + 32px);
    margin-left: -16px; margin-right: -16px;
    max-width: none; border-radius: 0;
    margin-bottom: 20px; margin-top: 16px;
  }
  .mm-post-content { font-size: 17px; line-height: 1.8; }
  .mm-post-content h2 { font-size: 20px; margin: 1.6rem 0 .8rem; }
  .mm-post-content h3 { font-size: 18px; margin: 1.4rem 0 .7rem; }
  .mm-post-content p { margin-bottom: 1.2rem; }
  .mm-post-content blockquote { padding: 14px 16px; margin: 1.4rem 0; font-size: 16px; }
  .mm-post-content img {
    width: calc(100% + 32px); margin-left: -16px; margin-right: -16px;
    max-width: none; border-radius: 0;
  }
  .mm-post-content .wp-block-image { margin-left: -16px; margin-right: -16px; }
  .mm-post-content .wp-block-image img { width: 100%; max-width: none; border-radius: 0; margin-left: 0; margin-right: 0; }
  .mm-post-content .wp-block-image.alignleft,
  .mm-post-content .wp-block-image.alignright { float: none; margin-left: -16px; margin-right: -16px; margin-bottom: 1rem; }
  .mm-post-content .wp-block-image.alignleft img,
  .mm-post-content .wp-block-image.alignright img { max-width: 100%; width: 100%; }
  .rem-nl-wrap { margin: 20px -16px; border-radius: 0; border-left: none; border-right: none; }
  .rem-nl-inner { flex-direction: column; gap: 16px; }
  .rem-nl-form { flex-direction: column; }
  .rem-nl-email, .rem-nl-name { min-width: 0; width: 100%; }
  .rem-nl-btn { width: 100%; padding: 12px; font-size: 14px; }
  .mm-post-grid { grid-template-columns: 1fr; gap: 16px; }
  .mm-card-wide { grid-template-columns: 1fr; }
  .mm-card-wide .mm-thumb { min-height: 180px; }
  .mm-video-grid { grid-template-columns: 1fr; }
  .mm-promo-banner { flex-direction: column; padding: 20px 16px; text-align: center; border-left: none; border-top: 4px solid var(--red); }
  .mm-footer-grid { grid-template-columns: 1fr; }
  .mm-footer-bottom { flex-direction: column; text-align: center; }
  .mm-card-title { line-height: 1.4; }
  .mm-subscribe-btn { min-height: 44px; display: inline-flex; align-items: center; }
  #mm-cookie-banner .mm-container { flex-direction: column; align-items: flex-start; gap: 12px; }
  .mm-cookie-actions { width: 100%; }
  .mm-cookie-accept, .mm-cookie-decline { flex: 1; text-align: center; justify-content: center; }
}

/* ════════════════════════════════════════════
   SMALL PHONES — 480px and below
════════════════════════════════════════════ */
@media (max-width: 480px) {
  .mm-container { padding: 0 14px; }
  #mm-main { padding: 14px 14px 0; }
  .mm-site-title { font-size: 20px; }
  .mm-hero-side { flex-direction: column; }
  .mm-hero-side-card .mm-thumb { height: 120px; }
  .mm-hero-content h1 { font-size: 19px; }
  .mm-single-title { font-size: 21px; }
  .mm-single-hero { width: calc(100% + 28px); margin-left: -14px; }
  .mm-post-content { font-size: 16px; line-height: 1.75; }
  .mm-post-content img { width: calc(100% + 28px); margin-left: -14px; }
  .mm-post-content .wp-block-image { margin-left: -14px; margin-right: -14px; }
  .rem-nl-wrap { margin: 16px -14px; }
  .mm-post-grid { gap: 12px; }
  #mm-primary-menu > li > a { font-size: 15px; padding: 14px; }
  .mm-subscribe-btn { width: 100%; text-align: center; order: 2; }
}

/* ════════════════════════════════════════════
   WORDPRESS.COM OVERRIDE FIXES
   Using !important + higher specificity to beat
   platform-injected styles
════════════════════════════════════════════ */

/* Fix 1 — Topbar background (WP.com sets body bg white, bleeds through) */
body #mm-topbar,
html body #mm-topbar {
  background: #111111 !important;
  border-bottom: 1px solid #222222 !important;
  color: #aaaaaa !important;
}
body #mm-topbar a,
html body #mm-topbar .mm-topbar-links a,
html body #mm-topbar .mm-topbar-social a {
  color: #aaaaaa !important;
}
body #mm-topbar a:hover,
html body #mm-topbar .mm-topbar-links a:hover,
html body #mm-topbar .mm-topbar-social a:hover {
  color: #ffffff !important;
}

/* Fix 2 — Search bar (WP.com injects .wp-block-search styles) */
#mm-header .mm-header-search input[type="search"],
#mm-header .mm-header-search input[type="text"],
#mm-header .mm-header-search input {
  background: #eaeae6 !important;
  border: 1px solid #c8c8c0 !important;
  border-right: none !important;
  color: #1a1a1a !important;
  font-size: 13px !important;
  padding: 9px 14px !important;
  border-radius: 3px 0 0 3px !important;
  -webkit-appearance: none !important;
  box-shadow: none !important;
  outline: none !important;
  height: auto !important;
  width: auto !important;
  margin: 0 !important;
}
#mm-header .mm-header-search input[type="search"]::placeholder,
#mm-header .mm-header-search input::placeholder {
  color: #777777 !important;
  opacity: 1 !important;
}
#mm-header .mm-header-search button,
#mm-header .mm-header-search input[type="submit"] {
  background: #C8102E !important;
  color: #ffffff !important;
  border: none !important;
  padding: 9px 14px !important;
  border-radius: 0 3px 3px 0 !important;
  font-size: 14px !important;
  height: auto !important;
  box-shadow: none !important;
}

/* Fix 3 — Author / meta text color */
.mm-single-meta,
.mm-single-meta span,
.mm-single-meta time,
.mm-single-meta .mm-author,
.mm-post-meta,
.entry-meta,
.byline,
.posted-on {
  color: #777777 !important;
}
.mm-single-meta a,
.mm-single-meta .mm-author a {
  color: #777777 !important;
  text-decoration: none !important;
}
.mm-single-meta a:hover {
  color: #C8102E !important;
}

/* Fix 4 — Cookie banner Decline button visibility */
#mm-cookie-banner .mm-cookie-decline {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: transparent !important;
  color: #777777 !important;
  border: 1px solid #c8c8c0 !important;
  font-family: var(--fh), 'Oswald', Impact, sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  padding: 9px 16px !important;
  border-radius: 3px !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
}
#mm-cookie-banner .mm-cookie-actions {
  display: flex !important;
  gap: 10px !important;
  align-items: center !important;
  flex-shrink: 0 !important;
  flex-wrap: nowrap !important;
}
#mm-cookie-banner {
  background: #ffffff !important;
  border-top: 3px solid #C8102E !important;
}

/* ── Blockquote — always dark bg, always white text, no exceptions ── */
body .mm-post-content blockquote,
body.single .mm-post-content blockquote,
body .mm-post-content blockquote p,
body .mm-post-content blockquote *,
html body .mm-post-content blockquote {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
  border-left-color: #C8102E !important;
}

/* ── Single post meta — force dark on white background ── */
body .mm-single-meta,
body .mm-single-meta span,
body .mm-single-meta time,
body .mm-single-meta a,
html body .mm-single-meta,
html body .mm-single-meta span,
html body .mm-single-meta a {
  color: #555555 !important;
}
body .mm-single-meta a:hover {
  color: #C8102E !important;
}

/* ── Tags ── */
body .mm-tags-row a,
body .entry-tags a,
body .tags-links a,
body .post-tags a {
  color: #444444 !important;
  text-decoration: none !important;
}
body .mm-tags-row a:hover,
body .entry-tags a:hover,
body .tags-links a:hover,
body .post-tags a:hover {
  color: #C8102E !important;
}

/* ── Cookie banner — force white bg and dark text on all screens ── */
#mm-cookie-banner,
html body #mm-cookie-banner {
  background-color: #ffffff !important;
  background: #ffffff !important;
  color: #1a1a1a !important;
}
#mm-cookie-banner .mm-cookie-text,
html body #mm-cookie-banner .mm-cookie-text {
  color: #333333 !important;
}
#mm-cookie-banner .mm-cookie-text strong {
  color: #111111 !important;
}
#mm-cookie-banner .mm-cookie-decline,
html body #mm-cookie-banner .mm-cookie-decline {
  background-color: #ffffff !important;
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #c8c8c0 !important;
}
#mm-cookie-banner .mm-cookie-decline:hover {
  color: #111111 !important;
  border-color: #888888 !important;
}

/* ── Ad images — pointer cursor, never zoom ── */
.mm-ad-zone img,
.mm-ad-zone a,
.mm-ad-inline img,
.mm-ad-inline a,
.mm-ad-leaderboard img,
.mm-ad-leaderboard a {
  cursor: pointer !important;
}
