/* ============================================================
   ATH Blue — Modern Automotive Blog Theme
   ============================================================ */

:root {
  --ath-blue: #2668b2;
  --ath-blue-dark: #194d84;
  --ath-blue-vivid: #3b82f6;
  --ath-blue-electric: #60a5fa;
  --ath-blue-soft: #dbeafe;
  --ath-charcoal: #0f172a;
  --ath-steel: #64748b;
  --ath-paper: #f8fafc;
  --ath-white: #ffffff;
  --ath-border: #e2e8f0;
  --ath-glow: rgba(59, 130, 246, 0.25);
  --ath-radius: 16px;
  --ath-radius-sm: 10px;
  --ath-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 6px 16px rgba(15, 23, 42, 0.04);
  --ath-shadow-lg: 0 4px 12px rgba(15, 23, 42, 0.06), 0 20px 40px rgba(15, 23, 42, 0.08);
  --ath-shadow-glow: 0 4px 16px rgba(59, 130, 246, 0.18), 0 12px 32px rgba(59, 130, 246, 0.1);
  --ath-transition: 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Barlow", "Trebuchet MS", sans-serif;
  color: var(--ath-charcoal);
  background: var(--ath-paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--ath-blue);
  transition: color var(--ath-transition);
}

a:hover {
  color: var(--ath-blue-vivid);
}

h1, h2, h3, h4 {
  font-family: "Rajdhani", "Barlow", sans-serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-top: 0;
  color: var(--ath-charcoal);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---- Layout ---- */
.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ============================================================
   TOP STRIP
   ============================================================ */
.top-strip {
  background: var(--ath-charcoal);
  color: #94a3b8;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}

.top-strip p {
  margin: 0;
}

.top-strip a {
  color: var(--ath-blue-electric);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--ath-transition);
}

.top-strip a::after {
  content: "\2192";
  font-size: 1.1em;
  transition: transform var(--ath-transition);
}

.top-strip a:hover {
  color: #fff;
}

.top-strip a:hover::after {
  transform: translateX(3px);
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 300ms ease;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ath-blue), var(--ath-blue-vivid), var(--ath-blue-electric), var(--ath-blue-vivid), var(--ath-blue));
  background-size: 200% 100%;
  animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  gap: 1.5rem;
}

.logo {
  text-decoration: none;
  color: var(--ath-white);
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.2rem;
  transition: opacity var(--ath-transition);
}

.logo:hover {
  opacity: 0.9;
  color: var(--ath-white);
}

.logo-main {
  font-family: "Rajdhani", "Barlow", sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-sub {
  font-size: 0.72rem;
  color: #64748b;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}

nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--ath-radius-sm);
  position: relative;
  transition: color var(--ath-transition), background var(--ath-transition);
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--ath-blue-electric);
  border-radius: 1px;
  transition: width var(--ath-transition), left var(--ath-transition);
}

nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

nav a:hover::after {
  width: 55%;
  left: 22.5%;
}

/* ============================================================
   MAIN
   ============================================================ */
main {
  padding: 2rem 0 3rem;
}

/* ============================================================
   HERO PANEL
   ============================================================ */
.hero-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, var(--ath-blue) 100%);
  color: #f1f5f9;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--ath-shadow-glow);
  animation: fade-in-up 500ms ease-out both;
}

.hero-panel::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--ath-blue-electric);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--ath-blue-electric);
  border-radius: 1px;
}

.hero-panel h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.hero-panel .intro {
  color: #cbd5e1;
  max-width: 58ch;
  line-height: 1.7;
}

.hero-stats {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--ath-radius);
  padding: 1.2rem 1.1rem;
  display: grid;
  gap: 0.6rem;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--ath-radius-sm);
  transition: background var(--ath-transition);
}

.hero-stat:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-stat-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.15rem;
  flex-shrink: 0;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.hero-stat-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.25;
}

.hero-stat-value {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: #94a3b8;
  letter-spacing: 0.02em;
}

/* ============================================================
   LAYOUT GRID
   ============================================================ */
.layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.5rem;
  align-items: start;
}

/* ============================================================
   POST CARDS
   ============================================================ */
.post-card {
  position: relative;
  background: var(--ath-white);
  border: 1px solid var(--ath-border);
  border-radius: var(--ath-radius);
  padding: 0;
  margin: 0 0 1.25rem;
  box-shadow: var(--ath-shadow);
  transition: transform var(--ath-transition), box-shadow var(--ath-transition);
  overflow: hidden;
  animation: fade-in-up 400ms ease-out both;
}

.post-card:nth-child(2) { animation-delay: 60ms; }
.post-card:nth-child(3) { animation-delay: 120ms; }
.post-card:nth-child(4) { animation-delay: 180ms; }
.post-card:nth-child(5) { animation-delay: 240ms; }

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ath-shadow-lg);
}

.post-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ath-blue), var(--ath-blue-vivid));
  opacity: 0;
  transition: opacity var(--ath-transition);
}

.post-card:hover::before {
  opacity: 1;
}

.post-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--ath-border);
}

.post-card-body {
  padding: 1.15rem 1.35rem 1.25rem;
}

.post-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.post-card h2 a {
  color: var(--ath-charcoal);
  text-decoration: none;
  transition: color var(--ath-transition);
}

.post-card h2 a:hover {
  color: var(--ath-blue-vivid);
}

.post-card .summary {
  color: var(--ath-steel);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 0.75rem;
}

.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ---- Meta ---- */
.meta {
  color: var(--ath-steel);
  font-size: 0.82rem;
  margin: 0 0 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #94a3b8;
  flex-shrink: 0;
}

/* ---- Pill Row ---- */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 0.3rem 0.62rem;
  text-decoration: none;
  color: var(--ath-blue-dark);
  background: var(--ath-blue-soft);
  transition: background var(--ath-transition), color var(--ath-transition), transform var(--ath-transition);
}

.pill:hover {
  background: var(--ath-blue);
  color: #fff;
  transform: translateY(-1px);
}

.pill.muted {
  text-transform: none;
  letter-spacing: 0.01em;
  font-weight: 600;
  color: var(--ath-steel);
  background: #f1f5f9;
}

.pill.muted:hover {
  background: #e2e8f0;
  color: var(--ath-charcoal);
}

/* ---- Read More ---- */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ath-blue);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color var(--ath-transition), gap var(--ath-transition);
}

.read-more::after {
  content: "\2192";
  font-size: 1.15em;
  transition: transform var(--ath-transition);
}

.read-more:hover {
  color: var(--ath-blue-vivid);
  gap: 0.6rem;
}

.read-more:hover::after {
  transform: translateX(2px);
}

/* ============================================================
   SINGLE ARTICLE
   ============================================================ */
.post-single,
.page-content {
  background: var(--ath-white);
  border: 1px solid var(--ath-border);
  border-radius: var(--ath-radius);
  padding: 2rem 2.2rem;
  margin: 0 0 1.25rem;
  box-shadow: var(--ath-shadow);
  animation: fade-in-up 400ms ease-out both;
}

.post-single h1 {
  font-size: clamp(1.65rem, 2.8vw, 2.3rem);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.article-content {
  font-size: 1.04rem;
  line-height: 1.75;
}

.article-content p {
  margin: 0 0 1.1rem;
}

.article-content h2 {
  font-size: 1.45rem;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--ath-blue-soft);
}

.article-content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.article-content ul,
.article-content ol {
  padding-left: 1.4rem;
  margin: 0 0 1rem;
}

.article-content li {
  margin-bottom: 0.35rem;
}

.article-content blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--ath-blue-vivid);
  background: #f0f7ff;
  border-radius: 0 var(--ath-radius-sm) var(--ath-radius-sm) 0;
  color: #334155;
}

.hero {
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
}

/* ---- CTA Box ---- */
.cta-box {
  margin-top: 1.75rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--ath-blue-soft);
  border-left: 4px solid var(--ath-blue-vivid);
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
  border-radius: var(--ath-radius-sm);
  position: relative;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  color: var(--ath-blue-dark);
}

.cta-box ul,
.related-block ul,
.widget ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.cta-box li {
  margin-bottom: 0.5rem;
  padding-left: 1.1rem;
  position: relative;
}

.cta-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ath-blue-vivid);
}

.cta-box a {
  font-weight: 600;
}

/* ---- Legal Note ---- */
.legal-note {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--ath-steel);
  background: #f8fafc;
  border: 1px solid var(--ath-border);
  border-radius: var(--ath-radius-sm);
  padding: 0.85rem 1rem;
  line-height: 1.6;
}

/* ---- Related Articles ---- */
.related-block {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--ath-border);
}

.related-block h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.related-block li {
  margin-bottom: 0.5rem;
  padding-left: 1.1rem;
  position: relative;
}

.related-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ath-blue-vivid);
}

.related-block a {
  font-weight: 500;
  text-decoration: none;
}

.related-block a:hover {
  text-decoration: underline;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  position: sticky;
  top: 80px;
  display: grid;
  gap: 1rem;
}

.widget {
  background: var(--ath-white);
  border: 1px solid var(--ath-border);
  border-radius: var(--ath-radius);
  padding: 1.1rem 1.15rem;
  box-shadow: var(--ath-shadow);
  transition: box-shadow var(--ath-transition);
}

.widget:hover {
  box-shadow: var(--ath-shadow-lg);
}

.widget h3 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ath-charcoal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.widget h3::before {
  content: "";
  width: 3px;
  height: 1.1em;
  background: var(--ath-blue-vivid);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ---- Search Widget ---- */
.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.search-form input {
  border: 2px solid var(--ath-border);
  border-radius: var(--ath-radius-sm);
  padding: 0.55rem 0.75rem;
  font: inherit;
  font-size: 0.92rem;
  background: var(--ath-paper);
  transition: border-color var(--ath-transition), box-shadow var(--ath-transition);
  outline: none;
}

.search-form input:focus {
  border-color: var(--ath-blue-vivid);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.search-form button {
  border: none;
  border-radius: var(--ath-radius-sm);
  background: linear-gradient(135deg, var(--ath-blue) 0%, var(--ath-blue-vivid) 100%);
  color: #fff;
  padding: 0.55rem 0.9rem;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--ath-transition), box-shadow var(--ath-transition);
}

.search-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* ---- Brand List ---- */
.widget-brands ul {
  display: grid;
  gap: 0.35rem;
}

.widget-brands li {
  list-style: none;
}

.widget-brands a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.65rem;
  border-radius: var(--ath-radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ath-charcoal);
  background: var(--ath-paper);
  border: 1px solid transparent;
  transition: all var(--ath-transition);
}

.widget-brands a:hover {
  background: var(--ath-blue-soft);
  border-color: rgba(59, 130, 246, 0.2);
  color: var(--ath-blue-dark);
  transform: translateX(3px);
}

.widget-brands .brand-arrow {
  margin-left: auto;
  color: #cbd5e1;
  font-size: 0.85em;
  transition: color var(--ath-transition), transform var(--ath-transition);
}

.widget-brands a:hover .brand-arrow {
  color: var(--ath-blue-vivid);
  transform: translateX(2px);
}

/* ---- Topic List ---- */
.widget-topics ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.widget-topics li {
  list-style: none;
}

.widget-topics a {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--ath-blue-dark);
  background: var(--ath-blue-soft);
  border: 1px solid transparent;
  transition: all var(--ath-transition);
}

.widget-topics a:hover {
  background: var(--ath-blue);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
}

/* ---- Recent Posts ---- */
.widget-fresh ul {
  display: grid;
  gap: 0.15rem;
}

.widget-fresh li {
  list-style: none;
  border-radius: var(--ath-radius-sm);
  padding: 0.5rem 0.55rem;
  transition: background var(--ath-transition);
}

.widget-fresh li:hover {
  background: var(--ath-paper);
}

.widget-fresh a {
  display: block;
  font-weight: 500;
  text-decoration: none;
  color: var(--ath-charcoal);
  font-size: 0.9rem;
  line-height: 1.4;
  transition: color var(--ath-transition);
}

.widget-fresh a:hover {
  color: var(--ath-blue-vivid);
}

.widget-fresh small {
  color: var(--ath-steel);
  font-size: 0.76rem;
}

/* ---- Shop Chips ---- */
.shop-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.widget-shop > p {
  font-size: 0.86rem;
  color: var(--ath-steel);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--ath-border);
  background: var(--ath-paper);
  padding: 0.4rem 0.8rem;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ath-charcoal);
  transition: all var(--ath-transition);
}

.chip:hover {
  background: var(--ath-blue);
  border-color: var(--ath-blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  margin-top: 2rem;
  border-top: none;
  color: #94a3b8;
  background: var(--ath-charcoal);
  padding: 1.5rem 0;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ath-blue), var(--ath-blue-vivid), var(--ath-blue-electric), var(--ath-blue-vivid), var(--ath-blue));
  background-size: 200% 100%;
  animation: gradient-shift 4s ease infinite;
}

.site-footer p {
  margin: 0;
  font-size: 0.88rem;
}

.site-footer a {
  color: var(--ath-blue-electric);
  text-decoration: none;
}

/* ============================================================
   SEARCH RESULTS
   ============================================================ */
.search-results-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-results-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--ath-border);
}

.search-results-list li:last-child {
  border-bottom: none;
}

.search-results-list a {
  font-weight: 600;
  text-decoration: none;
}

.search-results-list a:hover {
  text-decoration: underline;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--ath-steel);
}

.empty-state-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.5;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-panel {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .layout-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    top: auto;
  }

  .post-single,
  .page-content {
    padding: 1.5rem;
  }
}

@media (max-width: 760px) {
  .top-strip {
    display: none;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  nav a {
    padding: 0.35rem 0.55rem;
    font-size: 0.88rem;
  }

  main {
    padding: 1.25rem 0 2rem;
  }

  .hero-panel {
    border-radius: 14px;
    padding: 1.25rem;
  }

  .post-card,
  .post-single,
  .page-content {
    border-radius: 14px;
  }

  .post-card-body {
    padding: 1rem;
  }

  .widget {
    border-radius: 14px;
  }
}

/* ============================================================
   SCROLL BAR (Webkit)
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--ath-paper);
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
