/* ============================================================
   KATARADAR — style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500&display=swap');

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #0D0D0D;
  --ink2:       #3A3A3A;
  --ink3:       #7A7A7A;
  --ink4:       #AAAAAA;
  --bg:         #F7F4EF;
  --bg2:        #F0ECE5;
  --white:      #FFFFFF;
  --red:        #C0392B;
  --red-dark:   #A93226;
  --border:     #E2DDD6;
  --radius:     4px;
  --font-sans:  'DM Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --max-w:      1100px;
  --side-w:     300px;
  --transition: 0.18s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; object-fit: cover; }
button, input { font-family: var(--font-sans); }

/* ---- UTILITY ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 6px 1.25rem;
}
.topbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-date { opacity: 0.55; }
.topbar-socials { display: flex; gap: 1rem; }
.topbar-socials a { color: #fff; opacity: 0.65; transition: opacity var(--transition); }
.topbar-socials a:hover { opacity: 1; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--white);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo span { color: var(--red); }
.logo:hover span { color: var(--red-dark); }

.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  background: var(--bg);
  transition: border-color var(--transition);
}
.search-form:focus-within { border-color: var(--ink3); }
.search-form svg { color: var(--ink3); flex-shrink: 0; }
.search-form input {
  border: none;
  background: none;
  font-size: 13px;
  color: var(--ink);
  outline: none;
  width: 160px;
}
.btn-sub {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-sub:hover { background: var(--red-dark); }

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

/* ============================================================
   CATEGORY NAV
   ============================================================ */
.cat-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  gap: 0;
  white-space: nowrap;
}
.cat-item {
  padding: 10px 14px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink3);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--transition), border-color var(--transition);
}
.cat-item:hover { color: var(--ink); }
.cat-item.active { color: var(--red); border-bottom-color: var(--red); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 1.25rem 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.6rem 0;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ============================================================
   BREAKING BAR
   ============================================================ */
.breaking-bar {
  background: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 1.25rem;
  overflow: hidden;
}
.breaking-label {
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-wrap { flex: 1; overflow: hidden; }
.ticker-inner {
  display: inline-flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  padding: 0 1.5rem;
  transition: color var(--transition);
}
.ticker-item:hover { color: #fff; }
.ticker-sep { font-size: 12px; color: rgba(255,255,255,0.3); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION
   ============================================================ */
.section { padding: 2rem 0; }
.section-gray { background: var(--bg2); }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--ink);
}
.section-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.see-all {
  font-size: 11px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  transition: color var(--transition);
}
.see-all:hover { color: var(--red-dark); }

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--white); padding: 1.5rem 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

/* Hero main */
.hero-main { padding: 1.5rem; border-right: 1px solid var(--border); }
.hero-img-wrap {
  display: block;
  width: 100%;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
  position: relative;
}
.hero-img-wrap img { width: 100%; height: 100%; transition: transform 0.4s ease; }
.hero-img-wrap:hover img { transform: scale(1.03); }
.hero-img-placeholder {
  height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.img-label {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
}
.tag {
  display: inline-block;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 0.75rem;
  transition: opacity var(--transition);
}
.tag:hover { opacity: 0.85; }
.hero-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.hero-title a:hover { color: var(--red); }
.hero-excerpt { font-size: 14px; color: var(--ink2); line-height: 1.7; margin-bottom: 1rem; }

/* Hero side */
.hero-side { display: flex; flex-direction: column; }
.side-item {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.side-item:last-child { border-bottom: none; }
.side-item:hover { background: var(--bg); }
.side-thumb-wrap {
  width: 80px;
  height: 60px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.side-thumb-wrap img { width: 100%; height: 100%; }
.side-thumb-placeholder { width: 80px; height: 60px; border-radius: 3px; flex-shrink: 0; }
.side-body { flex: 1; min-width: 0; }
.side-cat { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.side-title { font-size: 13px; font-weight: 500; line-height: 1.45; display: block; margin-bottom: 4px; color: var(--ink); }
.side-title:hover { color: var(--red); }
.side-date { font-size: 11px; color: var(--ink4); }

/* ============================================================
   ARTICLE META
   ============================================================ */
.article-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink3);
}
.sep { color: var(--border); }

/* ============================================================
   CARD GRID
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }
.card-img-wrap {
  display: block;
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.card:hover .card-img-wrap img { transform: scale(1.05); }
.card-img-placeholder { width: 100%; height: 100%; }
.card-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  z-index: 2;
}
.card-body { padding: 1rem; }
.card-title {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.card-title a:hover { color: var(--red); }
.card-title-lg { font-size: 18px; }
.card-excerpt { font-size: 13px; color: var(--ink2); line-height: 1.6; margin-bottom: 0.75rem; }

/* ============================================================
   FEATURE GRID (Editor's Pick)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.25rem;
}
.card-feature .card-img-wrap { height: 220px; }
.feature-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
.list-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  cursor: pointer;
}
.list-item:last-child { border-bottom: none; }
.list-item:hover { background: var(--bg); }
.list-thumb-wrap {
  width: 90px;
  height: 68px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.list-thumb-wrap img { width: 100%; height: 100%; }
.list-thumb-placeholder { width: 90px; height: 68px; border-radius: 3px; flex-shrink: 0; }
.list-body { flex: 1; min-width: 0; }
.list-cat { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.list-title {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 4px;
  display: block;
  color: var(--ink);
}
.list-title a:hover { color: var(--red); }
.list-meta { font-size: 11px; color: var(--ink4); }

/* ============================================================
   CATEGORY CHIPS
   ============================================================ */
.cat-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: var(--white);
  transition: all var(--transition);
  color: var(--ink);
}
.cat-chip:hover {
  background: var(--chip-color, var(--red));
  color: #fff;
  border-color: transparent;
}
.chip-count {
  font-size: 11px;
  color: var(--ink3);
  font-weight: 400;
}
.cat-chip:hover .chip-count { color: rgba(255,255,255,0.75); }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-container { padding-top: 1.5rem; padding-bottom: 3rem; }
.article-layout {
  display: grid;
  grid-template-columns: 1fr var(--side-w);
  gap: 2rem;
  align-items: start;
}
.article-main { min-width: 0; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink3);
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--red); }
.bc-current { color: var(--ink2); }

.article-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0.6rem 0 1rem;
  letter-spacing: -0.02em;
}

.article-meta-full {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.author-info { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-name { display: block; font-size: 14px; font-weight: 500; }
.meta-date { display: block; font-size: 12px; color: var(--ink3); }

.share-btns { display: flex; gap: 8px; }
.share-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink2);
  cursor: pointer;
  transition: all var(--transition);
}
.share-btn:hover { border-color: var(--ink3); background: var(--bg); }
.share-fb:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.share-tw:hover { background: #000; border-color: #000; color: #fff; }

.article-figure {
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.article-figure img { width: 100%; max-height: 500px; }

/* Prose styling */
.prose { font-size: 16.5px; line-height: 1.85; color: var(--ink2); }
.prose h2 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--ink); margin: 2rem 0 0.75rem; }
.prose h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--ink); margin: 1.5rem 0 0.6rem; }
.prose p { margin-bottom: 1.25rem; }
.prose a { color: var(--red); text-decoration: underline; }
.prose blockquote { border-left: 3px solid var(--red); margin: 1.5rem 0; padding: 0.5rem 1.25rem; font-style: italic; color: var(--ink3); font-family: var(--font-serif); font-size: 1.05rem; }
.prose img { border-radius: var(--radius); margin: 1.5rem 0; }
.prose ul, .prose ol { margin: 0 0 1.25rem 1.5rem; }
.prose li { margin-bottom: 0.4rem; }
.prose strong { color: var(--ink); font-weight: 500; }

.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.article-tag {
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  color: var(--ink3);
  transition: all var(--transition);
}
.article-tag:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Sidebar */
.article-sidebar { position: sticky; top: 80px; }
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.sidebar-newsletter { background: var(--ink); border-color: var(--ink); color: #fff; }
.sidebar-box-title { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.sidebar-box-desc { font-size: 13px; opacity: 0.7; margin-bottom: 1rem; }
.nl-form { display: flex; flex-direction: column; gap: 8px; }
.nl-form input {
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 13px;
  outline: none;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.45); }
.nl-form button {
  padding: 9px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
}
.nl-form button:hover { background: var(--red-dark); }
.sidebar-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--ink);
}
.sidebar-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-thumb {
  width: 72px;
  height: 54px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.sidebar-thumb img { width: 100%; height: 100%; }
.sidebar-thumb-ph { display: block; }
.sidebar-item-body h4 { font-size: 12px; font-weight: 500; line-height: 1.5; margin-bottom: 4px; }
.sidebar-item-body h4 a:hover { color: var(--red); }
.sidebar-item-body span { font-size: 11px; color: var(--ink4); }

/* ============================================================
   CATEGORY PAGE
   ============================================================ */
.cat-header {
  padding: 1.5rem 0 1.5rem 1rem;
  margin-bottom: 1.5rem;
}
.cat-header-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
}
.cat-header-count { font-size: 13px; color: var(--ink3); margin-top: 4px; }

/* ============================================================
   SEARCH PAGE
   ============================================================ */
.search-page-form {
  display: flex;
  gap: 10px;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.search-page-form input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
}
.search-page-form input:focus { border-color: var(--ink3); }
.search-page-form button {
  padding: 10px 24px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
}
.search-page-form button:hover { background: var(--red); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 2.5rem 0;
}
.page-btn {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink2);
  background: var(--white);
  transition: all var(--transition);
}
.page-btn:hover { border-color: var(--ink); color: var(--ink); }
.page-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--ink3);
}
.empty-state p { margin-bottom: 0.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: #fff;
  margin-top: 2rem;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 2.5rem 1.25rem 1.5rem; }
.footer-top { display: grid; grid-template-columns: 220px 1fr; gap: 3rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 900; margin-bottom: 6px; }
.footer-logo span { color: #E8513D; }
.footer-tagline { font-size: 12px; opacity: 0.45; margin-bottom: 1rem; letter-spacing: 0.03em; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-socials a:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer-col h4 { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.4; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 13px; opacity: 0.65; margin-bottom: 0.6rem; transition: opacity var(--transition); }
.footer-col a:hover { opacity: 1; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 11px; opacity: 0.35; }
.footer-bottom a { color: #fff; transition: opacity var(--transition); }
.footer-bottom a:hover { opacity: 0.8; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-main { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .topbar-socials { display: none; }
  .search-form { display: none; }
  .hamburger { display: flex; }
  .cat-nav-inner .cat-item:nth-child(n+6) { display: none; }
  .article-title { font-size: 1.6rem; }
  .article-meta-full { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
  .logo { font-size: 1.5rem; }
  .hero-title { font-size: 1.35rem; }
  .card-grid-3 { grid-template-columns: 1fr; }
}
