/*!
Theme Name: BZC-F
Theme URI: https://bzc.digital/
Description: BZC Wordpress teması
Author: BZC
Author URI: https://bzc.digital/
Version: 1.0.10
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bzc-f
Tags: blog, news, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ──────────────────────────────────────────────────────────────────────────── */
/* Design System                                                                */
/* ──────────────────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; }

:root {
  --red: #e8212b;
  --red-dark: #c41920;
  --red-light: #fff0f1;
  --dark: #1a1a1a;
  --text: #333;
  --muted: #666;
  --border: #e8e8e8;
  --bg: #f7f7f7;
  --white: #fff;
  --ad-bg: #fffbe6;
  --ad-border: #f0d060;
  --sidebar-w: 300px;
  --radius: 8px;
  --font: system-ui, sans-serif;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Top Bar ─────────────────────────────────────────────────────────────────*/
.topbar { background: var(--dark); color: #ccc; font-size: 12px; padding: 5px 0; }
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: #aaa; }
.topbar a:hover { color: #fff; }
.topbar-links { display: flex; gap: 14px; }

/* ── Header ──────────────────────────────────────────────────────────────────*/
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
  transition: box-shadow .18s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.12);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 30px; height: 64px;
}
.site-logo img { height: 36px; width: auto; display: block; }

/* ── Primary Nav ─────────────────────────────────────────────────────────────*/
.site-nav { display: flex; align-items: center; gap: 4px; flex: 1; }
.site-nav ul { display: flex; list-style: none; gap: 4px; }
.site-nav a {
  color: var(--dark); font-weight: 600; font-size: 14px;
  padding: 6px 12px; border-radius: 6px;
  transition: background .15s, color .15s; display: block;
}
.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a { background: var(--red-light); color: var(--red); }

/* ── Search Box ──────────────────────────────────────────────────────────────*/
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.search-box {
  display: flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: 24px;
  overflow: hidden; background: var(--bg);
}
.search-box input[type="search"],
.search-box input[type="text"] {
  border: none; background: transparent;
  padding: 6px 14px; font-family: var(--font);
  font-size: 13px; width: 180px; outline: none;
}
.search-box button {
  background: var(--red); border: none; color: #fff;
  padding: 7px 14px; cursor: pointer; font-size: 14px; line-height: 1;
}

/* ── Category Bar ────────────────────────────────────────────────────────────*/
.cat-bar { background: var(--white); border-bottom: 2px solid var(--red); }
.cat-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; overflow-x: auto; scrollbar-width: none;
}
.cat-bar-inner::-webkit-scrollbar { display: none; }
.cat-pill {
  padding: 10px 18px; font-size: 13px; font-weight: 700;
  color: var(--muted); white-space: nowrap;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: color .15s, border-color .15s;
  text-transform: uppercase; letter-spacing: .4px; display: block;
}
.cat-pill:hover { color: var(--red); }
.cat-pill.active,
.cat-pill.current-cat { color: var(--red); border-bottom-color: var(--red); }

/* ── Ad Overflow Guard ───────────────────────────────────────────────────────*/
.ad-zone-custom { max-width: 100%; overflow: hidden; width: 100%; }
.ad-zone-custom > * { max-width: 100% !important; }
ins.adsbygoogle { max-width: 100% !important; width: 100% !important; }
ins.adsbygoogle iframe { max-width: 100% !important; }

/* ── Ad Zones ────────────────────────────────────────────────────────────────*/
.ad-zone {
  display: flex; align-items: center; justify-content: center;
  background: var(--ad-bg); border: 1.5px dashed var(--ad-border);
  border-radius: var(--radius); color: #a07a00;
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; gap: 8px;
}
.ad-zone.leaderboard { width: 100%; height: 90px; }
.ad-zone.rectangle   { width: 100%; height: 250px; }
.ad-zone.wide        { width: 100%; height: 100px; }
.ad-zone.inline      { width: 100%; height: 280px; margin: 24px 0; }
.ad-zone-custom.inline { margin: 24px 0; }
.ad-zone-label { opacity: .7; }

/* ── Layout ──────────────────────────────────────────────────────────────────*/
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; overflow: hidden; }
.ad-wrap { padding: 14px 0 8px; overflow: hidden; max-width: 100%; }

.content-wrap,
.single-content-wrap {
  max-width: 1200px; margin: 0 auto; padding: 24px 20px;
  display: grid; grid-template-columns: minmax(0, 1fr) var(--sidebar-w);
  gap: 28px; align-items: start;
}

/* ── Section Title ───────────────────────────────────────────────────────────*/
.section-title {
  font-size: 17px; font-weight: 700; color: var(--dark);
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.section-title::before {
  content: ''; display: block; width: 4px; height: 20px;
  background: var(--red); border-radius: 2px;
}

/* ── Hero Card ───────────────────────────────────────────────────────────────*/
.hero-card {
  background: var(--white); border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); margin-bottom: 24px;
  display: grid; grid-template-columns: 1fr 1fr; transition: box-shadow .2s;
  min-height: 0;
}
.hero-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.12); }
.hero-img {
  overflow: hidden; position: relative;
  background: linear-gradient(135deg, #6a994e 0%, #a7c957 100%);
  aspect-ratio: 1200/630;
  min-height: 220px;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; top: 0; left: 0; }
.hero-body { padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; }

/* ── Post Category Badge ─────────────────────────────────────────────────────*/
.post-cat {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 12px;
}
.post-cat:hover { background: var(--red-dark); color: #fff; }

.hero-body h2 { font-size: 22px; font-weight: 700; color: var(--dark); line-height: 1.3; margin-bottom: 12px; }
.hero-body p  { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }

.post-meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--muted); font-weight: 600; margin-bottom: 14px; }
.post-meta span { display: flex; align-items: center; gap: 4px; }

.read-more {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: #fff; font-weight: 700;
  font-size: 13px; padding: 9px 20px; border-radius: 6px;
  transition: background .15s; width: fit-content;
}
.read-more:hover { background: var(--red-dark); color: #fff; }

/* ── Post Grid ───────────────────────────────────────────────────────────────*/
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }

.post-card {
  background: var(--white); border-radius: 10px; overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
  transition: box-shadow .2s, transform .2s;
  border: 1px solid var(--border); display: flex; flex-direction: column;
}
.post-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.1); transform: translateY(-2px); }

.card-img {
  aspect-ratio: 1200/630; overflow: hidden;
  background: linear-gradient(135deg, #6a994e 0%, #a7c957 100%); flex-shrink: 0;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.card-body { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.card-body .post-cat { margin-bottom: 8px; }
.card-body h3 { font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.35; margin-bottom: 8px; flex: 1; }
.card-body p  { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: var(--muted); font-weight: 600;
  padding-top: 10px; border-top: 1px solid var(--border); margin-top: auto;
}
.card-footer .views { display: flex; align-items: center; gap: 4px; }

/* ── Sidebar ─────────────────────────────────────────────────────────────────*/
.sidebar { display: flex; flex-direction: column; gap: 20px; min-width: 0; overflow: hidden; max-width: 100%; }
.sidebar-widget { background: var(--white); border-radius: 10px; border: 1px solid var(--border); overflow: hidden; max-width: 100%; }
.widget-title { background: var(--dark); color: #fff; font-size: 13px; font-weight: 700; padding: 11px 16px; text-transform: uppercase; letter-spacing: .5px; }
.widget-body { padding: 14px 16px; }

/* Popular Posts */
.popular-list { list-style: none; }
.popular-list li { border-bottom: 1px solid var(--border); }
.popular-list li:last-child { border-bottom: none; }
.popular-list a { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; }
.popular-num {
  background: var(--red); color: #fff; font-size: 11px; font-weight: 700;
  min-width: 22px; height: 22px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px; flex-shrink: 0;
}
.popular-list h4 { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.4; }
.popular-meta { font-size: 11px; color: var(--muted); display: block; margin-top: 2px; }

/* Categories */
.cat-list { list-style: none; }
.cat-list li { border-bottom: 1px solid var(--border); }
.cat-list li:last-child { border-bottom: none; }
.cat-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; font-size: 13px; font-weight: 600;
  color: var(--text); transition: color .15s;
}
.cat-list a:hover { color: var(--red); }
.cat-count { background: var(--bg); border-radius: 20px; padding: 2px 9px; font-size: 11px; color: var(--muted); font-weight: 700; }

/* Tags */
.tags-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  background: var(--bg); border: 1px solid var(--border);
  color: var(--text); font-size: 12px; font-weight: 600;
  padding: 4px 10px; border-radius: 4px; display: inline-block;
  transition: background .15s, color .15s, border-color .15s;
}
.tag:hover { background: var(--red-light); color: var(--red); border-color: var(--red); }

/* ── Pagination ──────────────────────────────────────────────────────────────*/
.pagination { display: flex; gap: 6px; align-items: center; justify-content: center; padding: 10px 0 4px; flex-wrap: wrap; }
.pagination .page-numbers {
  width: 36px; height: 36px; border-radius: 6px;
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--text); font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font); transition: all .15s;
}
.pagination .page-numbers:hover { border-color: var(--red); color: var(--red); }
.pagination .page-numbers.current { background: var(--red); border-color: var(--red); color: #fff; }
.pagination .page-numbers.dots { border: none; background: transparent; cursor: default; }

/* ── Footer ──────────────────────────────────────────────────────────────────*/
.site-footer { background: var(--dark); color: #ccc; margin-top: 40px; }
.footer-top {
  max-width: 1200px; margin: 0 auto; padding: 40px 20px 30px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
}
.footer-logo {
  width: auto;
  height: auto;
  max-width: 100%;
  max-width: min(220px, 100%);
  max-height: 54px;
  object-fit: contain;
  filter: brightness(2);
  margin-bottom: 14px;
}
.footer-about p { font-size: 13px; line-height: 1.7; color: #aaa; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .4px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #aaa; font-size: 13px; transition: color .15s; }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid #333; padding: 16px 20px;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  font-size: 12px; color: #aaa;
}

/* ── Single Post ─────────────────────────────────────────────────────────────*/
.breadcrumb {
  font-size: 13px; color: var(--muted); margin-bottom: 18px;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--red); font-weight: 600; }
.breadcrumb .sep { color: var(--muted); }

.single-article { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.article-hero-img {
  width: 100%; aspect-ratio: 1200/630; overflow: hidden;
  background: linear-gradient(135deg, #6a994e 0%, #a7c957 100%);
}
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-body { padding: 32px; }
.article-header { margin-bottom: 20px; }
.article-header .post-cat { margin-bottom: 10px; }
.article-header h1 { font-size: 28px; font-weight: 700; color: var(--dark); line-height: 1.25; margin-bottom: 14px; }
.article-meta {
  display: flex; align-items: center; gap: 18px;
  font-size: 13px; color: var(--muted); font-weight: 600;
  padding-bottom: 20px; border-bottom: 1px solid var(--border); flex-wrap: wrap;
}
.article-meta span { display: flex; align-items: center; gap: 5px; }
.author-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
}

.article-content { margin-top: 20px; }
.article-content h2 { font-size: 20px; font-weight: 700; color: var(--dark); margin: 28px 0 12px; }
.article-content h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin: 22px 0 10px; }
.article-content p  { font-size: 15px; line-height: 1.85; color: #444; margin-bottom: 16px; }
.article-content ul,
.article-content ol  { margin: 12px 0 18px 20px; }
.article-content li  { font-size: 15px; line-height: 1.8; color: #444; margin-bottom: 6px; }
.article-content a   { color: var(--red); text-decoration: underline; }
.article-content img { border-radius: var(--radius); margin: 16px auto; }
.article-content blockquote {
  border-left: 4px solid var(--red); padding: 12px 20px;
  background: var(--red-light); border-radius: 0 8px 8px 0;
  margin: 20px 0; font-style: italic; color: #555;
}
.info-box { background: #f0faf0; border-left: 4px solid #4caf50; border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 20px 0; }
.info-box p { margin: 0; font-size: 14px; color: #2d5a2d; }

.article-tags {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border);
}
.tag-label { font-size: 13px; font-weight: 700; color: var(--dark); }

.share-bar {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border);
}
.share-label { font-size: 13px; font-weight: 700; color: var(--dark); }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 6px; font-size: 12px; font-weight: 700;
  cursor: pointer; border: none; font-family: var(--font);
  transition: opacity .15s;
}
.share-btn:hover { opacity: .85; }
.share-btn.fb { background: #1877f2; color: #fff; }
.share-btn.tw { background: #1da1f2; color: #fff; }
.share-btn.wp { background: #25d366; color: #fff; }
.share-btn.pi { background: #e60023; color: #fff; }

.related-posts { background: var(--white); border-radius: 10px; border: 1px solid var(--border); padding: 24px; margin-top: 20px; }
.related-posts .section-title { margin-bottom: 16px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-card { border-radius: 8px; overflow: hidden; border: 1px solid var(--border); transition: box-shadow .2s; display: block; }
.related-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.1); }
.related-card-img { aspect-ratio: 1200/630; overflow: hidden; background: linear-gradient(135deg, #6a994e 0%, #a7c957 100%); }
.related-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.related-card h4 { font-size: 13px; font-weight: 700; color: var(--dark); padding: 10px; line-height: 1.4; }

/* ── Archive / Search Headers ────────────────────────────────────────────────*/
.archive-header { background: var(--white); border-radius: 10px; border: 1px solid var(--border); padding: 20px 24px; margin-bottom: 24px; }
.archive-header h1 { font-size: 22px; font-weight: 900; color: var(--dark); margin-bottom: 6px; }
.archive-header p  { font-size: 14px; color: var(--muted); }

/* ── Static Page ─────────────────────────────────────────────────────────────*/
.page-article { background: var(--white); border-radius: 10px; border: 1px solid var(--border); padding: 32px; }
.page-article h1 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }

/* ── 404 ─────────────────────────────────────────────────────────────────────*/
.error-404 { text-align: center; padding: 80px 20px; }
.error-404 .error-number { font-size: 96px; font-weight: 700; color: var(--red); line-height: 1; margin-bottom: 16px; }
.error-404 h2 { font-size: 24px; color: var(--dark); margin-bottom: 12px; }
.error-404 p  { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: #fff; font-weight: 700; font-size: 14px;
  padding: 11px 24px; border-radius: 6px; transition: background .15s;
}
.btn-primary:hover { background: var(--red-dark); color: #fff; }

/* ── No Results ──────────────────────────────────────────────────────────────*/
.no-results { background: var(--white); border-radius: 10px; border: 1px solid var(--border); padding: 40px; text-align: center; }
.no-results h2 { font-size: 20px; color: var(--dark); margin-bottom: 12px; }
.no-results p  { color: var(--muted); font-size: 14px; }

/* ── Mobile Hamburger ────────────────────────────────────────────────────────*/
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; flex-shrink: 0; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--border); padding: 8px 0 12px; }
.mobile-nav.open { display: flex; }
.mobile-nav ul { list-style: none; }
.mobile-nav a { color: var(--dark); font-weight: 700; font-size: 15px; padding: 12px 20px; border-bottom: 1px solid var(--border); display: block; }
.mobile-nav ul li:last-child a { border-bottom: none; }
.mobile-nav a:active { background: var(--red-light); color: var(--red); }

.mobile-search { display: none; padding: 10px 16px; background: var(--bg); border-bottom: 1px solid var(--border); }
.mobile-search .search-box { width: 100%; }
.mobile-search .search-box input { width: 100%; flex: 1; }

/* ── Desktop Sticky Sidebar (≥901px) ────────────────────────────────────────*/
@media (min-width: 901px) {
  .sidebar {
    position: sticky;
    top: 84px;
    align-self: start;
    overflow: visible;
  }
}

/* ── Tablet (≤900px) ─────────────────────────────────────────────────────────*/
@media (max-width: 900px) {
  .content-wrap, .single-content-wrap { grid-template-columns: minmax(0, 1fr); }
  .sidebar { order: 2; } main { order: 1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-about { grid-column: span 2; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-card { grid-template-columns: 1fr; }
  .hero-img { aspect-ratio: 1200/630; }
}

/* ── Mobile (≤600px) ─────────────────────────────────────────────────────────*/
@media (max-width: 600px) {
  .site-nav, .header-actions, .topbar { display: none; }
  .hamburger { display: flex; }
  .mobile-search { display: block; }
  .header-inner { height: 56px; padding: 0 14px; justify-content: space-between; }
  .site-logo img { height: 30px; }
  .cat-pill { padding: 9px 13px; font-size: 12px; }
  .ad-zone.leaderboard, .ad-zone.wide { height: 60px; }
  .content-wrap, .single-content-wrap { padding: 14px 12px; gap: 18px; }
  .ad-wrap { padding: 10px 0 6px; overflow: hidden; }
  .container { padding: 0 12px; overflow: hidden; }
  .hero-card { grid-template-columns: 1fr; }
  .hero-body { padding: 16px; }
  .hero-body h2 { font-size: 18px; }
  .hero-body p  { font-size: 13px; margin-bottom: 12px; }
  .read-more { font-size: 13px; padding: 8px 16px; }
  .post-meta { flex-wrap: wrap; gap: 8px; }
  .posts-grid { grid-template-columns: 1fr; gap: 14px; }
  .related-grid { grid-template-columns: 1fr; gap: 10px; }
  .related-card { display: flex; align-items: center; }
  .related-card-img { width: 100px; flex-shrink: 0; aspect-ratio: auto; height: 70px; }
  .related-card h4 { font-size: 13px; padding: 8px 10px; }
  .card-body { padding: 12px 14px 14px; }
  .card-body h3 { font-size: 15px; }
  .section-title { font-size: 15px; margin-bottom: 12px; }
  .sidebar { gap: 14px; }
  .article-body { padding: 16px; }
  .article-header h1 { font-size: 21px; }
  .article-meta { gap: 8px; font-size: 12px; }
  .article-content h2 { font-size: 17px; margin: 20px 0 10px; }
  .article-content h3 { font-size: 15px; }
  .article-content p  { font-size: 14px; line-height: 1.8; }
  .breadcrumb { font-size: 12px; margin-bottom: 12px; }
  .share-bar { gap: 8px; }
  .share-btn { font-size: 12px; padding: 8px 12px; }
  .footer-top { grid-template-columns: 1fr; gap: 22px; padding: 28px 16px 20px; }
  .footer-about { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 14px 16px; }
  .site-header { box-shadow: 0 2px 10px rgba(0,0,0,.1); }
  .pagination .page-numbers { width: 34px; height: 34px; font-size: 13px; }
}

@media (max-width: 380px) {
  .hero-body h2 { font-size: 16px; }
  .article-header h1 { font-size: 19px; }
  .share-btn span { display: none; }
}

/* ── WordPress Core ──────────────────────────────────────────────────────────*/
.alignleft  { float: left;  margin: 0 20px 10px 0; }
.alignright { float: right; margin: 0 0 10px 20px; }
.aligncenter { margin-left: auto; margin-right: auto; display: block; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--muted); text-align: center; margin-top: 6px; }
.screen-reader-text {
  clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden;
  position: absolute !important; width: 1px;
}
