/* Urban Street — streetwear blog template */
:root {
  --ink: #000;
  --ink-soft: #1a1a1a;
  --gray: #555;
  --gray-light: #888;
  --line: #000;
  --soft: #f2f2f2;
  --bg: #fff;
  --accent: #ff5400;
  --accent-dark: #e04a00;
  --hff: 'Anton', Impact, sans-serif;
  --bff: 'Inter', system-ui, sans-serif;
  --container: 1280px;
  --radius: 0;
  --border: 2px solid var(--line);
  --shadow-hard: 6px 6px 0 0 var(--ink);
  --shadow-accent: 6px 6px 0 0 var(--accent);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--bff);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--hff); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.05; color: var(--ink); }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  font-family: var(--hff);
  text-transform: uppercase;
  font-size: 14px;
}
.skip-link:focus { left: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Header */
.site-header { background: var(--bg); border-bottom: var(--border); position: relative; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 16px; }
.site-logo { display: flex; align-items: center; }
.site-logo .logo-svg svg { height: 48px; width: auto; max-width: 300px; }
.site-logo img { max-height: 54px; width: auto; }
.site-name {
  font-family: var(--hff);
  font-size: 38px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  transform: rotate(-1deg);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border);
  background: var(--bg);
  color: var(--ink);
  transition: transform .15s, box-shadow .15s;
}
.icon-btn:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard); }
.icon-btn svg { width: 20px; height: 20px; }

/* Nav */
.main-nav { background: var(--ink); border-bottom: var(--border); position: sticky; top: 0; z-index: 50; }
.main-nav .container { display: flex; align-items: center; position: relative; }
.nav-menu { display: flex; align-items: center; flex-wrap: wrap; }
.nav-item > a {
  display: block;
  padding: 16px 18px;
  font-family: var(--hff);
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.04em;
  transition: color .15s, background .15s;
}
.nav-item > a:hover, .nav-item.active > a { color: var(--accent); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 14px 12px;
  margin-right: auto;
  background: var(--accent);
}
.nav-toggle span { width: 24px; height: 3px; background: #fff; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Layout */
.layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; padding: 34px 0 60px; }
.main-col { min-width: 0; }
.sidebar { display: flex; flex-direction: column; gap: 34px; }

/* Section heads */
.section-head { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.section-title {
  font-size: 34px;
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  transform: rotate(-1deg);
}
.section-line { flex: 1; height: 3px; background: var(--ink); }

/* Hero */
.hero { padding: 36px 0; }
.hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px; }
.hero-main { position: relative; }
.hero-main .card-thumb { aspect-ratio: 4/3; }
.hero-main h2 {
  font-size: 42px;
  margin-top: 16px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  display: inline;
  box-decoration-break: clone;
}
.hero-main h2 a { color: #fff; }
.hero-main h2 a:hover { color: var(--accent); }
.hero-side { display: flex; flex-direction: column; gap: 22px; }
.hero-side article { display: grid; grid-template-columns: 140px 1fr; gap: 16px; align-items: center; }
.hero-side .card-thumb { aspect-ratio: 1/1; width: 140px; height: 140px; }
.hero-side h3 { font-size: 20px; }

/* Cards */
.card { position: relative; }
.card-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--soft);
  border: var(--border);
  transition: transform .15s, box-shadow .15s;
}
.card-thumb:hover { transform: translate(-4px, -4px); box-shadow: var(--shadow-hard); }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-thumb img { transform: scale(1.05); }
.meta-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-family: var(--bff);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
}
.meta-line a { color: var(--gray); }
.meta-line a:hover { color: var(--accent); }
.meta-line .sep { color: var(--accent); font-weight: 900; }
.card h3 { font-size: 26px; margin-top: 10px; }
.card h3 a:hover { color: var(--accent); }
.card-excerpt { margin-top: 10px; color: var(--gray); font-size: 15px; line-height: 1.6; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-family: var(--hff);
  font-size: 14px;
  text-transform: uppercase;
  border: var(--border);
  padding: 10px 14px;
  background: var(--bg);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.read-more:hover { transform: translate(-4px, -4px); box-shadow: var(--shadow-hard); background: var(--accent); color: #fff; }
.read-more svg { width: 16px; height: 16px; }

/* Badges */
.sticker-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 32px;
  padding: 0 12px;
  background: var(--accent);
  color: #fff;
  font-family: var(--hff);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: var(--border);
  transform: rotate(4deg);
  box-shadow: 3px 3px 0 0 var(--ink);
}
.sticker-badge--sm { min-width: 42px; height: 26px; font-size: 12px; top: -8px; right: -8px; }
.highlight {
  background: var(--accent);
  color: #fff;
  padding: 0 6px;
}

/* Cards grid */
.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px 28px; }

/* Category circles */
.cat-strip { padding: 30px 0; border-top: var(--border); border-bottom: var(--border); margin-bottom: 34px; }
.cat-strip-row { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 10px; }
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  border: var(--border);
  padding: 10px 18px;
  background: var(--bg);
  transition: transform .15s, box-shadow .15s;
}
.cat-pill:hover { transform: translate(-4px, -4px); box-shadow: var(--shadow-hard); }
.cat-pill img { width: 44px; height: 44px; object-fit: cover; border: var(--border); }
.cat-pill h3 { font-size: 16px; }
.cat-pill span { font-size: 12px; color: var(--gray-light); font-weight: 700; }

/* Widgets */
.widget { border: var(--border); padding: 22px; background: var(--bg); }
.widget-title {
  font-size: 24px;
  margin-bottom: 18px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  display: inline-block;
  transform: rotate(-1deg);
}
.popular-item { display: grid; grid-template-columns: 96px 1fr; gap: 14px; margin-bottom: 18px; }
.popular-item:last-child { margin-bottom: 0; }
.popular-item .card-thumb { width: 96px; height: 80px; }
.popular-item h4 { font-size: 15px; line-height: 1.2; margin-top: 4px; }
.newsletter-widget-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-widget-form input {
  width: 100%;
  padding: 14px;
  border: var(--border);
  font-family: var(--bff);
  font-size: 14px;
}
.newsletter-widget-form button {
  padding: 14px;
  background: var(--accent);
  color: #fff;
  font-family: var(--hff);
  font-size: 16px;
  text-transform: uppercase;
  border: var(--border);
  transition: transform .15s, box-shadow .15s;
}
.newsletter-widget-form button:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard); }
.cat-cards { display: flex; flex-direction: column; gap: 14px; }
.cat-card {
  position: relative;
  display: block;
  border: var(--border);
  overflow: hidden;
  min-height: 96px;
  background: #111;
  transition: transform .15s, box-shadow .15s;
}
.cat-card:hover { transform: translate(-4px, -4px); box-shadow: var(--shadow-hard); }
.cat-card img { width: 100%; aspect-ratio: 16/6; object-fit: cover; }
.cc-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  background: linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 100%);
  color: #fff;
}
.cc-name { font-family: var(--hff); font-size: 18px; text-transform: uppercase; }
.cc-count { background: var(--accent); color: #fff; padding: 4px 10px; font-family: var(--hff); font-size: 14px; }

/* Social */
.social-stats { display: flex; flex-direction: column; gap: 12px; }
.social-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: var(--border);
  background: var(--bg);
  transition: transform .15s, box-shadow .15s;
}
.social-stat:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard); }
.social-stat svg { width: 18px; height: 18px; }
.ss-left { display: flex; align-items: center; gap: 10px; font-family: var(--hff); font-size: 14px; text-transform: uppercase; }
.count { font-family: var(--hff); font-size: 16px; color: var(--accent); }

/* Breadcrumb */
.breadcrumb { padding: 22px 0 0; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray); }
.breadcrumb-list { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.breadcrumb-item a { color: var(--gray); }
.breadcrumb-item a:hover { color: var(--accent); }
.breadcrumb-item + .breadcrumb-item::before { content: "//"; margin-right: 10px; color: var(--accent); font-weight: 900; }
.breadcrumb-item.active { color: var(--ink); }

/* Article */
.article-head { padding: 10px 0 28px; }
.article-head h1 { font-size: 52px; max-width: 900px; }
.article-excerpt { margin-top: 18px; font-size: 18px; color: var(--gray); max-width: 760px; line-height: 1.55; }
.article-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
}
.article-meta-row a { color: var(--gray); }
.article-meta-row a:hover { color: var(--accent); }
.avatar-letter {
  width: 38px;
  height: 38px;
  border-radius: 0;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hff);
  font-size: 16px;
  text-transform: uppercase;
  border: var(--border);
}
.avatar-letter--xl { width: 80px; height: 80px; font-size: 36px; }
.avatar-letter--card { width: 80px; height: 80px; font-size: 34px; margin: 0 auto 16px; }
.share-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: var(--border);
  padding: 8px 12px;
  margin-bottom: 28px;
}
.share-label { font-family: var(--hff); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; padding-right: 8px; }
.share-pill a { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border: var(--border); background: var(--bg); transition: transform .12s; }
.share-pill a:hover { transform: translate(-2px, -2px); background: var(--accent); color: #fff; }
.share-pill svg { width: 15px; height: 15px; }
.article-featured { border: var(--border); margin-bottom: 34px; }
.article-featured img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-content {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.article-content h2 { font-size: 34px; margin: 40px 0 18px; background: var(--accent); color: #fff; padding: 8px 14px; display: inline-block; }
.article-content h3 { font-size: 26px; margin: 32px 0 14px; }
.article-content p { margin-bottom: 20px; }
.article-content ul, .article-content ol { margin: 0 0 20px 24px; list-style: square; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 8px; }
.article-content blockquote {
  margin: 28px 0;
  padding: 22px 26px;
  border: var(--border);
  border-left: 8px solid var(--accent);
  background: var(--soft);
  font-size: 19px;
  font-weight: 500;
}
.article-content a { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; }
.article-content a:hover { background: var(--accent); color: #fff; }
.article-content img { border: var(--border); margin: 24px 0; }
.social-share { display: flex; align-items: center; gap: 14px; margin: 40px 0; padding: 20px 0; border-top: var(--border); border-bottom: var(--border); }
.social-share .share-label { font-family: var(--hff); font-size: 16px; text-transform: uppercase; }
.share-buttons { display: flex; gap: 10px; }
.share-btn { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: var(--border); background: var(--bg); transition: transform .12s; }
.share-btn:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard); background: var(--accent); color: #fff; }
.share-btn svg { width: 18px; height: 18px; }
.author-box {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 26px;
  border: var(--border);
  background: var(--soft);
  margin-bottom: 40px;
}
.author-box-avatar { width: 80px; height: 80px; object-fit: cover; border: var(--border); }
.author-box-info h3 { font-size: 22px; }
.author-box-info h3 a:hover { color: var(--accent); }
.author-box-info p { margin-top: 8px; color: var(--gray); font-size: 15px; }
.author-box-link { display: inline-block; margin-top: 12px; font-family: var(--hff); font-size: 14px; text-transform: uppercase; border-bottom: 2px solid var(--accent); }

/* Category page */
.category-header { padding: 30px 0 24px; }
.category-header h1 {
  font-size: 56px;
  display: inline-block;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  transform: rotate(-1deg);
}
.category-header p { margin-top: 20px; font-size: 17px; color: var(--gray); max-width: 720px; }
.category-featured { margin-bottom: 44px; }
.category-featured .card-thumb { aspect-ratio: 16/9; }
.category-featured h2 { font-size: 36px; margin-top: 14px; }
.no-articles { padding: 60px 0; text-align: center; border: var(--border); font-size: 18px; color: var(--gray); }

/* Author */
.author-hero { display: flex; gap: 26px; align-items: center; padding: 34px 0; border-bottom: var(--border); }
.author-hero-avatar { width: 100px; height: 100px; object-fit: cover; border: var(--border); flex-shrink: 0; }
.author-hero h1 { font-size: 44px; }
.author-hero .bio { margin-top: 10px; font-size: 16px; color: var(--gray); max-width: 640px; line-height: 1.6; }
.author-hero .articles-count { margin-top: 12px; font-family: var(--hff); font-size: 14px; text-transform: uppercase; color: var(--accent); }

/* Author list */
.authors-head { padding: 30px 0 10px; }
.authors-head h1 { font-size: 44px; display: inline-block; background: var(--accent); color: #fff; padding: 10px 18px; transform: rotate(-1deg); }
.authors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 26px; padding: 34px 0 48px; }
.author-card {
  display: block;
  border: var(--border);
  padding: 32px 20px;
  text-align: center;
  background: var(--bg);
  transition: transform .15s, box-shadow .15s;
}
.author-card:hover { transform: translate(-5px, -5px); box-shadow: var(--shadow-hard); }
.author-card-avatar { width: 88px; height: 88px; object-fit: cover; border: var(--border); margin: 0 auto 18px; }
.author-card h3 { font-size: 22px; }
.author-card .ac-count { margin-top: 8px; font-size: 13px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }

/* Static pages (contact/page) */
.page-wrap, .contact-wrap { max-width: 780px; margin: 0 auto; padding: 40px 0 70px; }
.page-wrap h1, .contact-wrap h1 {
  font-size: 44px;
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  margin-bottom: 22px;
  transform: rotate(-1deg);
}
.contact-intro { font-size: 17px; color: var(--gray); margin-bottom: 32px; line-height: 1.65; }
.contact-email-box { text-align: center; border: var(--border); padding: 46px 28px; background: var(--soft); }
.contact-email-box a { font-family: var(--hff); font-size: 24px; color: var(--ink); word-break: break-all; border-bottom: 4px solid var(--accent); }
.contact-email-box a:hover { color: var(--accent); }

/* 404 */
.error-page { text-align: center; padding: 100px 24px 110px; }
.error-code { font-family: var(--hff); font-size: 140px; line-height: 1; color: var(--accent); transform: rotate(-2deg); text-shadow: 6px 6px 0 var(--ink); }
.error-title { font-size: 36px; margin: 24px 0 14px; }
.error-message { font-size: 17px; color: var(--gray); max-width: 480px; margin: 0 auto 34px; }
.error-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.error-btn { display: inline-block; padding: 16px 30px; font-family: var(--hff); font-size: 15px; text-transform: uppercase; border: var(--border); transition: transform .15s, box-shadow .15s, background .15s; }
.error-btn-primary { background: var(--ink); color: #fff; }
.error-btn-primary:hover { transform: translate(-4px, -4px); box-shadow: var(--shadow-accent); }
.error-btn-secondary { background: var(--bg); color: var(--ink); }
.error-btn-secondary:hover { transform: translate(-4px, -4px); box-shadow: var(--shadow-hard); }

/* Footer */
.site-footer { border-top: var(--border); background: var(--ink); color: #fff; }
.footer-social-strip { display: flex; gap: 12px; padding: 20px 0; border-bottom: 2px solid rgba(255,255,255,.15); }
.footer-social-strip a { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; color: #fff; transition: transform .12s, background .12s; }
.footer-social-strip a:hover { transform: translate(-3px, -3px); background: var(--accent); border-color: var(--accent); }
.footer-social-strip svg { width: 18px; height: 18px; }
.footer-top { display: grid; grid-template-columns: 1.4fr .9fr .9fr 1fr; gap: 34px; padding: 46px 0; }
.footer-logo { font-family: var(--hff); font-size: 30px; text-transform: uppercase; color: #fff; display: inline-block; transform: rotate(-1deg); }
.footer-desc { margin-top: 14px; color: #aaa; font-size: 15px; line-height: 1.6; }
.footer-col h4 { font-size: 18px; color: #fff; margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #aaa; font-size: 14px; font-weight: 500; }
.footer-col a:hover { color: var(--accent); }
.footer-newsletter { display: flex; flex-direction: column; gap: 12px; }
.footer-newsletter input { padding: 14px; border: 2px solid #fff; background: transparent; color: #fff; font-size: 14px; }
.footer-newsletter input::placeholder { color: #aaa; }
.footer-newsletter button { padding: 14px; background: var(--accent); color: #fff; font-family: var(--hff); font-size: 15px; text-transform: uppercase; border: 2px solid var(--accent); transition: transform .12s; }
.footer-newsletter button:hover { transform: translate(-3px, -3px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 2px solid rgba(255,255,255,.15); font-size: 13px; color: #aaa; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: #aaa; text-transform: uppercase; font-weight: 700; font-size: 12px; letter-spacing: 0.06em; }
.footer-bottom-links a:hover { color: var(--accent); }
.footer-bottom-simple { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; font-size: 13px; color: #aaa; }
.footer-bottom-simple a { color: #aaa; text-transform: uppercase; font-weight: 700; font-size: 12px; letter-spacing: 0.06em; }
.footer-bottom-simple a:hover { color: var(--accent); }

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 140px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.search-overlay.active { opacity: 1; pointer-events: auto; }
.search-close { position: absolute; top: 24px; right: 24px; color: #fff; font-size: 48px; line-height: 1; }
.search-box { width: min(760px, 90vw); }
.search-box input {
  width: 100%;
  padding: 24px;
  font-family: var(--hff);
  font-size: 32px;
  text-transform: uppercase;
  border: var(--border);
  border-width: 3px;
  background: var(--bg);
  color: var(--ink);
}

/* Back to top */
#back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border);
  background: var(--accent);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .2s, transform .2s;
  z-index: 80;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#back-to-top:hover { background: var(--ink); }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 44px; }
.pagination a, .pagination span {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--border);
  font-family: var(--hff);
  font-size: 15px;
  text-transform: uppercase;
  background: var(--bg);
}
.pagination a:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard); }
.pagination .current { background: var(--accent); color: #fff; }

/* Responsive */
@media (max-width: 1100px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { display: grid; grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .header-inner { padding: 16px 0; }
  .site-name { font-size: 30px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    border-bottom: var(--border);
  }
  .nav-menu.active { display: flex; }
  .nav-item > a { padding: 14px 22px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero-main h2 { font-size: 30px; }
  .hero-side { grid-template-columns: 1fr; }
  .hero-side article { grid-template-columns: 100px 1fr; }
  .hero-side .card-thumb { width: 100px; height: 100px; }
  .card h3 { font-size: 22px; }
  .article-head h1, .category-header h1, .authors-head h1 { font-size: 34px; }
  .error-code { font-size: 100px; }
  .sidebar { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .search-box input { font-size: 22px; }
}
@media (max-width: 480px) {
  .section-title { font-size: 26px; }
  .hero-side article { grid-template-columns: 1fr; }
  .hero-side .card-thumb { width: 100%; height: auto; aspect-ratio: 16/10; }
  .author-hero { flex-direction: column; text-align: center; }
}
