/*
Theme Name:  Nybro AutoClean
Theme URI:   https://nybro-autoclean.com/
Author:      Nybro AutoClean
Author URI:  https://nybro-autoclean.com/
Description: A semantic, SEO-optimized WordPress theme for auto repair & maintenance blogs. Built with Schema.org microdata, structured content silos, and AdSense-ready ad slots.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nybro-autoclean
Tags: blog, automotive, seo, adsense, schema, two-columns, right-sidebar, dark
*/

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

:root {
  --black:   #0a0a0a;
  --dark:    #111214;
  --card:    #181a1e;
  --border:  #252830;
  --muted:   #6b7280;
  --text:    #d1d5db;
  --light:   #f3f4f6;
  --accent:  #f5a623;
  --accent2: #e63946;
  --green:   #22c55e;

  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,.5);
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  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; }

/* ── UTILITY ──────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.tag {
  display: inline-block;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-cond);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}
.tag.red   { background: var(--accent2); color: #fff; }
.tag.green { background: var(--green);   color: #000; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ── SKIP LINK ────────────────────────────── */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--accent); color: var(--black);
  padding: 8px 16px; font-weight: 700;
  z-index: 9999; border-radius: 0 0 6px 0;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── TOP BAR ──────────────────────────────── */
.topbar {
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-cond);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
  padding: 6px 0;
}

/* ── HEADER ───────────────────────────────── */
#masthead {
  background: var(--dark);
  border-bottom: 2px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 64px; gap: 32px;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: .04em;
  color: var(--light);
  display: flex; align-items: center; gap: 10px;
}
.site-logo .accent { color: var(--accent); }
.logo-icon {
  width: 36px; height: 36px;
  background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.site-description {
  font-family: var(--font-cond);
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── PRIMARY NAV ──────────────────────────── */
#primary-navigation ul { display: flex; gap: 4px; list-style: none; }
#primary-navigation a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}
#primary-navigation a:hover,
#primary-navigation .current-menu-item > a,
#primary-navigation .current_page_item > a {
  color: var(--accent);
  background: rgba(245,166,35,.08);
}
#primary-navigation ul ul {
  display: none; position: absolute;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px 0; min-width: 180px;
  top: 100%; left: 0; flex-direction: column; gap: 0;
}
#primary-navigation li { position: relative; }
#primary-navigation li:hover > ul { display: flex; }
#primary-navigation ul ul a { padding: 10px 16px; border-radius: 0; }

/* Search form in nav */
.nav-search { display: flex; align-items: center; }
.nav-search .search-field {
  background: var(--border);
  border: 1px solid #2e3138;
  color: var(--light);
  font-family: var(--font-body);
  font-size: .85rem;
  padding: 7px 14px;
  border-radius: 20px;
  width: 180px; outline: none;
  transition: border .2s, width .3s;
}
.nav-search .search-field:focus { border-color: var(--accent); width: 220px; }
.nav-search .search-field::placeholder { color: var(--muted); }
.nav-search .search-submit { display: none; }

/* ── BREADCRUMB BAR ───────────────────────── */
.breadcrumb-bar {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb-bar nav { display: flex; align-items: center; gap: 6px; }
.breadcrumb-bar ol,
.breadcrumb-bar .breadcrumb {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
  font-family: var(--font-cond);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .04em; color: var(--muted);
}
.breadcrumb-bar li + li::before,
.breadcrumb-bar span.sep { content: '›'; color: var(--border); margin: 0 4px; }
.breadcrumb-bar .current,
.breadcrumb-bar [aria-current="page"] { color: var(--accent); }

/* ── AD BANNER ────────────────────────────── */
.ad-banner {
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-family: var(--font-cond);
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  overflow: hidden;
}
.ad-leaderboard { height: 90px; margin: 24px 0; }
.ad-rectangle   { height: 250px; margin-bottom: 28px; }
.ad-inline      { height: 250px; margin: 32px 0; }

/* ── LAYOUT ───────────────────────────────── */
.site-main {
  padding: 60px 0 80px;
}
.content-area-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}
.content-area-wrap.no-sidebar { grid-template-columns: 1fr; }

/* ── SECTION HEADINGS ─────────────────────── */
.section-heading {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
}
.section-heading h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--light);
  letter-spacing: .04em;
  white-space: nowrap;
}
.section-heading-line { flex: 1; height: 1px; background: var(--border); }

/* ── HERO (front page) ────────────────────── */
.hero {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 72px 0 64px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 60px,
    rgba(245,166,35,.025) 60px, rgba(245,166,35,.025) 61px
  );
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center; gap: 48px;
}
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero-eyebrow span {
  font-family: var(--font-cond); font-size: .85rem;
  font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .95; color: var(--light);
  letter-spacing: .02em; margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--accent); display: block; }
.hero-desc { font-size: 1.05rem; color: var(--muted); max-width: 500px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  font-family: var(--font-cond); font-weight: 700;
  font-size: .95rem; letter-spacing: .07em;
  text-transform: uppercase; padding: 12px 28px;
  border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary { background: var(--accent); color: var(--black); }
.btn-primary:hover { background: #ffc14d; transform: translateY(-1px); }
.btn-outline { border-color: var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.hero-stats {
  display: flex; flex-direction: column; gap: 16px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 36px;
}
.stat { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 2.4rem; color: var(--accent); line-height: 1; }
.stat-label { font-family: var(--font-cond); font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.stat-divider { height: 1px; background: var(--border); margin: 4px 0; }

/* ── TOPIC GRID ───────────────────────────── */
.topic-grid-wrap { margin-bottom: 48px; }
.topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.topic-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 16px;
  text-align: center; transition: border-color .2s, background .2s;
  display: block;
}
.topic-card:hover { border-color: var(--accent); background: rgba(245,166,35,.04); }
.topic-icon { font-size: 2rem; margin-bottom: 10px; }
.topic-name {
  font-family: var(--font-cond); font-weight: 700;
  font-size: .95rem; letter-spacing: .05em;
  text-transform: uppercase; color: var(--light); margin-bottom: 4px;
}
.topic-count { font-family: var(--font-cond); font-size: .78rem; color: var(--muted); }

/* ── FEATURED POST ────────────────────────── */
.featured-post-wrap { margin-bottom: 32px; }
.featured-post {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  transition: border-color .2s;
}
.featured-post:hover { border-color: var(--accent); }
.featured-img {
  background: linear-gradient(135deg, #1a1d22 0%, #2a2d35 100%);
  min-height: 280px; position: relative; overflow: hidden;
}
.featured-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-img .no-thumb {
  display: flex; align-items: center; justify-content: center;
  height: 100%; font-size: 5rem; opacity: .15;
}
.featured-body {
  padding: 32px;
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
.featured-body h2 {
  font-family: var(--font-display);
  font-size: 1.8rem; color: var(--light);
  line-height: 1.1; letter-spacing: .03em;
}
.featured-body h2 a:hover { color: var(--accent); }
.featured-body .entry-excerpt { font-size: .95rem; color: var(--muted); line-height: 1.7; }

/* ── POST META ────────────────────────────── */
.post-meta {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-cond); font-size: .8rem;
  font-weight: 600; letter-spacing: .04em; color: var(--muted);
}
.read-more {
  font-family: var(--font-cond); font-weight: 700;
  font-size: .88rem; letter-spacing: .07em;
  text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 6px; transition: gap .2s;
}
.read-more:hover { gap: 10px; }

/* ── POST GRID ────────────────────────────── */
.post-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }

article.post-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
article.post-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.card-thumb { height: 160px; overflow: hidden; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.card-thumb .no-thumb {
  height: 100%; background: linear-gradient(135deg, #1a1d22, #222530);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; opacity: .7;
}
.card-body {
  padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.card-body .entry-title {
  font-family: var(--font-cond); font-weight: 700;
  font-size: 1.1rem; color: var(--light);
  line-height: 1.3; letter-spacing: .02em;
}
.card-body .entry-title a:hover { color: var(--accent); }
.card-body .entry-excerpt { font-size: .88rem; color: var(--muted); line-height: 1.6; flex: 1; }

/* ── SINGLE POST ──────────────────────────── */
.single-post-hero {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.single-post-hero .post-categories { margin-bottom: 16px; }
.single-post-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--light); line-height: 1.05;
  letter-spacing: .03em; margin-bottom: 20px;
}
.entry-thumbnail { margin-bottom: 32px; border-radius: var(--radius); overflow: hidden; }
.entry-thumbnail img { width: 100%; max-height: 480px; object-fit: cover; }

.entry-content { max-width: 760px; }
.entry-content h2 {
  font-family: var(--font-display); font-size: 1.8rem;
  color: var(--light); letter-spacing: .03em;
  margin: 40px 0 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}
.entry-content h3 {
  font-family: var(--font-cond); font-weight: 700;
  font-size: 1.25rem; color: var(--light);
  margin: 28px 0 12px;
}
.entry-content p { margin-bottom: 20px; line-height: 1.8; }
.entry-content ul, .entry-content ol {
  margin: 0 0 20px 24px; line-height: 1.8;
}
.entry-content li { margin-bottom: 8px; }
.entry-content strong { color: var(--light); font-weight: 700; }
.entry-content a { color: var(--accent); text-decoration: underline; }
.entry-content blockquote {
  border-left: 4px solid var(--accent);
  background: var(--card); padding: 20px 24px;
  margin: 24px 0; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem; color: var(--light);
}
.entry-content img { border-radius: var(--radius); margin: 24px 0; }
.entry-content .wp-block-table table {
  width: 100%; border-collapse: collapse; margin-bottom: 24px;
}
.entry-content .wp-block-table td,
.entry-content .wp-block-table th {
  border: 1px solid var(--border); padding: 12px 16px;
  font-size: .9rem;
}
.entry-content .wp-block-table th { background: var(--card); color: var(--light); font-weight: 700; }

/* Post navigation */
.post-navigation {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border);
}
.nav-previous, .nav-next {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  transition: border-color .2s;
}
.nav-previous:hover, .nav-next:hover { border-color: var(--accent); }
.nav-next { text-align: right; }
.nav-label {
  font-family: var(--font-cond); font-size: .78rem;
  font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 6px;
}
.nav-post-title {
  font-family: var(--font-cond); font-weight: 700;
  font-size: 1rem; color: var(--light); line-height: 1.3;
}
.nav-post-title:hover { color: var(--accent); }

/* ── FAQ SECTION ─────────────────────────── */
.faq-section {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; margin-bottom: 48px;
}
.faq-section > h2 {
  font-family: var(--font-display); font-size: 1.8rem;
  color: var(--light); letter-spacing: .04em; margin-bottom: 24px;
}
details.faq-item {
  border-bottom: 1px solid var(--border); padding: 16px 0;
}
details.faq-item:last-child { border-bottom: none; }
details.faq-item summary {
  font-family: var(--font-cond); font-weight: 700;
  font-size: 1.05rem; letter-spacing: .02em; color: var(--light);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+'; color: var(--accent);
  font-size: 1.4rem; font-weight: 400; transition: transform .2s;
}
details[open] summary::after { transform: rotate(45deg); }
.faq-answer { font-size: .93rem; color: var(--muted); line-height: 1.7; padding-top: 12px; }

/* ── PAGINATION ───────────────────────────── */
.pagination {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 40px; flex-wrap: wrap;
}
.page-numbers {
  font-family: var(--font-cond); font-weight: 700;
  font-size: .9rem; letter-spacing: .05em;
  background: var(--card); border: 1px solid var(--border);
  color: var(--text); padding: 8px 16px; border-radius: var(--radius);
  transition: all .2s;
}
.page-numbers:hover, .page-numbers.current {
  background: var(--accent); border-color: var(--accent); color: var(--black);
}

/* ── SIDEBAR ─────────────────────────────── */
#secondary { display: flex; flex-direction: column; gap: 28px; }
.widget {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.widget-title {
  background: var(--border); padding: 12px 20px;
  font-family: var(--font-cond); font-weight: 700;
  font-size: .9rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--light);
  border-bottom: 1px solid var(--border);
}
.widget-content { padding: 16px 20px; }

/* Categories widget */
.widget_categories ul, .widget_archive ul, .widget_pages ul,
.widget_recent_entries ul, .widget_nav_menu ul {
  list-style: none;
}
.widget_categories li, .widget_recent_entries li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-family: var(--font-cond); font-weight: 600;
  font-size: .9rem; color: var(--text);
}
.widget_categories li:last-child,
.widget_recent_entries li:last-child { border-bottom: none; }
.widget_categories a:hover,
.widget_recent_entries a:hover { color: var(--accent); }
.widget_categories .post-count {
  background: var(--border); color: var(--muted);
  font-size: .75rem; padding: 2px 8px; border-radius: 20px;
}

/* Newsletter widget */
.widget-newsletter {
  background: linear-gradient(135deg, var(--card), #1e1f25);
  border-color: var(--accent);
}
.widget-newsletter .widget-title { background: var(--accent); color: var(--black); }
.newsletter-text { font-size: .88rem; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input[type="email"] {
  background: var(--border); border: 1px solid #2e3138;
  color: var(--light); font-family: var(--font-body); font-size: .85rem;
  padding: 10px 14px; border-radius: var(--radius); outline: none;
  transition: border .2s; width: 100%;
}
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form button {
  background: var(--accent); color: var(--black); border: none;
  font-family: var(--font-cond); font-weight: 700;
  font-size: .9rem; letter-spacing: .07em;
  text-transform: uppercase; padding: 10px;
  border-radius: var(--radius); cursor: pointer; transition: background .2s;
  width: 100%;
}
.newsletter-form button:hover { background: #ffc14d; }

/* ── FOOTER ──────────────────────────────── */
#colophon {
  background: var(--dark); border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand-desc { font-size: .88rem; color: var(--muted); margin-top: 14px; max-width: 280px; line-height: 1.7; }
.footer-col-title {
  font-family: var(--font-cond); font-weight: 700;
  font-size: .9rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--light); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .88rem; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-family: var(--font-cond); font-size: .82rem; color: var(--muted); }
.footer-bottom a { color: var(--accent); }
.footer-legal { display: flex; gap: 20px; list-style: none; font-family: var(--font-cond); font-size: .82rem; }
.footer-legal a { color: var(--muted); transition: color .2s; }
.footer-legal a:hover { color: var(--accent); }

/* ── COMMENTS ─────────────────────────────── */
#comments { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
#comments h2 {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--light); letter-spacing: .04em; margin-bottom: 24px;
}
.comment-list { list-style: none; }
.comment { padding: 20px 0; border-bottom: 1px solid var(--border); }
.comment-author .fn { font-family: var(--font-cond); font-weight: 700; color: var(--light); }
.comment-metadata { font-size: .8rem; color: var(--muted); margin-bottom: 10px; }
.comment-content p { font-size: .93rem; color: var(--text); }
.comment-form input, .comment-form textarea {
  background: var(--card); border: 1px solid var(--border);
  color: var(--light); font-family: var(--font-body); font-size: .9rem;
  padding: 10px 14px; border-radius: var(--radius); outline: none;
  width: 100%; transition: border .2s; margin-bottom: 16px;
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--accent); }
.comment-form textarea { min-height: 120px; resize: vertical; }
.comment-form input[type="submit"] {
  background: var(--accent); color: var(--black); border: none;
  font-family: var(--font-cond); font-weight: 700;
  font-size: .95rem; letter-spacing: .07em;
  text-transform: uppercase; padding: 12px 28px;
  cursor: pointer; transition: background .2s; width: auto;
}
.comment-form input[type="submit"]:hover { background: #ffc14d; }

/* ── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeUp .6s ease both; }
.hero-stats   { animation: fadeUp .6s .15s ease both; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .content-area-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topic-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; justify-content: space-around; }
  .stat-divider { width: 1px; height: auto; margin: 0 4px; }
  .featured-post { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  #primary-navigation { display: none; }
  .nav-search { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .post-navigation { grid-template-columns: 1fr; }
  .nav-next { text-align: left; }
}
