/* ============================================
   UrbanLeaf Guides - Main Stylesheet
   Indoor Gardening & Houseplant Care
   Color: #1a3c2a (deep green) + #7bc67e (bright green) + #f5f0e8 (warm white)
   Fonts: Merriweather (body) + Playfair Display (headings)
   ============================================ */

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

/* CSS Variables */
:root {
  --primary: #1a3c2a;
  --primary-light: #2a5c3f;
  --primary-dark: #0f2a1c;
  --accent: #7bc67e;
  --accent-light: #9fd89e;
  --accent-dark: #5aa85e;
  --bg: #f5f0e8;
  --bg-alt: #ede7db;
  --bg-card: #ffffff;
  --text: #2c2c2c;
  --text-light: #555;
  --text-muted: #888;
  --border: #d4cfc7;
  --shadow: rgba(26, 60, 42, 0.08);
  --shadow-md: rgba(26, 60, 42, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Merriweather', Georgia, serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.3rem; }
p { margin-bottom: 1.2em; }

a { color: var(--accent-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  background: rgba(245, 240, 232, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(8px);
}

.site-header .container {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 12px; padding-bottom: 12px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900;
  color: var(--primary); text-decoration: none;
}
.logo:hover { color: var(--primary); }

.logo-icon {
  width: 38px; height: 38px;
  background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.2rem;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: 0.88rem; font-weight: 700;
  color: var(--text); padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition); white-space: nowrap;
}
.main-nav a:hover { background: var(--primary); color: white; }
.main-nav a.active { background: var(--primary); color: white; }

.nav-toggle {
  display: none; background: none; border: none;
  font-size: 1.5rem; color: var(--primary);
  cursor: pointer; padding: 4px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, #3d7a52 100%);
  color: white; padding: 80px 0 100px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(123, 198, 126, 0.2);
  border: 1px solid rgba(123, 198, 126, 0.4);
  color: var(--accent-light); font-size: 0.78rem; font-weight: 700;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 20px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.hero h1 { color: white; margin-bottom: 20px; font-size: clamp(2.2rem, 6vw, 3.8rem); }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 560px; margin: 0 auto 30px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-family: 'Merriweather', serif;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer; border: none;
  transition: all var(--transition); text-decoration: none;
}
.btn-primary { background: var(--accent); color: var(--primary-dark); }
.btn-primary:hover { background: var(--accent-light); color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(123,198,126,0.3); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: white; color: var(--primary); border-color: white; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

.search-bar { max-width: 480px; margin: 24px auto 0; position: relative; }
.search-bar input {
  width: 100%; padding: 14px 50px 14px 20px;
  border: none; border-radius: var(--radius-lg);
  font-family: 'Merriweather', serif; font-size: 0.95rem;
  background: rgba(255,255,255,0.15); color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  outline: none; transition: all var(--transition);
}
.search-bar input::placeholder { color: rgba(255,255,255,0.6); }
.search-bar input:focus { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.5); box-shadow: 0 0 0 3px rgba(123,198,126,0.2); }
.search-bar button {
  position: absolute; right: 4px; top: 4px; bottom: 4px;
  background: var(--accent); color: var(--primary-dark);
  border: none; border-radius: calc(var(--radius-lg) - 2px);
  padding: 0 18px; cursor: pointer; font-weight: 700; font-size: 0.9rem;
  transition: background var(--transition);
}
.search-bar button:hover { background: var(--accent-light); }

/* Sections */
.section { padding: 70px 0; }
.section-sm { padding: 50px 0; }
.section-alt { background: var(--bg-alt); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { margin-bottom: 12px; }
.section-title p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* Article Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.article-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 2px 12px var(--shadow);
  transition: all var(--transition);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px var(--shadow-md); }

.article-card-img {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--primary-light), #4a8a5e, var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 3.5rem;
  position: relative; overflow: hidden;
}
.article-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,60,42,0.3) 0%, transparent 60%);
}

.article-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.article-card-category {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--accent-dark);
  background: rgba(123,198,126,0.12);
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 10px; width: fit-content;
}
.article-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--primary); }
.article-card p { font-size: 0.88rem; color: var(--text-light); flex: 1; margin-bottom: 16px; }
.article-card-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.78rem; color: var(--text-muted);
  border-top: 1px solid var(--border); padding-top: 14px;
}
.article-card-meta span { display: flex; align-items: center; gap: 4px; }

/* Featured Card */
.article-card-featured { grid-column: span 2; flex-direction: row; }
.article-card-featured .article-card-img { width: 45%; height: auto; min-height: 280px; }
.article-card-featured .article-card-body { padding: 32px; }
.article-card-featured h3 { font-size: 1.5rem; }

/* Category Pills */
.category-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.category-pill {
  display: inline-block; padding: 8px 20px;
  border-radius: 25px; font-size: 0.85rem; font-weight: 700;
  border: 2px solid var(--border); color: var(--text);
  transition: all var(--transition); cursor: pointer; background: var(--bg-card);
}
.category-pill:hover,.category-pill.active { background: var(--primary); color: white; border-color: var(--primary); }

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 70px 0; color: white; text-align: center;
}
.newsletter h2 { color: white; margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 28px; }
.newsletter-form {
  display: flex; gap: 10px; max-width: 460px;
  margin: 0 auto; flex-wrap: wrap; justify-content: center;
}
.newsletter-form input {
  flex: 1; min-width: 240px; padding: 13px 18px;
  border: none; border-radius: var(--radius);
  font-family: 'Merriweather', serif; font-size: 0.9rem; outline: none;
}
.newsletter-form button {
  background: var(--accent); color: var(--primary-dark);
  border: none; padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Merriweather', serif; font-weight: 700;
  cursor: pointer; transition: all var(--transition);
}
.newsletter-form button:hover { background: var(--accent-light); transform: translateY(-2px); }

/* Product Cards */
.product-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; margin: 24px 0;
}
.product-card-header { display: flex; gap: 16px; align-items: flex-start; }
.product-card-img {
  width: 100px; height: 100px;
  background: var(--bg-alt); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 2.2rem; flex-shrink: 0;
}
.product-card-info { flex: 1; }
.product-card-badge {
  display: inline-block; background: #e8f5e9; color: #2e7d32;
  font-size: 0.7rem; font-weight: 700; padding: 2px 8px;
  border-radius: 4px; margin-bottom: 6px;
}
.product-card h4 { font-size: 1rem; margin-bottom: 4px; color: var(--primary); }
.product-card-price { font-weight: 700; color: #b12704; font-size: 1.1rem; margin-bottom: 6px; }
.product-card-rating { font-size: 0.82rem; color: var(--text-light); margin-bottom: 10px; }
.product-card-rating .stars { color: #f59e0b; }
a.amazon-btn {
  display: inline-block;
  background: linear-gradient(to bottom,#f7dfa5,#f0c14b);
  color: #111; padding: 8px 20px;
  border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 700;
  border: 1px solid #a88734; text-decoration: none; transition: all var(--transition);
}
a.amazon-btn:hover { background: linear-gradient(to bottom,#f5d888,#eeb233); color: #111; }

/* Ad Slots */
.ad-slot {
  background: var(--bg-alt); border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.8rem; margin: 24px 0;
}
.ad-slot-728 { width: 100%; height: 90px; }
.ad-slot-300 { width: 300px; height: 250px; float: right; margin: 0 0 20px 20px; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--border); }

/* Article Page */
.article-header { padding: 50px 0 40px; text-align: center; }
.article-header .category {
  display: inline-block; background: rgba(123,198,126,0.15);
  color: var(--accent-dark); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 16px;
}
.article-header h1 { margin-bottom: 16px; max-width: 800px; margin-left: auto; margin-right: auto; }
.article-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; font-size: 0.82rem; color: var(--text-muted); flex-wrap: wrap;
}
.article-meta span { display: flex; align-items: center; gap: 5px; }

.article-cover {
  width: 100%; max-width: 900px; margin: 0 auto 40px;
  height: 450px;
  background: linear-gradient(135deg, var(--primary-light), #4a8a5e, var(--accent-dark));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 5rem;
  position: relative; overflow: hidden;
}
.article-cover::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 40%; background: linear-gradient(to top, rgba(26,60,42,0.2), transparent);
}

.article-body { font-size: 1.05rem; line-height: 1.9; }
.article-body h2 { margin: 40px 0 16px; padding-top: 10px; border-top: 2px solid var(--bg-alt); font-size: 1.7rem; }
.article-body h3 { margin: 30px 0 12px; font-size: 1.3rem; }
.article-body p { margin-bottom: 1.3em; }
.article-body ul,.article-body ol { margin: 0 0 1.3em 1.5em; }
.article-body li { margin-bottom: 0.5em; }
.article-body strong { color: var(--primary); }
.article-body blockquote {
  border-left: 4px solid var(--accent);
  background: rgba(123,198,126,0.08);
  padding: 16px 20px; margin: 24px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--text-light);
}
.article-body a { color: var(--accent-dark); text-decoration: underline; text-decoration-color: rgba(90,168,94,0.3); text-underline-offset: 3px; }
.article-body a:hover { color: var(--primary); }

/* Table of Contents */
.toc { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 28px 32px; margin: 30px 0; border-left: 4px solid var(--accent); }
.toc h4 { margin-bottom: 14px; font-size: 1.1rem; }
.toc ol { margin: 0; padding-left: 1.2em; }
.toc li { margin-bottom: 8px; font-size: 0.92rem; }
.toc li a { color: var(--text); transition: color var(--transition); }
.toc li a:hover { color: var(--primary); }

/* Related Articles */
.related-articles { margin-top: 60px; padding-top: 40px; border-top: 2px solid var(--border); }
.related-articles h3 { margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.related-card {
  display: flex; gap: 14px;
  background: var(--bg-alt); border-radius: var(--radius);
  padding: 16px; text-decoration: none; color: inherit;
  transition: all var(--transition); align-items: center;
}
.related-card:hover { background: var(--bg-card); box-shadow: 0 4px 14px var(--shadow); transform: translateX(4px); }
.related-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem; flex-shrink: 0;
}
.related-card h4 { font-size: 0.92rem; color: var(--primary); margin-bottom: 4px; font-family: 'Playfair Display', serif; }
.related-card p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }

/* Sidebar */
.page-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.sidebar { position: sticky; top: 80px; }
.sidebar-widget {
  background: var(--bg-card); border-radius: var(--radius-lg);
  padding: 24px; margin-bottom: 24px; box-shadow: 0 2px 12px var(--shadow);
}
.sidebar-widget h4 { margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--bg-alt); }
.sidebar-widget ul { list-style: none; padding: 0; }
.sidebar-widget ul li { margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid var(--bg-alt); }
.sidebar-widget ul li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-widget ul li a { font-size: 0.9rem; color: var(--text); display: flex; align-items: center; gap: 8px; }
.sidebar-widget ul li a:hover { color: var(--primary); }
.sidebar-widget ul li a::before { content: '🌿'; font-size: 0.8rem; }

/* Footer */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { color: white; margin-bottom: 12px; font-size: 1.4rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 { color: white; margin-bottom: 16px; font-size: 1rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-bottom-links a:hover { color: white; }

/* Legal Pages */
.legal-content { padding: 60px 0; max-width: 800px; margin: 0 auto; }
.legal-content h1 { margin-bottom: 30px; font-size: 2.4rem; }
.legal-content h2 { margin: 32px 0 14px; font-size: 1.5rem; }
.legal-content p { margin-bottom: 1.1em; color: var(--text-light); }

/* Table */
table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.92rem; }
table th { background: var(--primary); color: white; padding: 12px 16px; text-align: left; font-family: 'Playfair Display', serif; }
table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
table tr:nth-child(even) { background: var(--bg-alt); }
.stars { color: #f59e0b; letter-spacing: 1px; }

/* Amazon Section */
.amazon-section {
  background: linear-gradient(135deg,#fff8e7,#fff3cd);
  border: 1px solid #f0e0a0;
  border-radius: var(--radius-lg);
  padding: 28px; margin: 30px 0;
}
.amazon-section h3 { color: #8b6914; margin-bottom: 8px; font-size: 1.3rem; }
.amazon-section > p { color: #7a6010; margin-bottom: 20px; }

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg,var(--primary),var(--primary-light));
  color: white; border-radius: var(--radius-lg);
  padding: 40px; text-align: center; margin: 40px 0;
}
.cta-box h3 { color: white; margin-bottom: 10px; }
.cta-box p { color: rgba(255,255,255,0.85); margin-bottom: 20px; }

/* Affiliate Disclosure */
.affiliate-disclosure {
  background: #fff8e1; border: 1px solid #f0d060;
  border-radius: var(--radius); padding: 16px;
  margin: 20px 0; font-size: 0.85rem; color: #6b5000;
}
.affiliate-disclosure strong { color: #8b6914; }

/* About Page */
.about-hero { text-align: center; padding: 60px 0 40px; }
.about-hero .logo { justify-content: center; margin-bottom: 20px; font-size: 2rem; }
.about-hero p { max-width: 600px; margin: 0 auto; font-size: 1.1rem; color: var(--text-light); }

/* Contact Form */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 0.9rem; color: var(--primary); }
.form-group input,.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-family: 'Merriweather', serif; font-size: 0.95rem;
  outline: none; transition: border-color var(--transition); background: var(--bg-card);
}
.form-group input:focus,.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { min-height: 140px; resize: vertical; }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 16px 0; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--bg-alt); }
.checklist li::before { content: '✅'; flex-shrink: 0; font-size: 1rem; }

/* Utility */
.text-center { text-align: center; }
.text-accent { color: var(--accent-dark); }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 24px; }
.clearfix::after { content: ''; display: table; clear: both; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { animation: fadeInUp 0.6s ease forwards; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Responsive */
@media (max-width: 1024px) {
  .page-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .article-card-featured { flex-direction: column; grid-column: span 1; }
  .article-card-featured .article-card-img { width: 100%; height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: 2px solid var(--border);
    padding: 12px; box-shadow: 0 8px 20px var(--shadow-md); z-index: 99;
  }
  .main-nav.open a { padding: 10px 14px; }
  .nav-toggle { display: block; }
  .articles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 70px; }
  .article-cover { height: 280px; }
  .ad-slot-300 { float: none; margin: 24px auto; }
}
@media print {
  .site-header,.site-footer,.newsletter,.ad-slot,.sidebar { display: none; }
  body { font-size: 12pt; background: white; color: black; }
}
