/* ===========================================
   BusPermits Magazine — Main Stylesheet
   =========================================== */

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

/* --- Variables --- */
:root {
  --navy:       #1a2744;
  --navy-light: #2a3d6b;
  --red:        #c8102e;
  --gold:       #c9a84c;
  --light-bg:   #f7f7f5;
  --white:      #ffffff;
  --text:       #2c2c2c;
  --text-light: #666666;
  --border:     #e0ddd8;
  --font-h:     'Playfair Display', Georgia, serif;
  --font-b:     'Lato', Arial, sans-serif;
  --shadow:     0 4px 20px rgba(0,0,0,.09);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.14);
  --radius:     6px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--light-bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red); }

/* --- Layout --- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Header --- */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
}
.logo-name span { color: var(--gold); }
.logo-tagline {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 3px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-subscribe-header {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: background .2s;
}
.btn-subscribe-header:hover { background: #a50d24; color: var(--white) !important; }

.header-nav {
  background: rgba(255,255,255,.07);
  border-top: 1px solid rgba(255,255,255,.1);
}
.nav-menu {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  display: block;
  padding: 12px 20px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(255,255,255,.1);
  color: var(--gold);
}

/* --- Mobile Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: .3s;
}

/* --- Breadcrumb --- */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 13px;
  color: var(--text-light);
}
.breadcrumb a { color: var(--navy); }
.breadcrumb span { margin: 0 8px; }

/* --- Hero Section --- */
.hero-section {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.hero-content {
  padding: 60px 48px 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-h);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-excerpt {
  color: rgba(255,255,255,.75);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Section Header --- */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--navy);
}
.section-title {
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
}
.section-title span { color: var(--red); }
.view-all {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 2px solid var(--navy);
  padding-bottom: 2px;
  transition: border-color .2s, color .2s;
}
.view-all:hover { color: var(--red); border-color: var(--red); }

/* --- Grid Layouts --- */
.articles-section { padding: 56px 0; }
.grid-articles {
  display: grid;
  gap: 28px;
}
.grid-articles.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-articles.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-articles.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-articles.featured { grid-template-columns: 2fr 1fr 1fr; }

/* --- Article Card --- */
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-image {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.article-card:hover .card-image img { transform: scale(1.04); }
.card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.card-title {
  font-family: var(--font-h);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
  flex: 1;
}
.card-title a { color: inherit; }
.card-title a:hover { color: var(--red); }
.card-excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}
.card-meta .read-time::before { content: '⏱ '; }
.read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.read-more::after { content: '→'; }
.read-more:hover { color: var(--red); }

/* --- Featured Card (large) --- */
.article-card.card-featured .card-title { font-size: 24px; }
.article-card.card-featured .card-image { aspect-ratio: 4/3; }

/* --- Subscribe Banner --- */
.subscribe-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subscribe-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(201,168,76,.12);
  border-radius: 50%;
}
.subscribe-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  background: rgba(200,16,46,.08);
  border-radius: 50%;
}
.subscribe-banner .container { position: relative; z-index: 1; }
.banner-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.banner-title {
  font-family: var(--font-h);
  font-size: 38px;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.banner-desc {
  color: rgba(255,255,255,.75);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 36px;
}
.pricing-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}
.pricing-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 28px 36px;
  min-width: 200px;
  position: relative;
  transition: background .2s;
}
.pricing-card.popular {
  background: var(--red);
  border-color: var(--red);
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 20px;
}
.pricing-period {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 10px;
}
.pricing-price {
  font-family: var(--font-h);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.pricing-price sup { font-size: 18px; vertical-align: top; margin-top: 8px; }
.pricing-save {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-top: 6px;
}
.btn-pricing {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 40px;
  border-radius: 3px;
  transition: background .2s, transform .2s;
  letter-spacing: .3px;
}
.btn-pricing:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.banner-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  margin-top: 20px;
}
.banner-features span::before { content: '✓  '; color: var(--gold); }

/* --- Article Page --- */
.article-page { padding: 48px 0 64px; }
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.article-hero-image {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: 16/7;
}
.article-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.article-header { margin-bottom: 28px; }
.article-category-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.article-title {
  font-family: var(--font-h);
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-light);
  flex-wrap: wrap;
}
.article-meta .author { font-weight: 700; color: var(--navy); }
.article-meta .read-time::before { content: '⏱ '; }

/* Article Body Typography */
.article-body {
  font-size: 18px;
  line-height: 1.78;
  color: #2c2c2c;
}
.article-body p { margin-bottom: 1.4em; }
.article-body h2 {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin: 1.8em 0 .7em;
  line-height: 1.3;
}
.article-body h3 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5em 0 .6em;
}
.article-body ul, .article-body ol {
  margin: 1em 0 1.4em 1.8em;
}
.article-body li { margin-bottom: .5em; }
.article-body blockquote {
  border-left: 4px solid var(--gold);
  margin: 2em 0;
  padding: 18px 24px;
  background: rgba(201,168,76,.07);
  font-style: italic;
  font-family: var(--font-h);
  font-size: 20px;
  color: var(--navy);
}
.article-body strong { color: var(--navy); font-weight: 700; }
.article-body .drop-cap::first-letter {
  font-family: var(--font-h);
  font-size: 72px;
  font-weight: 800;
  float: left;
  line-height: .8;
  margin: 8px 10px 0 0;
  color: var(--navy);
}

/* --- Paywall --- */
.paywall-wrapper { position: relative; }
.paywall-blur {
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
  max-height: 240px;
  overflow: hidden;
}
.paywall-overlay {
  position: relative;
  margin-top: -60px;
  padding: 48px;
  background: linear-gradient(to bottom, transparent, var(--white) 30%);
  text-align: center;
}
.paywall-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 44px 48px;
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  margin: 0 auto;
}
.paywall-icon { font-size: 36px; margin-bottom: 12px; }
.paywall-box h3 {
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.paywall-box p {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 16px;
}
.btn-paywall-subscribe {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  padding: 15px 40px;
  border-radius: 3px;
  transition: background .2s;
  margin-bottom: 14px;
}
.btn-paywall-subscribe:hover { background: #a50d24; color: var(--white); }
.paywall-login {
  font-size: 14px;
  color: var(--text-light);
}
.paywall-login a { color: var(--navy); font-weight: 700; text-decoration: underline; }

/* --- Sidebar --- */
.sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 28px;
}
.widget-header {
  background: var(--navy);
  padding: 14px 20px;
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.widget-body { padding: 20px; }
.sidebar-article {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-article:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-article-img {
  width: 72px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.sidebar-article-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}
.sidebar-article-title a { color: inherit; }
.sidebar-article-title a:hover { color: var(--red); }
.sidebar-article-date { font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* Sidebar Subscribe Widget */
.widget-subscribe {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.widget-subscribe h4 {
  font-family: var(--font-h);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}
.widget-subscribe p { color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 20px; }
.btn-widget-sub {
  display: block;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 3px;
  text-align: center;
  transition: background .2s;
}
.btn-widget-sub:hover { background: #a50d24; color: var(--white); }

/* --- Section Page Hero --- */
.section-hero {
  background: var(--navy);
  padding: 48px 0;
  margin-bottom: 0;
}
.section-hero-title {
  font-family: var(--font-h);
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
}
.section-hero-desc {
  color: rgba(255,255,255,.7);
  font-size: 18px;
  margin-top: 12px;
  max-width: 600px;
}

/* --- Subscription Page --- */
.subscription-page { padding: 64px 0; }
.subscription-hero {
  text-align: center;
  margin-bottom: 64px;
}
.subscription-hero h1 {
  font-family: var(--font-h);
  font-size: 48px;
  color: var(--navy);
  margin-bottom: 16px;
}
.subscription-hero p {
  font-size: 20px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}
.subscription-plans {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.plan-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 40px 36px;
  width: 300px;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card.plan-popular {
  border-color: var(--red);
  transform: scale(1.04);
}
.plan-card.plan-popular:hover { transform: scale(1.04) translateY(-4px); }
.plan-badge {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
}
.plan-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}
.plan-price {
  font-family: var(--font-h);
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price sup { font-size: 24px; vertical-align: super; }
.plan-per { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }
.plan-saving {
  display: inline-block;
  background: #eef7ee;
  color: #2d7a2d;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.plan-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}
.plan-features li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: '✓ '; color: var(--red); font-weight: 700; }
.btn-plan {
  display: block;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 15px;
  border-radius: 4px;
  text-align: center;
  transition: background .2s;
  border: none;
  cursor: pointer;
  width: 100%;
}
.btn-plan:hover { background: var(--red); color: var(--white); }
.plan-card.plan-popular .btn-plan { background: var(--red); }
.plan-card.plan-popular .btn-plan:hover { background: #a50d24; }
.subscription-guarantee {
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  color: var(--text-light);
  font-size: 15px;
}
.subscription-guarantee strong { color: var(--navy); }

/* --- Refund Page --- */
.policy-page { padding: 64px 0; }
.policy-page h1 {
  font-family: var(--font-h);
  font-size: 42px;
  color: var(--navy);
  margin-bottom: 8px;
}
.policy-page .updated {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.policy-page h2 {
  font-family: var(--font-h);
  font-size: 24px;
  color: var(--navy);
  margin: 2em 0 .8em;
}
.policy-page p { margin-bottom: 1.2em; line-height: 1.75; }
.policy-page ul { margin: 1em 0 1.4em 1.8em; }
.policy-page li { margin-bottom: .5em; line-height: 1.6; }
.policy-content { max-width: 820px; }

/* --- Footer --- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-about .logo-name { font-size: 24px; margin-bottom: 14px; }
.footer-about p { font-size: 14px; line-height: 1.7; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--white); }
.footer-legal-links { display: flex; gap: 20px; }

/* --- Tags / Labels --- */
.tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .5px;
}

/* --- Utilities --- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-articles.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-articles.featured { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .hero-title { font-size: 34px; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { padding: 40px 0 0; }
  .hero-image { aspect-ratio: 16/9; min-height: 220px; }
  .hero-title { font-size: 28px; }
  .grid-articles.cols-3,
  .grid-articles.cols-2,
  .grid-articles.featured { grid-template-columns: 1fr; }
  .nav-menu { display: none; flex-direction: column; }
  .nav-menu.open { display: flex; }
  .hamburger { display: flex; }
  .header-actions .btn-subscribe-header { display: none; }
  .article-title { font-size: 28px; }
  .banner-title { font-size: 28px; }
  .pricing-cards { flex-direction: column; align-items: center; }
  .subscription-plans { flex-direction: column; align-items: center; }
  .plan-card.plan-popular { transform: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-hero-title { font-size: 36px; }
  .paywall-box { padding: 32px 24px; }
}
