﻿/* Fika Looks - theme.css */
/* Editorial fashion blog | Playfair Display + DM Sans | Forest green + warm gold */

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

:root {
  --primary: #2a5a3a;
  --primary-light: #3d7a50;
  --primary-dark: #1c3d28;
  --accent: #c4944a;
  --accent-light: #d4aa6a;
  --text: #1e1e1e;
  --text-light: #6a6a6a;
  --text-muted: #999;
  --bg: #faf8f4;
  --bg-alt: #f2ede4;
  --bg-warm: #f7f3ec;
  --card-bg: #ffffff;
  --border: #e5ddd0;
  --border-light: #efe9df;
  --footer-bg: #1a1a18;
  --glass: rgba(255,255,255,0.6);
  --glass-border: rgba(255,255,255,0.3);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.07);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* ========== NAVIGATION ========== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,244,0.85);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid var(--border-light);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}
.nav-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}
.nav-brand em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.nav-items { 
  display: flex; 
  gap: 1.5rem; 
  list-style: none;
  margin-right: max(2vw, 20px);
}
.nav-items a { 
  font-size: 1.05rem; 
  font-weight: 500; 
  color: var(--text-color); 
  opacity: 0.7; 
  text-decoration: none; 
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); 
  position: relative; 
  padding: 0.5rem 0.8rem;
}
.nav-items a::after { 
  content: ''; 
  position: absolute; 
  width: 0; 
  height: 1px; 
  bottom: -4px; 
  left: 0; 
  background-color: var(--secondary-color); 
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); 
}
.nav-items a:hover, .nav-items a.active { opacity: 1; }
.nav-items a:hover::after, .nav-items a.active::after { width: 100%; }
.nav-items a:hover, .nav-items a.active {
  color: var(--primary);
  background: rgba(42,90,58,0.07);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(250,248,244,0.5) 0%, rgba(250,248,244,0.3) 40%, rgba(250,248,244,0.1) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 600px; }
.hero-tag {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(42,90,58,0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text);
}
.hero h1 span {
  color: var(--primary);
}
.hero h1 .accent-italic {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
/* Hero small variant for sub-pages */
.hero.hero-small {
  min-height: 40vh;
}
.hero.hero-small h1 {
  font-size: 2.4rem;
}
.hero.hero-small .hero-sub {
  font-size: 1rem;
}


/* ========== BUTTONS ========== */
.btn { 
  display: inline-flex; 
  align-items: center; 
  padding: 0.75rem 1.5rem; 
  background: var(--primary-color); 
  color: #fff; 
  text-decoration: none; 
  border-radius: 9999px; 
  font-weight: 600; 
  font-size: 0.85rem; 
  letter-spacing: 0.05em; 
  text-transform: uppercase; 
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); 
  box-shadow: 0 4px 15px rgba(45, 87, 63, 0.2); 
  border: 1px solid transparent; 
}
.btn:hover { 
  background: #fff; 
  color: var(--primary-color); 
  transform: translateY(-2px); 
  box-shadow: 0 8px 25px rgba(45, 87, 63, 0.3); 
  border-color: var(--primary-color); 
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(42,90,58,0.25);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,90,58,0.3);
}
.btn-outline {
  border: 2px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-glass {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

/* ========== SECTIONS ========== */
section { padding: 5rem 0; }
.section-header { 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  padding: 1.5rem 0; 
  background: rgba(250, 248, 244, 0.75); 
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px); 
  border-bottom: 1px solid rgba(0, 0, 0, 0.04); 
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); 
}
.section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(42,90,58,0.08);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.section-label {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
section h2, .section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.section-sub, .section-header p {
  color: var(--text-light);
  font-size: 1rem;
}

/* ========== CARDS ========== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card { 
  background: #fff; 
  border-radius: 8px; 
  overflow: hidden; 
  position: relative; 
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); 
  display: flex; 
  flex-direction: column; 
  background: var(--bg-color); 
  height: 100%; 
  text-decoration: none; 
  color: inherit; 
  transform: translateY(0); 
  box-shadow: 0 4px 6px rgba(0,0,0,0.02); 
}
.card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 20px 40px rgba(0,0,0,0.06); 
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.card:hover img { transform: scale(1.04); }
.card-body { padding: 1.25rem; }
.card-body h3 {
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}
.card-body p { color: var(--text-light); font-size: 0.86rem; line-height: 1.6; }
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.card-tag {
  background: var(--bg-alt);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ========== GLASS CARDS ========== */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: transform var(--spring), box-shadow var(--transition);
}
.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* ========== CATEGORIES ========== */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.cat-card {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all var(--spring);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--spring);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card:hover { border-color: var(--primary); }
.cat-card .icon, .cat-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.cat-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.cat-card p { color: var(--text-light); font-size: 0.82rem; }
.card-arrow {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.1rem;
  color: var(--primary);
  opacity: 0;
  transition: all var(--spring);
}
.cat-card:hover .card-arrow { opacity: 1; transform: translateX(5px); }

/* ========== FILTER TABS (articles page) ========== */
.filter-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-tab {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--card-bg);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.filter-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ========== PAGE HEADER ========== */
.page-header {
  background: var(--bg-alt);
  padding: 6rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  margin-top: 68px;
}
.page-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.page-header p { color: var(--text-light); font-size: 1.05rem; }

/* ========== LATEST SECTION ========== */
.latest { background: var(--bg-alt); }

/* ========== ARTICLE PAGE ========== */
.article-hero { position: relative; margin-top: 68px; }
.article-hero img { width: 100%; height: 420px; object-fit: cover; }
.article-header {
  padding: 2.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.article-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.article-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--text-light);
  font-size: 0.88rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ========== ARTICLE CONTENT ========== */
.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
.article-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  margin: 2.5rem 0 0.75rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.article-content h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem;
  font-weight: 600;
}
.article-content p { margin-bottom: 1.25rem; color: #444; line-height: 1.8; }
.article-content ul, .article-content ol { margin: 1rem 0 1.25rem 1.5rem; color: #444; }
.article-content li { margin-bottom: 0.5rem; line-height: 1.7; }
.article-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--bg-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-light);
}
.article-content img { border-radius: var(--radius-sm); margin: 1.5rem 0; }
.article-content a { color: var(--primary); border-bottom: 1px solid rgba(42,90,58,0.2); }
.article-content a:hover { border-bottom-color: var(--primary); }
.article-content pre {
  background: #1e1e1e;
  color: #d4d4d4;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin: 1.25rem 0;
  font-size: 0.88rem;
  line-height: 1.6;
}
.article-content code {
  background: var(--bg-alt);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.88em;
}
.article-content pre code { background: none; padding: 0; }

/* ========== RELATED ARTICLES ========== */
.related-articles {
  background: var(--bg-alt);
  padding: 3.5rem 0;
}
.related-articles h3 {
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.related-card {
  display: block;
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: transform var(--spring), box-shadow var(--transition);
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.related-card img {
  width: auto;
  max-width: 100%;
  height: 150px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
  border-radius: 6px;
}
.related-card h4 {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

/* ========== COMMENTS ========== */
.comments-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border-light);
}
.comments-section h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.comment {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}
.comment-author { font-weight: 600; font-size: 0.92rem; }
.comment-date { color: var(--text-muted); font-size: 0.78rem; margin-left: 0.5rem; }
.comment-text { margin-top: 0.5rem; font-size: 0.92rem; color: #444; line-height: 1.6; }
.comment-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  resize: vertical;
  min-height: 100px;
  transition: border-color var(--transition);
}
.comment-form textarea:focus { border-color: var(--primary); outline: none; }
.comment-form input {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  margin-bottom: 0.75rem;
  transition: border-color var(--transition);
}
.comment-form input:focus { border-color: var(--primary); outline: none; }
.comment-form button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: background var(--transition);
}
.comment-form button:hover { background: var(--primary-dark); }

/* ========== ABOUT PAGE ========== */
.about-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.about-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  font-weight: 700;
}
.about-content p { margin-bottom: 1.25rem; color: #444; line-height: 1.8; }
.about-philosophy {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2rem 0;
}
.about-philosophy h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* ========== CONTACT PAGE ========== */
.contact-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.contact-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.contact-form label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.92rem;
  margin-bottom: 1rem;
  transition: border-color var(--transition);
  background: var(--card-bg);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: none;
}
.contact-form textarea { resize: vertical; min-height: 140px; }

/* ========== FOOTER ========== */
footer {
  background: var(--footer-bg);
  color: #b0b0b0;
  padding: 4rem 0 1.5rem;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.footer-brand em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
footer p { font-size: 0.88rem; line-height: 1.7; }
footer h4 {
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.4rem; }
footer ul a {
  color: #999;
  font-size: 0.85rem;
  transition: color var(--transition);
}
footer ul a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: #666;
  text-align: center;
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s var(--spring);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== STYLE GUIDE ========== */
.style-guide-content { max-width: 720px; margin: 0 auto; padding: 2.5rem 1.5rem; }

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-items {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(250,248,244,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
  }
  .nav-items.active { display: flex; }
  .nav-items a { padding: 0.75rem 1.5rem; border-radius: 0; }
  .nav-hamburger { display: flex; }
  nav .container { position: relative; }

  .hero { min-height: 75vh; }
  .hero.hero-small { min-height: 35vh; }
  .hero.hero-small h1 { font-size: 1.6rem; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.95rem; }

  .page-header { padding: 5rem 0 2rem; }
  .page-header h1 { font-size: 1.7rem; }

  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }
  .filter-tabs { gap: 6px; }
  .filter-tab { padding: 6px 14px; font-size: 0.8rem; }

  .article-hero img { height: 260px; }
  .article-header h1 { font-size: 1.6rem; }
  .article-content { padding: 1.5rem 1rem; }
  .article-content h2 { font-size: 1.3rem; }
  .comments-section { padding: 1.5rem 1rem; }

  .about-content, .contact-content { padding: 2rem 1rem; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.7rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 769px) {
  .nav-hamburger { display: none; }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ========== PRINT ========== */
@media print {
  nav, footer, .hero-bg, .filter-tabs, .comments-section { display: none; }
  .article-content { max-width: 100%; padding: 0; }
  body { background: #fff; color: #000; }
}



