/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: var(--font-body); color: var(--dark);
  background: var(--light); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color .2s; }
a:hover { color: var(--accent); }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }

/* ─── TOP BAR ──────────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  padding: 7px 0;
}
.topbar-inner {
  max-width: var(--site-max); margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar-links a {
  font-size: 12px; color: rgba(255,255,255,.7); margin-right: 16px;
  letter-spacing: .02em;
}
.topbar-links a:hover { color: #fff; }

/* ─── HEADER ───────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 4px solid var(--accent);
  padding: 14px 0;
  box-shadow: 0 2px 12px rgba(17,75,133,.07);
}
.header-inner {
  max-width: var(--site-max); margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.site-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 1.55rem; font-weight: 800;
  color: var(--dark); letter-spacing: -.01em;
}
.site-logo:hover { color: var(--accent); }
.logo-icon {
  width: 38px; height: 38px; background: var(--accent);
  border-radius: var(--radius-btn);
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; fill: var(--white); }
.header-search {
  display: flex; border: 2px solid var(--border);
  border-radius: var(--radius-input); overflow: hidden;
  transition: border-color .2s;
}
.header-search:focus-within { border-color: var(--accent); }
.header-search input {
  border: none; outline: none; padding: 7px 14px; font-size: 13px;
  font-family: var(--font-body); color: var(--dark); width: 210px;
  background: var(--light);
}
.header-search button {
  background: var(--accent); border: none; padding: 7px 12px;
  cursor: pointer; color: var(--white); transition: background .2s;
}
.header-search button:hover { background: var(--accent-dark); }

/* ─── NAV ──────────────────────────────────────────────────────── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(17,75,133,.06);
}
.nav-inner {
  max-width: var(--site-max); margin: 0 auto; padding: 0 20px;
  display: flex; gap: 0;
}
.nav-inner a {
  display: block; padding: 12px 16px; font-size: 13px; font-weight: 700;
  color: var(--mid); letter-spacing: .01em;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-inner a:hover,
.nav-inner a.active,
.nav-inner a.current-menu-item { color: var(--accent); border-bottom-color: var(--accent); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 10px 20px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 4px 0; border-radius: 2px; }

/* ─── TICKER BAR ───────────────────────────────────────────────── */
.ticker-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.ticker-inner {
  max-width: var(--site-max); margin: 0 auto; padding: 0 20px;
  display: flex; gap: 28px;
}
.ticker-item {
  display: flex; align-items: center; gap: 12px; min-width: 200px; flex: 1;
}
.ticker-thumb {
  width: 52px; height: 40px; flex-shrink: 0;
  background: var(--border); border-radius: var(--radius-thumb); overflow: hidden;
}
.ticker-item p { font-size: 12px; color: var(--dark); line-height: 1.4; }
.ticker-item p strong {
  display: block; font-size: 10px; color: var(--accent);
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: 2px;
}

/* ─── WRAPPER ──────────────────────────────────────────────────── */
.site-wrap {
  max-width: var(--site-max); margin: 0 auto; padding: 0 20px;
}

/* ─── HERO SECTION ─────────────────────────────────────────────── */
.hero { padding: 28px 0 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px 300px;
  grid-template-rows: auto auto;
  gap: 0 24px;
}
.hero-main { grid-row: 1 / 3; grid-column: 1 / 2; }
.hero-main .post-thumb {
  height: 300px; position: relative; margin-bottom: 16px;
  background: var(--border); border-radius: var(--radius-card); overflow: hidden;
}
.hero-main .post-thumb img { height: 100%; transition: transform .4s; }
.hero-main:hover .post-thumb img { transform: scale(1.03); }
.hero-main .post-title {
  font-family: var(--font-head); font-size: 1.65rem; font-weight: 800;
  line-height: 1.25; margin-bottom: 10px; color: var(--dark); letter-spacing: -.01em;
}
.hero-main .post-excerpt { font-size: 14px; color: var(--mid); line-height: 1.7; margin-bottom: 14px; }
.hero-main .read-more {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; background: var(--accent); color: var(--white);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  border-radius: var(--radius-btn); transition: background .2s, transform .2s;
}
.hero-main .read-more:hover {
  background: var(--accent-dark); color: var(--white); transform: translateY(-1px);
}
.hero-mid { grid-column: 2 / 3; grid-row: 1 / 3; display: flex; flex-direction: column; gap: 18px; }
.hero-right { grid-column: 3 / 4; grid-row: 1 / 3; display: flex; flex-direction: column; gap: 18px; }

/* ─── GENERIC CARD STYLES ──────────────────────────────────────── */
.card {
  display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.card .card-thumb {
  overflow: hidden; background: var(--border); flex-shrink: 0;
  border-radius: var(--radius-thumb) var(--radius-thumb) 0 0;
}
.card .card-thumb img { transition: transform .35s; }
.card:hover .card-thumb img { transform: scale(1.05); }
.card .card-body { padding: 14px; }
.card .card-date {
  font-size: 11px; color: var(--muted); margin-bottom: 5px; display: block;
  letter-spacing: .03em;
}
.card .card-title {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  line-height: 1.35; margin-bottom: 6px; color: var(--dark);
}
.card .card-title a:hover { color: var(--accent); }
.card .card-excerpt { font-size: 13px; color: var(--mid); line-height: 1.6; }

/* card sizes */
.card--medium .card-thumb { height: 150px; }
.card--small {
  flex-direction: row; gap: 0;
  border-radius: var(--radius-card); overflow: hidden;
}
.card--small .card-thumb {
  width: 100px; height: 80px; flex-shrink: 0;
  border-radius: var(--radius-card) 0 0 var(--radius-card);
}
.card--small .card-body { padding: 10px 12px; }
.card--small .card-title { font-size: .87rem; }
.card--list {
  flex-direction: row; gap: 0;
  border-radius: var(--radius-card);
}
.card--list .card-thumb {
  width: 130px; height: 90px; flex-shrink: 0;
  border-radius: var(--radius-card) 0 0 var(--radius-card);
}
.card--list .card-body { padding: 10px 14px; }
.card--list .card-title { font-size: .93rem; }

/* featured card with badge */
.card--featured { position: relative; }
.card--featured .card-thumb { height: 180px; border-radius: var(--radius-card) var(--radius-card) 0 0; }
.card--featured .badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--accent); color: var(--white); font-size: 10px; font-weight: 800;
  text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-badge);
  letter-spacing: .06em;
}

/* ─── SECTION HEADER ───────────────────────────────────────────── */
.section-header {
  display: flex; align-items: center; gap: 14px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 10px; margin-bottom: 20px;
}
.section-header h2 {
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 800;
  color: var(--navy); white-space: nowrap;
}
.section-header .line { flex: 1; height: 1px; background: var(--border); }
.section-header .view-all {
  font-size: 12px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: .05em;
  white-space: nowrap;
}
.section-header .view-all:hover { color: var(--accent-dark); }

/* ─── CATEGORY BLOCK BACKGROUNDS ──────────────────────────────── */
.category-block { margin-bottom: 12px; padding: 28px 24px; border-radius: var(--radius-card); }
.category-block:nth-child(1) { background: var(--bg-section-1); }
.category-block:nth-child(2) { background: var(--bg-section-2); }
.category-block:nth-child(3) { background: var(--bg-section-3); }
.category-block:nth-child(4) { background: var(--bg-section-4); }
.category-block:nth-child(5) { background: var(--bg-section-2); }

/* ─── EMAIL / NEWSLETTER WIDGET ────────────────────────────────── */
.widget-email {
  background: linear-gradient(135deg, var(--navy) 0%, #1a6fcc 100%);
  color: var(--white); padding: 22px 18px;
  border-radius: var(--radius-card);
}
.widget-email h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.widget-email p  { font-size: 12px; color: rgba(255,255,255,.7); margin-bottom: 14px; line-height: 1.55; }
.widget-email input {
  width: 100%; padding: 9px 12px; border: none;
  background: rgba(255,255,255,.15);
  color: var(--white); font-size: 13px; font-family: var(--font-body);
  margin-bottom: 8px; border-radius: var(--radius-input);
  transition: background .2s;
}
.widget-email input:focus { outline: none; background: rgba(255,255,255,.22); }
.widget-email input::placeholder { color: rgba(255,255,255,.5); }
.widget-email button {
  width: 100%; padding: 10px; background: var(--accent); border: none;
  color: var(--white); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  cursor: pointer; border-radius: var(--radius-input); transition: background .2s;
}
.widget-email button:hover { background: var(--accent-dark); }
.widget-email .privacy { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 8px; line-height: 1.4; }
.widget-email .privacy a { color: rgba(255,255,255,.75); text-decoration: underline; }

/* ─── CONTENT + SIDEBAR ────────────────────────────────────────── */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 32px 0;
}
.main-content { min-width: 0; }
.sidebar { min-width: 0; }

/* ─── CATEGORY LAYOUTS ─────────────────────────────────────────── */
/* travel-style: large left + 2 stacked right */
.travel-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.travel-grid .card--large .card-thumb { height: 210px; }
.travel-grid .right-stack { display: flex; flex-direction: column; gap: 16px; }
.travel-grid .right-stack .card--medium .card-thumb { height: 115px; }

/* health-style: 2 left stacked + 1 right */
.health-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px;
}
.health-grid .card--medium .card-thumb { height: 125px; }

/* news layout */
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.news-list { display: flex; flex-direction: column; gap: 16px; }

/* 3-col */
.grid-3col {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 36px;
}
.grid-3col .card--medium .card-thumb { height: 145px; }

/* ─── PROMO BAND ────────────────────────────────────────────────── */
.promo-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1a6fcc 100%);
  padding: 22px 0; margin: 16px 0 0;
  border-radius: var(--radius-card);
}
.promo-inner {
  max-width: var(--site-max); margin: 0 auto; padding: 0 28px;
  display: flex; gap: 24px; align-items: center; justify-content: space-between;
}
.promo-inner p {
  color: var(--white); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.promo-inner p::before {
  content: '→';
  display: inline-block;
  color: var(--accent);
  font-size: 16px;
}
.promo-inner p a { color: rgba(255,255,255,.85); }
.promo-inner p a:hover { color: var(--accent); }

/* ─── SIDEBAR WIDGETS ───────────────────────────────────────────── */
.widget { margin-bottom: 28px; }
.widget-title {
  font-family: var(--font-head); font-size: 1rem; font-weight: 800;
  color: var(--navy);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px; margin-bottom: 14px;
}
.widget-popular-posts { display: flex; flex-direction: column; gap: 14px; }
.widget-categories ul li {
  border-bottom: 1px solid var(--border); padding: 8px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.widget-categories ul li a { font-size: 13px; color: var(--mid); font-weight: 600; }
.widget-categories ul li a:hover { color: var(--accent); }
.widget-categories ul li .count {
  font-size: 11px; background: var(--light); color: var(--muted);
  padding: 2px 8px; border-radius: var(--radius-badge);
}
.widget-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.widget-tags a {
  display: inline-block; padding: 5px 12px;
  background: var(--white); color: var(--mid);
  font-size: 12px; border-radius: var(--radius-badge);
  border: 1px solid var(--border); font-weight: 600;
  transition: all .2s;
}
.widget-tags a:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ─── FOOTER ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,.65);
  padding: 44px 0 0; margin-top: 48px;
}
.footer-inner { max-width: var(--site-max); margin: 0 auto; padding: 0 20px; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 1.35rem; font-weight: 800;
  color: var(--white); letter-spacing: -.01em;
}
.footer-logo:hover { color: var(--accent); }
.footer-logo .logo-icon { width: 32px; height: 32px; }
.footer-social { display: flex; gap: 10px; align-items: center; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: all .2s;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.footer-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
  padding: 32px 0;
}
.footer-col h4 {
  font-family: var(--font-head); font-size: .85rem; font-weight: 800;
  color: var(--white); margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: .06em;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.6); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 16px 0;
  font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.6;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--accent); }

/* ─── UTILITIES ────────────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* placeholder colors */
.ph-1 { background: #dde8f5; }
.ph-2 { background: #fde8de; }
.ph-3 { background: #d9eee1; }
.ph-4 { background: #ede8d9; }
.ph-5 { background: #e2ddf5; }
.ph-6 { background: #f5dde2; }

/* ─── SINGLE POST ──────────────────────────────────────────────── */
.single-post-hero { margin-bottom: 28px; }
.single-post-hero img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--radius-card);
}
.single-post-title {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  line-height: 1.25; margin-bottom: 14px; letter-spacing: -.01em;
}
.single-post-meta {
  font-size: 12px; color: var(--muted);
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  padding: 14px 0; border-bottom: 1px solid var(--border); margin-bottom: 28px;
}
.single-post-meta .author-avatar {
  width: 34px; height: 34px; border-radius: 50%; overflow: hidden;
  background: var(--border); flex-shrink: 0;
}
.single-post-meta .author-name { font-weight: 700; color: var(--dark); }
.article-content { font-size: 16px; line-height: 1.85; color: var(--mid); }
.article-content h2, .article-content h3, .article-content h4 {
  font-family: var(--font-head); color: var(--dark); font-weight: 800;
  margin: 32px 0 12px; line-height: 1.3; letter-spacing: -.01em;
}
.article-content h2 { font-size: 1.5rem; }
.article-content h3 { font-size: 1.25rem; }
.article-content p  { margin-bottom: 18px; }
.article-content ul, .article-content ol { margin: 14px 0 14px 24px; }
.article-content li { margin-bottom: 7px; }
.article-content blockquote {
  border-left: 4px solid var(--accent); padding: 16px 24px;
  margin: 24px 0; background: var(--bg-section-1);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  font-style: italic; color: var(--navy); font-weight: 600;
}
.article-content a { color: var(--accent); text-decoration: underline; }
.article-content img { border-radius: var(--radius-card); margin: 24px 0; height: auto; }
.post-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 20px 0; border-top: 1px solid var(--border); margin-top: 28px;
}
.post-tags a {
  padding: 5px 14px; background: var(--light);
  border: 1px solid var(--border); border-radius: var(--radius-badge);
  font-size: 12px; color: var(--mid); font-weight: 600; transition: all .2s;
}
.post-tags a:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.author-box {
  display: flex; gap: 20px; background: var(--bg-section-2); padding: 24px;
  border-radius: var(--radius-card); margin: 28px 0;
  border: 1px solid var(--border);
}
.author-box .author-img {
  width: 76px; height: 76px; border-radius: 50%; overflow: hidden;
  background: var(--border); flex-shrink: 0;
}
.author-box h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.author-box p { font-size: 13px; color: var(--mid); line-height: 1.6; }

/* ─── ARCHIVE / CATEGORY PAGE ───────────────────────────────────── */
.archive-header {
  background: linear-gradient(135deg, var(--navy) 0%, #1a6fcc 100%);
  padding: 32px 0; margin-bottom: 36px;
}
.archive-header-inner {
  max-width: var(--site-max); margin: 0 auto; padding: 0 20px;
}
.archive-header h1 {
  font-family: var(--font-head); font-size: 2rem; color: var(--white);
  font-weight: 800; margin-bottom: 6px; letter-spacing: -.01em;
}
.archive-header p { font-size: 14px; color: rgba(255,255,255,.65); }
.posts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 36px;
}
.posts-grid .card--medium .card-thumb { height: 185px; }

/* ─── PAGINATION ───────────────────────────────────────────────── */
.pagination {
  display: flex; justify-content: center; gap: 6px; padding: 32px 0;
}
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid var(--border);
  border-radius: var(--radius-btn); font-size: 13px; font-weight: 700; color: var(--mid);
  transition: all .2s;
}
.pagination a:hover, .pagination .current {
  background: var(--accent); border-color: var(--accent); color: var(--white);
}

/* ─── CONTACT PAGE ─────────────────────────────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a6fcc 100%);
  padding: 52px 0; margin-bottom: 52px; text-align: center;
}
.contact-hero h1 {
  font-family: var(--font-head); font-size: 2.25rem; color: var(--white);
  margin-bottom: 10px; font-weight: 800; letter-spacing: -.01em;
}
.contact-hero p { font-size: 15px; color: rgba(255,255,255,.65); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 380px; gap: 52px;
  max-width: var(--site-max); margin: 0 auto; padding: 0 20px 52px;
}
.contact-form-wrap h2 {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; margin-bottom: 22px;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 10px 14px; border: 2px solid var(--border);
  border-radius: var(--radius-input); font-size: 13px; color: var(--dark);
  background: var(--white); font-family: var(--font-body);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(251,102,48,.12);
}
.form-group textarea { height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  padding: 11px 30px; background: var(--accent); color: var(--white); border: none;
  cursor: pointer; font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; border-radius: var(--radius-btn); transition: background .2s, transform .2s;
}
.btn-submit:hover { background: var(--accent-dark); transform: translateY(-1px); }
.contact-info h2 {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; margin-bottom: 22px;
}
.contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info-item .icon {
  width: 42px; height: 42px; flex-shrink: 0; background: var(--accent);
  border-radius: var(--radius-btn);
  display: flex; align-items: center; justify-content: center; color: var(--white);
}
.contact-info-item h4 { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.contact-info-item p { font-size: 13px; color: var(--muted); }

/* ─── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 280px; }
  .hero-right { display: none; }
  .health-grid { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-mid  { grid-column: 1; grid-row: auto; }
  .hero-right { display: flex; grid-column: 1; grid-row: auto; }
  .content-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .travel-grid { grid-template-columns: 1fr; }
  .health-grid  { grid-template-columns: 1fr; }
  .news-grid    { grid-template-columns: 1fr; }
  .grid-3col    { grid-template-columns: 1fr 1fr; }
  .ticker-inner { gap: 14px; overflow-x: auto; }
  .ticker-item  { min-width: 180px; }
  .footer-cols  { grid-template-columns: 1fr; }
  .hamburger    { display: block; }
  .nav-inner    { display: none; flex-direction: column; }
  .nav-inner.open { display: flex; }
  .nav-inner a  { border-bottom: 1px solid var(--border); padding: 12px 20px; }
  .hero-main .post-title { font-size: 1.3rem; }
  .posts-grid   { grid-template-columns: 1fr; }
  .single-post-hero img { height: 270px; }
  .single-post-title { font-size: 1.55rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 18px; }
  .category-block { padding: 20px 14px; }
}
@media (max-width: 480px) {
  .grid-3col { grid-template-columns: 1fr; }
  .topbar-links { display: none; }
  .header-search input { width: 130px; }
  .promo-band { border-radius: 0; }
}

/* ─── CUSTOM LOGO ──────────────────────────────────────────────── */
/* Header logo */
.site-header .custom-logo {
  width: auto;
  height: 48px;
  max-width: 200px;
  object-fit: contain;
}

/* Footer logo — slightly smaller, white filter for dark background */
.site-footer .custom-logo {
  width: auto;
  height: 40px;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* makes any logo white on dark footer */
}
.custom-logo-wrap { display: flex; align-items: center; }
.custom-logo-link  { display: flex; align-items: center; line-height: 1; }
.custom-logo-wrap .custom-logo-link img { margin: 0; }
