/*
 * Imulenge Theme — assets/css/main.css
 * Dark Investigative Design System
 * Mobile-first: 480 / 768 / 1024 / 1280px
 */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
  --bg:           #0f0f0f;
  --surface:      #161616;
  --surface-2:    #1e1e1e;
  --surface-3:    #262626;
  --border:       rgba(255,255,255,0.07);
  --border-2:     rgba(255,255,255,0.13);
  --text:         #f0ede6;
  --text-2:       rgba(240,237,230,0.62);
  --text-3:       rgba(240,237,230,0.36);
  --accent:       #c0392b;
  --accent-h:     #e74c3c;
  --accent-2:     #e67e22;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --container:    1200px;
  --radius:       3px;
  --radius-md:    6px;
  --header-h:     60px;
  --ticker-h:     34px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--text); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ==========================================================================
   3. LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}
.container-sm {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: 1rem;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   4. TYPOGRAPHY
   ========================================================================== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.2rem, 3vw, 2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; font-family: var(--font-sans); font-weight: 600; }
p  { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }
blockquote {
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--surface);
  font-style: italic;
  color: var(--text-2);
}

/* ==========================================================================
   5. HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0a0a0a;
  border-bottom: 0.5px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}
.site-title-link { display: flex; align-items: center; }
.site-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text);
}
.site-title::after { content: '.'; color: var(--accent); }
.custom-logo { height: 38px; width: auto; }

/* Nav */
.primary-nav { display: none; }
.nav-menu { display: flex; align-items: center; gap: 1px; flex-wrap: wrap; }
.nav-menu li a {
  display: block;
  padding: .38rem .7rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-2);
  border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current-cat a {
  color: var(--text);
  background: var(--surface-2);
}
.nav-menu li a[href*="minerals"],
.nav-menu li a[href*="business-investment"],
.nav-menu li a[href*="tech-minerals"] { color: var(--accent-2); }
.nav-menu li a[href*="minerals"]:hover,
.nav-menu li a[href*="business-investment"]:hover,
.nav-menu li a[href*="tech-minerals"]:hover {
  color: var(--text);
  background: rgba(230,126,34,.1);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 7px;
  border-radius: var(--radius);
  background: var(--surface-2);
  flex-shrink: 0;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0;
}
.hamburger::before { top: -5px; }
.hamburger::after  { top:  5px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg) translate(3.5px, 3.5px); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { transform: rotate(-45deg) translate(3.5px, -3.5px); }

.primary-nav.is-open {
  display: block;
  position: absolute;
  top: var(--header-h);
  left: 0; right: 0;
  background: #0a0a0a;
  border-bottom: 0.5px solid var(--border);
  padding: .75rem 1rem 1rem;
  z-index: 99;
}
.primary-nav.is-open .nav-menu { flex-direction: column; align-items: stretch; gap: 2px; }
.primary-nav.is-open .nav-menu li a { padding: .6rem .75rem; font-size: .82rem; }

/* ==========================================================================
   6. BREAKING TICKER
   ========================================================================== */
.breaking-ticker {
  background: var(--accent);
  height: var(--ticker-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker-label {
  flex-shrink: 0;
  background: #8b1a13;
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 0 .8rem;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  padding-left: 1.5rem;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-item { font-size: .73rem; font-weight: 500; color: #fff; }
.ticker-item::before { content: '▸ '; opacity: .7; margin-right: .2rem; }
.ticker-item:hover { text-decoration: underline; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   7. HOMEPAGE HERO
   ========================================================================== */
.home-hero {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 0.5px solid var(--border);
}
.hero-main {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--surface);
}
.hero-main-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .4;
}
.hero-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.96) 0%, rgba(10,10,10,.5) 55%, transparent 100%);
}
.hero-main-body { position: relative; padding: 1.5rem; }
.hero-main .article-title {
  font-size: clamp(1.35rem, 3.5vw, 2.1rem);
  margin: .5rem 0 .65rem;
  line-height: 1.18;
}
.hero-main .article-title a { color: var(--text); }
.hero-main .article-title a:hover { color: var(--accent-h); }
.hero-main .article-excerpt {
  font-size: .88rem;
  color: var(--text-2);
  margin-bottom: .75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-side {
  display: flex;
  flex-direction: column;
  border-top: 0.5px solid var(--border);
}
.hero-side-item {
  flex: 1;
  min-height: 130px;
  padding: 1.1rem;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  transition: background .15s;
}
.hero-side-item:last-child { border-bottom: none; }
.hero-side-item:hover { background: var(--surface-2); }
.hero-side-item img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .22;
}
.hero-side-body { position: relative; }
.hero-side-item .article-title { font-size: .92rem; margin: .3rem 0; }
.hero-side-item .article-title a { color: var(--text); }
.hero-side-item .article-title a:hover { color: var(--accent-h); }

/* ==========================================================================
   8. SECTION HEADERS
   ========================================================================== */
.section-header {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: 1.2rem 0 .7rem;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 1.1rem;
}
.section-title {
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  padding-left: .6rem;
  border-left: 2px solid var(--accent);
}
.section-link {
  margin-left: auto;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-3);
}
.section-link:hover { color: var(--accent); }

/* ==========================================================================
   9. ARTICLE CARD
   ========================================================================== */
.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
}
.post-grid > * { background: var(--bg); }

.home-latest { padding: 1.5rem 0; border-bottom: 0.5px solid var(--border); }
.home-latest .post-grid { background: transparent; gap: 1.1rem; }

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  transition: background .15s;
}
.article-card:hover { background: var(--surface); }

.card-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--surface-2);
  flex-shrink: 0;
}
.card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.article-card:hover .card-thumb img { transform: scale(1.04); }

.card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .38rem;
  flex: 1;
}
.card-title {
  font-family: var(--font-serif);
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.28;
  margin: 0;
}
.card-title a { color: var(--text); }
.card-title a:hover { color: var(--accent-h); }

.card-excerpt {
  font-size: .8rem;
  color: var(--text-2);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Horizontal mini card */
.article-card.card-h {
  flex-direction: row;
  align-items: stretch;
}
.article-card.card-h .card-thumb {
  width: 100px;
  aspect-ratio: unset;
}
.article-card.card-h .card-body { padding: .7rem .8rem; }
.article-card.card-h .card-title { font-size: .85rem; }
.article-card.card-h .card-excerpt { display: none; }

/* ==========================================================================
   10. BADGES & META
   ========================================================================== */
.cat-badge {
  display: inline-block;
  padding: .16rem .5rem;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff !important;
  border-radius: var(--radius);
  line-height: 1.7;
  align-self: flex-start;
  transition: opacity .15s;
}
.cat-badge:hover { opacity: .82; }

.breaking-badge {
  display: inline-block;
  padding: .16rem .5rem;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  align-self: flex-start;
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse { 0%,100%{opacity:1} 50%{opacity:.65} }

.article-meta {
  font-size: .7rem;
  color: var(--text-3);
  letter-spacing: .02em;
  margin-top: auto;
  padding-top: .3rem;
}

/* ==========================================================================
   11. NEWSLETTER BAR
   ========================================================================== */
.newsletter-bar {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 1.25rem 1rem;
}
.newsletter-inner {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.newsletter-copy { }
.newsletter-title { font-size: .92rem; font-weight: 600; color: var(--text); font-family: var(--font-sans); }
.newsletter-sub   { font-size: .78rem; color: var(--text-2); margin-top: .2rem; }
.newsletter-form  { display: flex; gap: .5rem; max-width: 400px; }
.newsletter-input {
  flex: 1; min-width: 0;
  background: var(--surface-3);
  border: 0.5px solid var(--border-2);
  border-radius: var(--radius);
  padding: .52rem .8rem;
  font-size: .82rem;
  color: var(--text);
  outline: none;
  transition: border-color .15s;
}
.newsletter-input::placeholder { color: var(--text-3); }
.newsletter-input:focus { border-color: var(--accent); }
.newsletter-btn {
  background: var(--accent);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .52rem 1rem;
  border-radius: var(--radius);
  transition: background .15s;
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--accent-h); }

/* ==========================================================================
   12. SINGLE ARTICLE
   ========================================================================== */
.article-header {
  padding: 1.75rem 0 1.5rem;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 1.5rem;
}
.article-header .article-title {
  font-size: clamp(1.55rem, 4vw, 2.55rem);
  margin: .6rem 0 .9rem;
  line-height: 1.13;
}
.article-hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  background: var(--surface-2);
}
.article-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.article-sidebar { display: none; }

.article-content {
  font-size: 1.02rem;
  line-height: 1.82;
  color: rgba(240,237,230,.87);
}
.article-content h2 {
  font-size: 1.38rem;
  margin: 2rem 0 .7rem;
  padding-top: .6rem;
  border-top: 0.5px solid var(--border);
}
.article-content h3 { font-size: 1.12rem; margin: 1.5rem 0 .5rem; }
.article-content p  { margin-bottom: 1.4rem; }
.article-content a  { color: var(--accent-h); text-decoration: underline; text-underline-offset: 3px; }
.article-content ul,
.article-content ol { margin: 0 0 1.4rem 1.5rem; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: .4rem; }
.article-content img { width: 100%; border-radius: var(--radius-md); margin: 1.5rem 0; }
.article-content figcaption {
  font-size: .76rem; color: var(--text-3);
  text-align: center; margin-top: -.75rem; margin-bottom: 1.5rem;
}

/* ==========================================================================
   13. AD SLOTS
   ========================================================================== */
.ad-wrap {
  margin: 1.5rem 0;
  text-align: center;
  background: var(--surface);
  border: 0.5px dashed var(--border-2);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 90px;
}
.ad-wrap.ad-top { margin-top: 0; }
.ad-placeholder {
  padding: 1rem; font-size: .7rem; color: var(--text-3); text-align: center;
}

/* ==========================================================================
   14. BREADCRUMB
   ========================================================================== */
.breadcrumb {
  font-size: .73rem;
  color: var(--text-3);
  padding: .6rem 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .35rem;
}
.breadcrumb a { color: var(--text-3); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .current { color: var(--text-2); }

/* ==========================================================================
   15. CATEGORY ARCHIVE
   ========================================================================== */
.category-header {
  padding: 1.5rem 0 1rem;
  border-bottom: 3px solid var(--accent);
  margin-bottom: 1.5rem;
}
.category-name { font-size: clamp(1.4rem, 4vw, 2.2rem); margin-bottom: .4rem; }
.category-desc { font-size: .86rem; color: var(--text-2); max-width: 640px; }
.category-count { font-size: .7rem; color: var(--text-3); margin-top: .3rem; }

/* ==========================================================================
   16. PAGINATION
   ========================================================================== */
.nav-links, .posts-navigation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .4rem;
  padding: 1.5rem 0;
}
.nav-links .page-numbers, .posts-navigation a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 .6rem;
  font-size: .78rem; font-weight: 600;
  border: 0.5px solid var(--border-2);
  border-radius: var(--radius);
  color: var(--text-2);
  transition: all .15s;
}
.nav-links .page-numbers:hover, .posts-navigation a:hover { border-color: var(--accent); color: var(--accent); }
.nav-links .page-numbers.current { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ==========================================================================
   17. SIDEBAR & WIDGETS
   ========================================================================== */
.widget { margin-bottom: 2rem; }
.widget-title {
  font-family: var(--font-sans);
  font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-3);
  border-bottom: 0.5px solid var(--border);
  padding-bottom: .6rem; margin-bottom: .9rem;
}
.widget ul { display: flex; flex-direction: column; gap: .6rem; }
.widget ul li {
  font-size: .8rem; color: var(--text-2);
  border-bottom: 0.5px solid var(--border);
  padding-bottom: .6rem; line-height: 1.4;
}
.widget ul li:last-child { border-bottom: none; padding-bottom: 0; }
.widget ul li a { color: var(--text-2); }
.widget ul li a:hover { color: var(--accent); }

/* ==========================================================================
   18. FOOTER
   ========================================================================== */
.site-footer {
  background: #080808;
  border-top: 0.5px solid var(--border);
  padding: 2.5rem 0 0;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid var(--border);
}
.footer-col p { font-size: .8rem; color: var(--text-2); line-height: 1.7; }
.footer-bottom {
  display: flex; flex-direction: column; gap: .7rem;
  padding: 1.2rem 0;
}
.footer-copy { font-size: .72rem; color: var(--text-3); margin: 0; }
.footer-copy a { color: var(--text-3); }
.footer-copy a:hover { color: var(--accent); }
.footer-nav { display: flex; flex-wrap: wrap; gap: .2rem; margin-top: .5rem; }
.footer-nav li a {
  font-size: .72rem; color: var(--text-3);
  padding: .2rem .5rem; border-radius: var(--radius);
  transition: color .15s;
}
.footer-nav li a:hover { color: var(--accent); }
.social-links { display: flex; gap: .4rem; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; color: var(--text-3);
  padding: .28rem .6rem;
  border: 0.5px solid var(--border-2);
  border-radius: var(--radius);
  transition: all .15s;
}
.social-link:hover { color: var(--text); border-color: var(--accent); }

/* ==========================================================================
   19. SEARCH
   ========================================================================== */
.search-form { display: flex; gap: .5rem; }
.search-field {
  flex: 1; background: var(--surface-2); border: 0.5px solid var(--border-2);
  border-radius: var(--radius); padding: .5rem .75rem;
  font-size: .83rem; color: var(--text); outline: none;
  transition: border-color .15s;
}
.search-field:focus { border-color: var(--accent); }
.search-submit {
  background: var(--surface-3); border: 0.5px solid var(--border-2);
  border-radius: var(--radius); padding: .5rem .85rem;
  font-size: .78rem; color: var(--text-2); transition: all .15s;
}
.search-submit:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ==========================================================================
   20. 404
   ========================================================================== */
.error-404 { text-align: center; padding: 4rem 1rem; }
.error-404 .error-num { font-size: 6rem; color: var(--accent); line-height: 1; font-family: var(--font-serif); }
.error-404 h2 { font-size: 1.4rem; margin-bottom: 1rem; }

/* ==========================================================================
   21. RELATED POSTS
   ========================================================================== */
.related-posts { padding: 2rem 0; border-top: 0.5px solid var(--border); margin-top: 2rem; }
.related-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1rem; }

/* ==========================================================================
   22. TABLET — 768px
   ========================================================================== */
@media (min-width: 768px) {
  .primary-nav { display: block; }
  .nav-toggle  { display: none; }

  .home-hero {
    grid-template-columns: 1.65fr 1fr;
    min-height: 460px;
  }
  .hero-main { min-height: 460px; }
  .hero-side { border-top: none; border-left: 0.5px solid var(--border); }
  .hero-main-body { padding: 2rem; }

  .home-latest .post-grid { grid-template-columns: repeat(2, 1fr); }

  .newsletter-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .related-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ==========================================================================
   23. DESKTOP — 1024px
   ========================================================================== */
@media (min-width: 1024px) {
  :root { --header-h: 64px; }

  .home-hero {
    grid-template-columns: 2fr 1fr;
    min-height: 520px;
  }
  .hero-main { min-height: 520px; }
  .hero-main-body { padding: 2.5rem; }
  .hero-main .article-title { font-size: 2.15rem; }

  .home-latest .post-grid { grid-template-columns: repeat(3, 1fr); }

  .article-wrap {
    grid-template-columns: 1fr 300px;
  }
  .article-sidebar { display: block; }

  .related-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

  .page-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
    align-items: start;
  }
}

/* ==========================================================================
   24. WIDE — 1280px
   ========================================================================== */
@media (min-width: 1280px) {
  .home-hero { min-height: 560px; }
  .hero-main { min-height: 560px; }
  .home-latest .post-grid { grid-template-columns: repeat(4, 1fr); }
  .nav-menu li a { padding: .38rem .85rem; }
}

/* ==========================================================================
   25. PRINT
   ========================================================================== */
@media print {
  .site-header, .breaking-ticker, .site-footer,
  .ad-wrap, .newsletter-bar, .article-sidebar,
  .nav-toggle, .related-posts { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  a { color: #000; text-decoration: underline; }
  .article-content { font-size: 10.5pt; line-height: 1.6; }
  .article-header .article-title { color: #000; }
}

/* ==========================================================================
   26. REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .ticker-track { animation: none; }
}
