/*
Theme Name: Mamadysh Online
Theme URI: https://mamadysh.ru
Author: Mamadysh Web Studio
Author URI: https://mamadysh.ru
Description: Светлая тема для информационного агентства "Мамадыш Онлайн" — новости, объявления, афиша, события.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: mamadysh-online
*/

/* ── Variables ─────────────────────────────── */
:root {
  --bg:         #fafafa;
  --surface:    #ffffff;
  --surface-2:  #f4f4f5;
  --surface-3:  #ebebed;
  --red:        #c8222a;
  --red-dark:   #9a1820;
  --red-light:  #fde8ea;
  --gold:       #d4a017;
  --green:      #2e7d4f;
  --blue:       #1e6fb8;
  --text:       #1a1a1a;
  --text-mid:   #525252;
  --text-light: #8a8a8a;
  --border:     #e8e8e8;
  --border-mid: #d4d4d4;
  --radius:     8px;
  --font:       'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'PT Serif', Georgia, serif;
  --max-w:      1280px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08);
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

h1,h2,h3,h4 { line-height: 1.3; font-weight: 700; color: var(--text); font-family: var(--font-serif); }
h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
h3 { font-size: 1.1rem; }

/* ── Top utility bar ───────────────────────── */
.utility-bar {
  background: var(--text); color: rgba(255,255,255,.7);
  font-size: .78rem; padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.utility-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.utility-left { display: flex; gap: 18px; align-items: center; }
.utility-left span { display: flex; align-items: center; gap: 6px; }
.utility-right { display: flex; gap: 16px; align-items: center; }
.utility-right a { color: rgba(255,255,255,.7); }
.utility-right a:hover { color: var(--gold); }

/* ── Header ────────────────────────────────── */
.site-header { background: var(--surface); border-bottom: 1px solid var(--border); }
.header-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; padding: 18px 0; }

.brand { display: flex; align-items: center; gap: 16px; }
.brand-logo {
  width: 64px; height: 64px; border-radius: 10px;
  display: grid; place-items: center; overflow: hidden; flex-shrink: 0;
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.brand-logo-ph { font-size: 1.8rem; color: var(--red); font-weight: 800; font-family: var(--font-serif); }
.brand-text { display: flex; flex-direction: column; gap: 2px; }
.brand-name { font-size: 1.5rem; font-weight: 800; color: var(--text); font-family: var(--font-serif); line-height: 1; letter-spacing: -.01em; }
.brand-name span { color: var(--red); }
.brand-tag { font-size: .72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .12em; }

.header-search { max-width: 460px; width: 100%; justify-self: center; position: relative; }
.header-search input {
  width: 100%; padding: 11px 16px 11px 42px; border-radius: 999px;
  border: 1.5px solid var(--border); background: var(--bg);
  font-size: .88rem; outline: none; font-family: var(--font); transition: border-color .2s;
}
.header-search input:focus { border-color: var(--red); background: #fff; }
.header-search::before {
  content: '🔍'; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  font-size: .9rem; opacity: .5; pointer-events: none;
}

.header-actions { display: flex; gap: 10px; align-items: center; }
.header-actions .btn-primary {
  background: var(--red); color: #fff; padding: 10px 20px;
  border-radius: 999px; font-size: .82rem; font-weight: 600;
  transition: background .2s;
}
.header-actions .btn-primary:hover { background: var(--red-dark); color: #fff; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; }

/* ── Main nav ──────────────────────────────── */
.main-nav-bar { background: var(--surface); border-bottom: 2px solid var(--red); position: sticky; top: 0; z-index: 50; }
.main-nav-bar.scrolled { box-shadow: var(--shadow-md); }
.main-nav-inner { display: flex; align-items: center; gap: 0; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; }
.main-nav-inner::-webkit-scrollbar { display: none; }
.main-nav-inner a {
  padding: 14px 18px; font-size: .85rem; font-weight: 600; color: var(--text-mid);
  white-space: nowrap; transition: color .2s, background .2s; border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.main-nav-inner a:hover { color: var(--red); }
.main-nav-inner a.active { color: var(--red); border-bottom-color: var(--red); }
.main-nav-inner a.live { color: var(--red); display: flex; align-items: center; gap: 6px; }
.main-nav-inner a.live::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .5; transform: scale(1.3); }
}

/* ── Mobile nav ────────────────────────────── */
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--surface); z-index: 99; flex-direction: column; padding: 24px; overflow-y: auto; }
.mobile-nav.open { display: flex; }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.mobile-nav a { padding: 14px 0; font-size: 1.1rem; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border-mid); }
.mobile-close { background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--text-mid); }

/* ── Hero / featured ───────────────────────── */
.hero-section { padding: 28px 0; background: var(--bg); }
.hero-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px; }

.featured-main {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); position: relative;
  display: flex; flex-direction: column;
}
.featured-img { aspect-ratio: 16/9; overflow: hidden; background: var(--surface-3); position: relative; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.featured-main:hover .featured-img img { transform: scale(1.03); }
.featured-img-ph { width: 100%; height: 100%; display: grid; place-items: center; font-size: 3rem; color: var(--text-light); }
.featured-cat-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--red); color: #fff; padding: 5px 14px; border-radius: 4px;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.featured-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.featured-body h2 { margin-bottom: 10px; font-size: 1.6rem; line-height: 1.25; }
.featured-body h2 a { color: var(--text); }
.featured-body h2 a:hover { color: var(--red); }
.featured-body .excerpt { color: var(--text-mid); font-size: .93rem; line-height: 1.7; }
.post-meta-row { display: flex; gap: 12px; align-items: center; font-size: .76rem; color: var(--text-light); margin-bottom: 10px; }
.post-meta-row .dot { width: 3px; height: 3px; background: var(--text-light); border-radius: 50%; }

.featured-side { display: flex; flex-direction: column; gap: 14px; }
.side-card {
  background: var(--surface); border-radius: var(--radius); padding: 16px;
  box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 110px 1fr; gap: 14px;
  transition: transform .2s;
}
.side-card:hover { transform: translateX(2px); }
.side-card-img { aspect-ratio: 1; background: var(--surface-3); border-radius: 6px; overflow: hidden; }
.side-card-img img { width: 100%; height: 100%; object-fit: cover; }
.side-card-img-ph { width: 100%; height: 100%; display: grid; place-items: center; font-size: 1.6rem; color: var(--text-light); }
.side-card-body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.side-card-cat { font-size: .68rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .08em; }
.side-card-title { font-size: .9rem; font-weight: 600; line-height: 1.35; color: var(--text); font-family: var(--font); }
.side-card:hover .side-card-title { color: var(--red); }
.side-card-date { font-size: .72rem; color: var(--text-light); margin-top: auto; }

/* ── Quick categories ──────────────────────── */
.quick-cats { padding: 24px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.quick-cats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 8px; }
.qc-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 16px 8px; border-radius: var(--radius);
  background: var(--bg); border: 1px solid transparent; transition: all .2s; text-align: center;
}
.qc-item:hover { background: var(--red-light); border-color: var(--red); transform: translateY(-2px); }
.qc-icon { font-size: 1.5rem; }
.qc-label { font-size: .76rem; font-weight: 600; color: var(--text); }

/* ── Section title ─────────────────────────── */
.section-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--text); gap: 12px; flex-wrap: wrap; }
.section-title h2 { font-size: 1.3rem; display: flex; align-items: center; gap: 10px; }
.section-title h2::before { content: ''; display: inline-block; width: 4px; height: 22px; background: var(--red); border-radius: 2px; }
.section-title-link { font-size: .82rem; font-weight: 600; color: var(--text-mid); display: flex; align-items: center; gap: 4px; }
.section-title-link:hover { color: var(--red); }

/* ── Main + Sidebar layout ─────────────────── */
.main-section { padding: 36px 0; }
.main-grid { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }

/* ── News grid ─────────────────────────────── */
.news-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.news-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-3); position: relative; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-img-ph { width: 100%; height: 100%; display: grid; place-items: center; font-size: 2rem; color: var(--text-light); }
.news-card-cat {
  position: absolute; top: 10px; left: 10px;
  background: rgba(255,255,255,.95); color: var(--red);
  font-size: .68rem; font-weight: 700; padding: 3px 10px; border-radius: 3px;
  text-transform: uppercase; letter-spacing: .06em;
}
.news-card-body { padding: 16px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.news-card-title { font-size: 1rem; font-weight: 600; line-height: 1.4; font-family: var(--font); }
.news-card-title a { color: var(--text); }
.news-card-title a:hover { color: var(--red); }
.news-card-excerpt { font-size: .82rem; color: var(--text-mid); line-height: 1.55; }
.news-card-meta { font-size: .72rem; color: var(--text-light); margin-top: auto; padding-top: 10px; border-top: 1px solid var(--border); display: flex; gap: 10px; align-items: center; }

/* ── Sidebar ───────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 70px; }
.widget {
  background: var(--surface); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.widget-title {
  font-size: .9rem; font-weight: 700; color: var(--text); padding-bottom: 10px;
  margin-bottom: 14px; border-bottom: 2px solid var(--red);
  display: flex; align-items: center; gap: 8px; font-family: var(--font);
}
.widget-title::before { content: ''; display: inline-block; width: 4px; height: 16px; background: var(--red); border-radius: 2px; }

/* Most read */
.most-read-list { display: flex; flex-direction: column; gap: 12px; }
.mr-item { display: flex; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.mr-item:last-child { border-bottom: none; padding-bottom: 0; }
.mr-num {
  font-family: var(--font-serif); font-size: 1.8rem; font-weight: 800;
  color: var(--red); line-height: 1; flex-shrink: 0; opacity: .7; min-width: 28px;
}
.mr-content { flex: 1; min-width: 0; }
.mr-title { font-size: .85rem; font-weight: 500; line-height: 1.4; color: var(--text); }
.mr-title:hover { color: var(--red); }
.mr-meta { font-size: .72rem; color: var(--text-light); margin-top: 4px; }

/* Banner ad slot */
.widget-banner { padding: 0; overflow: hidden; }
.banner-slot {
  aspect-ratio: 1.2; background: linear-gradient(135deg, var(--red-light), #fce4e6);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 8px; color: var(--text-light); font-size: .85rem; padding: 20px; text-align: center;
}
.banner-slot strong { font-size: 1.05rem; color: var(--red); font-family: var(--font-serif); }

/* Live block */
.widget-live { background: linear-gradient(135deg, var(--text), #2a2a2a); color: #fff; }
.widget-live .widget-title { color: #fff; border-bottom-color: var(--red); }
.live-content { display: flex; flex-direction: column; gap: 12px; }
.live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: #fff; padding: 4px 12px; border-radius: 4px;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  align-self: flex-start;
}
.live-badge::before { content: ''; width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: pulse 1.5s infinite; }
.live-text { color: rgba(255,255,255,.85); font-size: .88rem; line-height: 1.5; }
.live-link { color: var(--gold); font-size: .82rem; font-weight: 600; }

/* Weather */
.weather-card { display: flex; align-items: center; gap: 14px; }
.weather-icon { font-size: 2.4rem; }
.weather-temp { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 800; color: var(--text); line-height: 1; }
.weather-desc { font-size: .8rem; color: var(--text-mid); margin-top: 2px; }

/* Tags cloud */
.tags-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-item { font-size: .76rem; padding: 5px 11px; background: var(--surface-2); border-radius: 4px; color: var(--text-mid); transition: all .2s; }
.tag-item:hover { background: var(--red); color: #fff; }

/* ── Special blocks ────────────────────────── */
.split-section { padding: 32px 0; background: var(--surface); border-top: 1px solid var(--border); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.list-block ul { display: flex; flex-direction: column; }
.list-block ul li { padding: 12px 0; border-bottom: 1px dashed var(--border); display: flex; gap: 14px; align-items: flex-start; }
.list-block ul li:last-child { border-bottom: none; }
.list-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--red-light); color: var(--red); display: grid; place-items: center; font-size: 1rem; flex-shrink: 0; }
.list-block.green .list-icon { background: rgba(46,125,79,.12); color: var(--green); }
.list-block.blue .list-icon { background: rgba(30,111,184,.12); color: var(--blue); }
.list-content { flex: 1; min-width: 0; }
.list-content a { color: var(--text); font-size: .9rem; font-weight: 500; line-height: 1.4; }
.list-content a:hover { color: var(--red); }
.list-content .meta { font-size: .72rem; color: var(--text-light); margin-top: 2px; }

/* Afisha (events) */
.afisha-section { padding: 36px 0; }
.afisha-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.afisha-card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s;
}
.afisha-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.afisha-img { aspect-ratio: 3/4; overflow: hidden; background: var(--surface-3); position: relative; }
.afisha-img img { width: 100%; height: 100%; object-fit: cover; }
.afisha-img-ph { width: 100%; height: 100%; display: grid; place-items: center; font-size: 2.5rem; }
.afisha-date {
  position: absolute; top: 10px; right: 10px; background: var(--red); color: #fff;
  border-radius: 6px; padding: 6px 10px; text-align: center; min-width: 50px;
  font-family: var(--font-serif);
}
.afisha-date strong { display: block; font-size: 1.1rem; line-height: 1; font-weight: 800; }
.afisha-date span { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; }
.afisha-body { padding: 14px 16px; }
.afisha-body h4 { font-size: .9rem; font-weight: 600; font-family: var(--font); margin-bottom: 4px; }
.afisha-body h4 a { color: var(--text); }
.afisha-body h4 a:hover { color: var(--red); }
.afisha-body .meta { font-size: .76rem; color: var(--text-light); }

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff; padding: 40px 0; margin: 40px 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-inner h3 { color: #fff; font-size: 1.4rem; margin-bottom: 4px; }
.cta-inner p { color: rgba(255,255,255,.85); font-size: .9rem; }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-actions a {
  background: #fff; color: var(--red); padding: 11px 22px; border-radius: 999px;
  font-size: .85rem; font-weight: 700;
}
.cta-actions a.outline { background: transparent; color: #fff; border: 1.5px solid #fff; }

/* ── Pagination ────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 36px; flex-wrap: wrap; }
.pagination a,.pagination span { display: flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 12px; border-radius: 6px; border: 1px solid var(--border); font-size: .88rem; color: var(--text-mid); background: var(--surface); }
.pagination a:hover,.pagination .current { background: var(--red); border-color: var(--red); color: #fff; }

/* ── Page hero ─────────────────────────────── */
.page-hero { padding: 28px 0; background: var(--surface); border-bottom: 1px solid var(--border); }
.breadcrumbs { font-size: .78rem; color: var(--text-light); margin-bottom: 8px; }
.breadcrumbs a { color: var(--text-mid); }
.breadcrumbs a:hover { color: var(--red); }

/* ── Single post ───────────────────────────── */
.post-wrap { padding: 32px 0 64px; }
.post-grid { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.single-post {
  background: var(--surface); border-radius: var(--radius);
}
.single-post-meta { display: flex; gap: 12px; align-items: center; font-size: .8rem; color: var(--text-light); margin-bottom: 12px; flex-wrap: wrap; }
.post-cat-tag {
  background: var(--red); color: #fff; padding: 4px 12px; border-radius: 4px;
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.single-post h1 { font-size: 2rem; line-height: 1.2; margin-bottom: 16px; }
.single-post-thumb { margin: 20px 0; border-radius: 8px; overflow: hidden; }
.post-content { color: var(--text); line-height: 1.85; font-size: 1rem; }
.post-content h2,.post-content h3 { color: var(--text); margin: 1.5em 0 .5em; }
.post-content p { margin-bottom: 1.2em; }
.post-content a { color: var(--red); text-decoration: underline; }
.post-content blockquote { border-left: 4px solid var(--red); background: var(--surface-2); padding: 14px 22px; margin: 1.4em 0; font-style: italic; border-radius: 0 6px 6px 0; }
.post-content img { border-radius: 8px; margin: 1.4em 0; }
.post-content ul,.post-content ol { margin: 1em 0 1.4em 1.4em; }
.post-content li { margin-bottom: .4em; }

.post-share { display: flex; gap: 8px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); align-items: center; flex-wrap: wrap; }
.post-share span { font-size: .8rem; color: var(--text-mid); margin-right: 6px; }
.share-btn { background: var(--surface-2); padding: 8px 14px; border-radius: 6px; font-size: .82rem; color: var(--text-mid); }
.share-btn:hover { background: var(--red); color: #fff; }

/* ── Page content ──────────────────────────── */
.page-content-wrap { max-width: 820px; margin: 0 auto; padding: 32px 20px 64px; }
.page-content {
  background: var(--surface); padding: 32px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); color: var(--text); line-height: 1.85;
}
.page-content h1 { font-size: 1.9rem; margin-bottom: 16px; }
.page-content h2,.page-content h3 { color: var(--text); margin: 1.4em 0 .5em; }
.page-content p { margin-bottom: 1.2em; }

/* ── Footer ────────────────────────────────── */
.site-footer { background: var(--text); color: rgba(255,255,255,.7); padding: 48px 0 24px; margin-top: 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 32px; }
.footer-brand-text { font-size: .88rem; line-height: 1.7; max-width: 320px; margin-top: 12px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo .brand-logo { width: 44px; height: 44px; background: rgba(255,255,255,.1); border: none; }
.footer-logo .brand-name { color: #fff; font-size: 1.1rem; }
.footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 14px; font-family: var(--font); }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.65); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .78rem; color: rgba(255,255,255,.5); }

/* ── 404 ───────────────────────────────────── */
.not-found { padding: 80px 20px; text-align: center; min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.not-found-num { font-family: var(--font-serif); font-size: 9rem; font-weight: 800; color: var(--red); opacity: .15; line-height: 1; }

/* ── Reveal ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s, transform .5s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .main-grid,.post-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .news-grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .header-search { display: none; }
  .header-inner { grid-template-columns: 1fr auto; gap: 16px; }
  .hero-grid { grid-template-columns: 1fr; }
  .split-grid { grid-template-columns: 1fr; }
  .news-grid-3 { grid-template-columns: 1fr; }
  .utility-bar { display: none; }
}
@media (max-width: 600px) {
  .header-actions .btn-primary { display: none; }
  .hamburger { display: flex; }
  .main-nav-bar { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .single-post { padding: 22px; }
  .featured-body h2 { font-size: 1.25rem; }
}

/* ── WP ────────────────────────────────────── */
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 24px 14px 0; }
.alignright { float: right; margin: 0 0 14px 24px; }
.wp-caption-text { font-size: .78rem; color: var(--text-light); text-align: center; margin-top: 6px; }
