/* ============================================
   THE BLACK DUGOUT -- Main Stylesheet
   Dark, bold, editorial. Sports magazine meets blog.
   Mobile-first responsive design.
   ============================================ */

/* --- Custom Properties --- */
:root {
  --bg-primary: #0a0a0a;
  --bg-card: #141414;
  --gold: #d4a843;
  --gold-dim: rgba(212, 168, 67, 0.15);
  --gold-glow: rgba(212, 168, 67, 0.3);
  --text-primary: #e8e8e8;
  --text-secondary: #8a8a8a;
  --red: #c0392b;
  --red-hover: #e74c3c;
  --white: #ffffff;
  --black: #000000;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-card: rgba(255, 255, 255, 0.08);

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1200px;
  --content-width: 780px;
  --nav-height: 72px;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

a:hover {
  color: var(--white);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: 2.2rem;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.35rem;
}

h4 {
  font-size: 1.15rem;
}

p {
  margin-bottom: 1.25em;
  color: var(--text-primary);
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.content-width {
  max-width: var(--content-width);
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

.section-heading {
  font-size: 1.75rem;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--gold);
}

.text-gold {
  color: var(--gold);
}

.text-muted {
  color: var(--text-secondary);
}

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

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  text-align: center;
  line-height: 1;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg-primary);
}

.btn-gold:hover {
  background: var(--white);
  color: var(--bg-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--red-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* --- Header / Nav --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.1;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.logo a {
  text-decoration: none;
}

.logo a:hover .logo-text {
  color: var(--white);
}

.nav-links {
  display: none;
  gap: 32px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease-out);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--bg-card);
  padding: 100px 40px 40px;
  transition: right 0.35s var(--ease-out);
  z-index: 999;
  border-left: 1px solid var(--border-subtle);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
}

.mobile-overlay.open {
  display: block;
}

/* --- Hero --- */
.hero {
  padding: 140px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero .subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero .btn {
  margin-bottom: 16px;
}

.hero .social-proof {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* --- Article Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 28px 24px;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.card:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 4px 24px rgba(212, 168, 67, 0.08);
  transform: translateY(-2px);
}

.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.card h3 a {
  color: var(--text-primary);
}

.card h3 a:hover {
  color: var(--gold);
}

.card-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.card-link:hover {
  color: var(--white);
}

.card-coming-soon {
  opacity: 0.55;
  pointer-events: none;
}

.card-coming-soon .card-tag {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
}

/* --- What We Cover --- */
.covers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cover-item {
  padding: 24px 20px;
  border-top: 3px solid var(--gold);
  background: var(--bg-card);
  border-radius: 0 0 8px 8px;
}

.cover-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}

.cover-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.cover-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0;
}

/* --- Email Capture --- */
.email-capture {
  background: var(--bg-card);
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  padding: 40px 28px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.email-capture h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.email-capture p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}

.email-form input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-card);
  border-radius: 4px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s var(--ease-out);
}

.email-form input[type="email"]::placeholder {
  color: var(--text-secondary);
}

.email-form input[type="email"]:focus {
  border-color: var(--gold);
}

.email-form .btn {
  width: 100%;
}

/* --- Footer --- */
.site-footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 60px;
}

.footer-inner {
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-brand {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}

.footer-nav a {
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-disclosure {
  font-size: 0.75rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 20px;
  line-height: 1.6;
  opacity: 0.7;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-secondary);
  opacity: 0.5;
}

/* --- About Page --- */
.about-hero {
  padding: 120px 0 60px;
}

.about-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 32px;
  max-width: 640px;
}

.about-photo {
  width: 100%;
  max-width: 480px;
  height: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 40px;
}

.about-content {
  max-width: var(--content-width);
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5em;
}

.about-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

/* --- Articles Index --- */
.articles-hero {
  padding: 120px 0 40px;
}

.articles-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 32px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}

.filter-tab:hover,
.filter-tab.active {
  color: var(--bg-primary);
  background: var(--gold);
  border-color: var(--gold);
}

/* --- Resources Page --- */
.resources-hero {
  padding: 120px 0 40px;
}

.resources-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.resources-disclosure {
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin-bottom: 48px;
  border-radius: 0 4px 4px 0;
}

.resource-category {
  margin-bottom: 48px;
}

.resource-category h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 20px;
  transition: border-color 0.3s var(--ease-out);
}

.product-card:hover {
  border-color: var(--gold-dim);
}

.product-img-placeholder {
  width: 100%;
  height: 140px;
  background: var(--bg-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.product-info h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.product-info .product-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 10px;
}

.product-info .product-price {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

/* --- Newsletter Page --- */
.newsletter-page {
  padding: 140px 0 80px;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.newsletter-content {
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-content h1 {
  font-size: 2.2rem;
  margin-bottom: 28px;
}

.newsletter-list {
  text-align: left;
  margin-bottom: 32px;
}

.newsletter-list li {
  padding: 10px 0;
  font-size: 1rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-subtle);
  padding-left: 24px;
  position: relative;
}

.newsletter-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.newsletter-fine-print {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 24px;
  line-height: 1.6;
}

/* --- Article Template --- */
.article-header {
  padding: 120px 0 32px;
  max-width: var(--content-width);
  margin: 0 auto;
}

.article-header .card-tag {
  margin-bottom: 16px;
}

.article-header h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  line-height: 1.15;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-featured-img {
  width: 100%;
  height: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 40px;
}

/* Article Body Content */
.article-body {
  max-width: var(--content-width);
  margin: 0 auto;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5em;
}

.article-body h2 {
  font-size: 1.6rem;
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}

.article-body h3 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 14px;
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin-bottom: 1.5em;
}

.article-body ul li,
.article-body ol li {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.5em;
  color: var(--text-primary);
}

.article-body ul li {
  list-style: disc;
}

.article-body ol li {
  list-style: decimal;
}

.article-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--bg-card);
  border-radius: 0 8px 8px 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
}

.article-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-body a:hover {
  color: var(--white);
}

/* Product Recommendation Card (in articles) */
.product-rec {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 24px;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-rec-img {
  width: 100%;
  height: 200px;
  background: var(--bg-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.product-rec h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.product-rec .product-price {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.product-rec .pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.product-rec .pros h5,
.product-rec .cons h5 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.product-rec .pros h5 {
  color: var(--gold);
}

.product-rec .cons h5 {
  color: var(--red);
}

.product-rec .pros li,
.product-rec .cons li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 2px 0;
  list-style: none;
}

/* FAQ Accordion */
.faq-section {
  margin: 48px 0;
}

.faq-section h2 {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s var(--ease-out);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-secondary);
  transition: transform 0.3s var(--ease-out);
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
}

.faq-answer-inner {
  padding: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Mid-article Email CTA */
.mid-article-cta {
  background: var(--bg-card);
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  padding: 32px 24px;
  margin: 40px 0;
  text-align: center;
}

.mid-article-cta h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.mid-article-cta p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* Author Bio Box */
.author-bio {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 24px;
  margin: 48px 0;
}

.author-avatar {
  width: 64px;
  height: 64px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.55;
}

/* Related Articles */
.related-articles {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}

.related-articles h2 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

/* --- Responsive Breakpoints --- */

/* 480px and up */
@media (min-width: 480px) {
  .email-form {
    flex-direction: row;
  }

  .email-form input[type="email"] {
    flex: 1;
  }

  .email-form .btn {
    width: auto;
    white-space: nowrap;
  }

  .product-rec .pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}

/* 768px and up */
@media (min-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }

  .hero {
    padding: 180px 0 100px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero .subtitle {
    font-size: 1.15rem;
  }

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

  .covers-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .email-capture {
    padding: 48px 40px;
  }

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

  .product-card {
    flex-direction: row;
    align-items: center;
  }

  .product-img-placeholder {
    width: 140px;
    min-width: 140px;
    height: 100px;
  }

  .product-rec {
    flex-direction: row;
    gap: 24px;
  }

  .product-rec-img {
    width: 240px;
    min-width: 240px;
    height: 180px;
  }

  .author-bio {
    flex-direction: row;
    align-items: center;
  }

  .article-featured-img {
    height: 420px;
  }

  .article-header h1 {
    font-size: 2.8rem;
  }
}

/* 1024px and up */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .mobile-menu,
  .mobile-overlay {
    display: none !important;
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .section {
    padding: 80px 0;
  }
}

/* 1200px and up */
@media (min-width: 1200px) {
  .container {
    padding: 0 40px;
  }

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

/* --- Print Styles --- */
@media print {
  *,
  *::before,
  *::after {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .site-header,
  .hamburger,
  .mobile-menu,
  .mobile-overlay,
  .email-capture,
  .mid-article-cta,
  .site-footer,
  .filter-tabs,
  .btn {
    display: none !important;
  }

  .article-body {
    max-width: 100%;
  }

  .article-header {
    padding-top: 0;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }

  p, li, blockquote {
    orphans: 3;
    widows: 3;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    color: #666 !important;
  }
}
