/**
 * CONSOLIDATED PAGES.CSS - Phase 1 CSS Optimization  
 * Page-Specific Styles Bundle
 * Generated: November 3, 2025
 * Consolidates: marketing-pages.css, homepage-new.css, services.css, perspectives.css
 */

/* =============================================================================
   MARKETING PAGES - HEADER & NAVIGATION OVERRIDES
   ============================================================================= */

/* Site Header with Cover Photo */
.site-header {
  box-shadow: var(--shadow-sm);
}

.header-hero {
  background-image: url('/assets/images/cosmos_00001_.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-overlay {
  background: rgba(44, 62, 80, 0.75);
  padding: 2rem 2rem;
  width: 100%;
  text-align: center;
}

.site-title {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 2.5rem;
}

.site-title a {
  color: white;
  text-decoration: none;
  transition: color var(--transition-fast);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.site-title a:hover {
  color: var(--color-accent-gold);
}

/* Navigation Panel Overrides for Marketing Pages */
.site-nav {
  background: rgba(44, 62, 80, 0.6); /* Increased transparency */
  border-bottom: 2px solid var(--color-accent-gold);
}

.site-nav a:hover {
  color: var(--color-accent-gold);
  background-color: rgba(212, 184, 134, 0.15);
}

/* =============================================================================
   MARKETING PAGES - CONTENT SECTIONS
   ============================================================================= */

/* Hero Sections */
.hero-section {
  background: var(--color-secondary);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.hero-content .lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Button Styles for Marketing Pages */
.primary-button,
.secondary-button {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
  background: var(--color-secondary);
  color: white;
}

.secondary-button {
  background: white;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-decoration: none;
}

.primary-button:hover {
  color: white;
}

.secondary-button:hover {
  color: var(--color-secondary);
}

/* Card Links */
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform var(--transition-fast);
}

.card-link:hover {
  transform: translateY(-2px);
  color: inherit;
  text-decoration: none;
}

/* Value Propositions Grid */
.value-props {
  padding: 4rem 0;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.prop-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.prop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-header {
  background: var(--color-secondary);
  padding: 1.5rem;
  color: white;
}

.card-header h2 {
  font-size: 1.4rem;
  margin: 0;
  color: white;
}

.card-content {
  padding: 1.5rem;
}

/* =============================================================================
   STAKEHOLDER SOLUTIONS PAGE SPECIFIC STYLES
   ============================================================================= */

/* Enhanced Intro Section */
.intro {
  background: var(--bg-light);
  padding: var(--spacing-xl) 0;
  margin-bottom: var(--spacing-xl);
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--spacing-md);
}

.intro-heading {
  font-family: var(--font-primary);
  font-size: 2.25rem;
  color: var(--secondary-color);
  margin-bottom: var(--spacing-lg);
  font-weight: var(--font-weight-bold);
}

.intro-lead {
  font-size: var(--font-size-xl);
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: var(--spacing-xl);
  font-weight: var(--font-weight-medium);
}

.intro-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.highlight-item {
  background: var(--bg-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
  text-align: left;
  box-shadow: var(--shadow-sm);
  font-size: var(--font-size-md);
  line-height: 1.5;
}

.highlight-item strong {
  color: var(--secondary-color);
  display: block;
  margin-bottom: var(--spacing-xs);
}

/* Role Navigation */
.role-navigation {
  background: var(--bg-light);
  padding: var(--spacing-lg) 0;
  margin: var(--spacing-xl) 0;
  border-radius: var(--radius-md);
}

.nav-prompt {
  text-align: center;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-md);
  color: var(--secondary-color);
}

.nav-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.role-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: var(--bg-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--secondary-color);
  transition: all var(--transition-fast);
  min-width: 120px;
}

.role-button:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: var(--primary-color);
}

.role-icon {
  width: 48px;
  height: 48px;
}

.role-label {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.role-badge {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-sm);
  background: var(--accent-color);
  color: var(--bg-white);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-md);
}

.role-badge.admin {
  background: var(--primary-color);
}

.role-badge.support {
  background: var(--accent-color);
}

.role-badge.curriculum {
  background: var(--secondary-color);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.role-intro {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-md);
  color: var(--secondary-color);
}

.solution-details .problem,
.solution-details .approach,
.solution-details .outcome {
  margin-bottom: var(--spacing-md);
}

.solution-details h4 {
  color: var(--primary-color);
  font-size: var(--font-size-md);
  margin-bottom: var(--spacing-xs);
}

/* =============================================================================
   SERVICES PAGE SPECIFIC STYLES
   ============================================================================= */

.services-page .services-hero {
  background: var(--color-primary-dark);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

/* =============================================================================
   SCHEMA-COMPLIANT HERO SECTIONS FOR ALL PAGES
   ============================================================================= */

/* About Page Hero */
.about-hero {
  background: var(--color-primary-dark);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
  font-family: var(--font-serif-headings);
}

.about-hero .lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-family: var(--font-sans-body);
}

/* FAQ Page Hero */
.faq-hero {
  background: var(--color-primary-dark);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.faq-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
  font-family: var(--font-serif-headings);
}

.faq-hero .lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-family: var(--font-sans-body);
}

/* Contact Page Hero */
.contact-hero {
  background: var(--color-primary-dark);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
  font-family: var(--font-serif-headings);
}

.contact-hero h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
  font-family: var(--font-serif-headings);
}

.contact-hero .lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-family: var(--font-sans-body);
}

/* Perspectives Page Hero (Schema Compliant) */
.perspectives-hero {
  background: var(--color-primary-dark);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.perspectives-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
  font-family: var(--font-serif-headings);
}

.perspectives-hero .lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-family: var(--font-sans-body);
}

.services-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.services-hero .lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-cta {
  margin-top: 2rem;
}

.hero-cta .primary-button {
  margin-right: 1rem;
}

/* Service Cards */
.services-page .prop-card.recommended {
  border: 3px solid var(--color-accent-gold);
  position: relative;
}

/* REMOVED: Floating recommended badge - now using inline badge in new design */
/* .recommended-badge styles moved to pages/services.css */

/* Role Navigation Buttons */
.nav-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.role-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #f8f9fa;
  border: 2px solid #dee2e6;
  border-radius: 6px;
  text-decoration: none;
  color: var(--color-secondary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.role-button:hover,
.role-button:focus {
  background: var(--color-primary);
  border-color: var(--color-primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-decoration: none;
}

.role-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Form Styles */
.form-footer {
  text-align: center;
  margin-top: 2rem;
}

.form-footer .primary-button {
  display: inline-block;
  background: var(--color-secondary);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.3);
}

.form-footer .primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.4);
}

/* CTA Sections */
.cta-section {
  background: var(--color-primary);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section .primary-button {
  background: white;
  color: var(--color-primary-dark);
  padding: 1rem 2.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-section .primary-button:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  color: var(--color-primary-dark);
}

/* =============================================================================
   HOMEPAGE SPECIFIC STYLES  
   ============================================================================= */

.homepage-hero {
  background: var(--color-primary-dark);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.homepage-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.homepage-hero .subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.homepage-features {
  padding: 4rem 0;
  background: var(--color-background-main);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

/* =============================================================================
   HOMEPAGE - STAKEHOLDER PREVIEW SECTION
   ============================================================================= */

/* Section title styling */
.section-title {
  text-align: center;
  font-size: 2.25rem; /* 36px */
  font-weight: 600;
  margin-bottom: 2.5rem; /* 40px */
  color: #2c3e50; /* Dark blue-gray */
}

/* This creates the responsive 3-column grid.
  - On large screens, it's 3 columns.
  - On medium screens, it can be 2.
  - On small screens, it's 1 column.
  'auto-fit' with 'minmax' is a modern, powerful way
  to handle responsive columns without media queries.
*/
.stakeholder-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; /* 32px spacing between cards */
  margin-bottom: 2.5rem; /* 40px */
}

/* Individual card styling */
.stakeholder-preview__card {
  border: 1px solid #e0e0e0; /* Subtle border */
  border-radius: 8px; /* Rounded corners */
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Soft shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden; /* Ensures content respects border-radius */
}

/* Adds a hover effect found on modern sites */
.stakeholder-preview__card:hover {
  transform: translateY(-5px); /* Lifts the card slightly */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1); /* Stronger shadow */
}

.stakeholder-preview__card-content {
  padding: 2rem; /* 32px */
}

.stakeholder-preview__card-title {
  font-size: 1.5rem; /* 24px */
  font-weight: 600;
  color: #2c3e50;
  margin-top: 0;
  margin-bottom: 0.5rem; /* 8px */
}

.stakeholder-preview__card-subtitle {
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
  color: #c0392b; /* Example theme color (red) */
  margin-top: 0;
  margin-bottom: 1rem; /* 16px */
}

.stakeholder-preview__card-description {
  font-size: 1rem; /* 16px */
  line-height: 1.6;
  color: #34495e; /* Slightly softer than black */
  margin-bottom: 0;
}

/* This replaces your inline style="text-align:center..." */
.stakeholder-preview__cta-container {
  text-align: center;
  margin-top: 2rem; /* 32px */
}

/* =============================================================================
   PERSPECTIVES/BLOG SPECIFIC STYLES
   ============================================================================= */

.perspectives-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.post-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--color-border);
}

.post-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-heading);
}

.post-meta {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 500;
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.post-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-text-heading);
}

.post-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.post-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  background: var(--color-background-subtle);
  padding: 1rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.posts-list {
  display: grid;
  gap: 2rem;
}

.post-preview {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.post-preview:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.post-preview h3 {
  margin-bottom: 0.5rem;
}

.post-preview .post-meta {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.post-preview .excerpt {
  color: var(--color-text-body);
  line-height: 1.6;
}

/* =============================================================================
   RESPONSIVE ADJUSTMENTS FOR PAGES
   ============================================================================= */

@media (max-width: 1024px) {
  .hero-content h1,
  .homepage-hero h1 {
    font-size: 2.5rem;
  }
  
  .section-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .header-hero {
    min-height: 150px;
  }
  
  .site-title {
    font-size: 1.75rem;
  }
  
  .intro-heading {
    font-size: 1.75rem;
  }
  
  .intro-lead {
    font-size: var(--font-size-lg);
  }
  
  .intro-highlights {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .highlight-item {
    padding: var(--spacing-md);
  }
  
  .hero-content h1,
  .homepage-hero h1 {
    font-size: 2rem;
  }
  
  .hero-content .lead,
  .homepage-hero .subtitle {
    font-size: 1.25rem;
  }
  
  .section-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .nav-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .role-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .perspectives-page {
    padding: 1rem;
  }
  
  .post-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1,
  .homepage-hero h1 {
    font-size: 1.75rem;
  }
  
  .hero-content .lead,
  .homepage-hero .subtitle {
    font-size: 1.1rem;
  }
  
  .primary-button,
  .secondary-button {
    width: 100%;
    margin-bottom: 0.75rem;
  }
  
  .hero-cta .primary-button {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .post-title {
    font-size: 1.75rem;
  }
}

/* =============================================================================
   PROMPT STORY PAGE - PROMPT CARD STYLES
   ============================================================================= */

/* Styles for the sub-header paragraph 
 * in /services/prompt-story/ 
 */
.stakeholder-header p {
  font-size: 1.1rem;
  color: var(--color-secondary);  /* Deep Slate */
  margin-top: var(--spacing-md);  /* 1rem */
}

/* =============================================================================
   PERSPECTIVES PAGE - "PROFESSIONAL LIBRARY" REFACTOR
   ============================================================================= */

.library-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.library-commentary {
  background: var(--color-background-subtle);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent-gold);
  font-size: 0.95rem;
  line-height: 1.6;
}

.library-commentary p {
  margin-bottom: 1rem;
}

.library-commentary p:last-child {
  margin-bottom: 0;
}

.library-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.library-card {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.library-card:first-child {
  padding-top: 0;
}

.library-card:last-child {
  border-bottom: none;
}

.library-card__title {
  font-family: var(--font-serif-headings);
  font-size: 1.75rem;
  line-height: 1.3;
  margin: 0 0 0.5rem 0;
}

.library-card__title a {
  color: var(--color-text-heading);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.library-card__title a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.library-card__meta {
  font-family: var(--font-sans-body);
  font-size: 0.9rem;
  color: var(--color-text-subtle);
  margin: 0 0 0.75rem 0;
}

.library-card__snippet {
  font-family: var(--font-sans-body);
  color: var(--color-text-body);
  line-height: 1.6;
  margin: 0;
}

/* Desktop layout: commentary on the side */
@media (min-width: 992px) {
  .library-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .library-commentary {
    flex: 0 0 300px; /* Flex-basis of 300px, don't grow or shrink */
    position: sticky;
    top: 2rem; /* Sticks to the top while scrolling */
  }

  .professional-library {
    flex: 1;
    min-width: 0; /* Prevents flexbox overflow issues */
  }
}

/* =============================================================================
   PERSPECTIVES ARTICLE TEMPLATE REFACTOR
   ============================================================================= */

.article-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.article-header h1 {
  font-family: var(--font-serif-headings);
  font-size: 2.8rem;
  line-height: 1.2;
  color: var(--color-text-heading);
  margin: 0 0 1rem 0;
}

.article-meta {
  font-family: var(--font-sans-body);
  font-size: 0.95rem;
  color: var(--color-text-body);
}

.article-excerpt {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-text-subtle);
  margin-top: 1.5rem;
  font-style: italic;
}

.article-content {
  font-family: var(--font-sans-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-body);
}

.article-content h2,
.article-content h3 {
  font-family: var(--font-serif-headings);
  color: var(--color-text-heading);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-content h2 {
  font-size: 2rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
}

.article-content h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.article-content blockquote {
  font-family: var(--font-serif-headings);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--color-text-heading);
  margin: 2.5rem auto;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  max-width: 80%;
}

.article-content .pillar-concept {
  background: var(--color-background-subtle);
  border-left: 4px solid var(--color-accent-gold);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: var(--radius-md);
}

.article-content .comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2.5rem 0;
}

@media (min-width: 768px) {
  .article-content .comparison-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.comparison-grid .comparison-block {
  background: var(--color-background-subtle);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.comparison-grid .comparison-block h4 {
  font-family: var(--font-serif-headings);
  color: var(--color-primary);
  margin-top: 0;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
}

.article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.article-cta {
  background: var(--color-primary-dark);
  color: white;
  text-align: center;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}

.article-cta h2,
.article-container .article-footer .article-cta h2 {
  color: white;
  font-family: var(--font-serif-headings);
  margin: 0 0 1rem 0;
}

.article-cta p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.article-cta .primary-button {
  background: var(--color-accent-gold);
  color: var(--color-primary-dark);
  font-weight: bold;
}