/* SMART — Design System
   Palette: Deep blue, slate, white, restrained accents
   Tone: Academic, minimalist, high-end */

:root {
  --primary: #1a365d;
  --primary-light: #2a4a7f;
  --secondary: #475569;
  --accent: #3b82f6;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --max-width: 1200px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Merriweather', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { 
  font-size: 16px; 
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.3; color: var(--primary); }
h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 1.875rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; color: var(--text); }

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

/* Layout */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* Header */
header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.95);
}

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

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img { height: 80px; width: auto; }
.logo span { color: var(--accent); }

nav { display: flex; gap: 1.75rem; align-items: center; }

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

nav a:hover { color: var(--primary); }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); margin: 5px 0; transition: 0.3s; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 0.75rem;
  }
  nav.open { display: flex; }
}

/* Hero */
.hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
}

.hero h1 { color: white; font-size: 3rem; max-width: 700px; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.25rem; max-width: 600px; margin-bottom: 2rem; }

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.hero-stat { text-align: center; }
.hero-stat .number { font-size: 2rem; font-weight: 700; display: block; }
.hero-stat .label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary { background: white; color: var(--primary); }
.btn-primary:hover { background: var(--bg-alt); color: var(--primary); transform: translateY(-1px); }

.btn-outline { border: 1px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: white; }

/* STANDARDIZED HERO BAND SYSTEM */
.section {
  padding: 4rem 0;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.section.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 2.5rem 0;
  display: flex;
  align-items: center;
  min-height: auto;
}

.section.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.section.hero h1 {
  color: white;
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  max-width: 800px;
}

.section.hero .hero-intro {
  color: white;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 1000px;
  margin: 0;
}

.section.hero .hero-image {
  margin: 0;
}

.section.white {
  background: var(--bg);
}

.section.gray {
  background: var(--bg-alt);
}

/* Standardized Hero Image Styling */
.hero-image {
  text-align: center;
  margin: 0;
}

.hero-image img {
  max-width: 280px;
  width: 100%;
  height: auto;
  border: 4px solid white;
  border-radius: 12px;
}

/* Content images without extra framing */
.content-image {
  text-align: center;
  margin: 2rem 0;
}

.content-image img {
  max-width: 350px;
  width: 100%;
  height: auto;
  border: 4px solid white;
  border-radius: 12px;
}

/* Process image styling */
.process-image img {
  max-width: 350px;
  width: 100%;
  height: auto;
  border: 4px solid white;
  border-radius: 12px;
}

/* Section titles and content */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.process-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.process-image {
  text-align: center;
}

/* Legacy section support */
section { 
  padding: 4rem 0; 
}
section.alt { 
  background: var(--bg-alt); 
}

/* Pillar Icon Chips */
.pillar-icon-chip {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.pillar-independent {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #1565c0;
}

.pillar-evidence {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
  color: #7b1fa2;
}

.pillar-workflow {
  background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
  color: #2e7d32;
}

.pillar-cost {
  background: linear-gradient(135deg, #fff3e0, #ffcc80);
  color: #ef6c00;
}

.pillar-card:hover .pillar-icon-chip {
  transform: scale(1.1);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
}

.section-header h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background: var(--accent);
  display: block;
  margin: 1rem auto 0;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

.card h3 { color: var(--primary); }
.card p { color: var(--text-light); font-size: 0.95rem; }

.card .status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

/* Removed - using consolidated status badges below */

/* Team cards */
.team-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1.5rem !important;
  justify-content: center !important;
  flex-direction: row !important;
}

.team-card {
  text-align: center;
  padding: 2rem;
}

.team-card .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg-alt);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  border: 3px solid var(--border);
}

.team-card h3 { margin-bottom: 0.25rem; }
.team-card .role { color: var(--text-light); font-size: 0.875rem; margin-bottom: 0.75rem; }
.team-card .links { display: flex; gap: 0.75rem; justify-content: center; }

/* TEAM MEMBERS - Fixed Size Cards (More Bottom Space) */
.team-member {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.1rem 1.2rem 0.3rem 1.2rem;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 300px !important;
  height: 240px !important;
  overflow: hidden;
  flex-shrink: 0 !important;
  min-width: 300px !important;
  max-width: 300px !important;
  min-height: 240px !important;
  max-height: 240px !important;
}

.team-member:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

/* Institution color accents for all team members */
.team-member[data-institution*="PMU"], 
.team-member[data-institution*="SALK"],
.collaborator-member[data-institution*="PMU"], 
.collaborator-member[data-institution*="SALK"] {
  border-left: 4px solid #1565c0; /* Darker PMU blue */
}

.team-member[data-institution*="PLUS"],
.collaborator-member[data-institution*="PLUS"] {
  border-left: 4px solid #2c5aa0; /* Dark Blue Green */
}

.team-member[data-institution*="AI Agent"],
.collaborator-member[data-institution*="AI Agent"] {
  border-left: 4px solid #d32f2f; /* Lobster red */
}

.team-member[data-institution*="Graz"],
.collaborator-member[data-institution*="Graz"] {
  border-left: 4px solid #27ae60; /* Shamrock Green */
}

.team-member[data-institution*="Nürnberg"],
.collaborator-member[data-institution*="Nürnberg"] {
  border-left: 4px solid #3498db; /* Water Blue */
}

.team-member h3 { font-size: 0.92rem; margin-bottom: 0.2rem; line-height: 1.1; }
.team-member p { color: var(--text-light); font-size: 0.8rem; margin-bottom: 0.2rem; line-height: 1.2; }
.member-links { margin-top: 0.3rem; }
.member-links a { font-size: 0.8rem; }

.member-icons {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.2rem;
}

.member-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.8;
}

.member-icons a:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.member-icons .icon {
  width: 18px;
  height: 18px;
}

.member-photo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.member-photo {
  width: 40% !important;
  max-width: 85px !important;
  height: 95px !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 8px !important;
  margin: 0 auto 0.15rem !important;
  display: block !important;
  border: 2px solid white !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
  flex-shrink: 0;
}

.member-avatar {
  width: auto;
  height: 130px;
  max-width: 90px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.9;
  transition: opacity 0.3s, transform 0.3s;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

.team-member:hover .member-avatar {
  opacity: 1;
  transform: translateY(-3px);
}

/* Initials placeholder for missing portraits */
.member-placeholder {
  width: 40% !important;
  max-width: 85px !important;
  height: 95px !important;
  border-radius: 8px !important;
  margin: 0 auto 0.15rem !important;
  background: linear-gradient(135deg, var(--accent), var(--primary)) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: white !important;
  border: 2px solid white !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
}

.placeholder-initials {
  background: transparent !important;
  font-size: 2.5rem;
  font-weight: 700;
  color: white !important;
  text-transform: uppercase;
}

/* Institution color coding for placeholders - CONTAINER ONLY */
.team-member[data-institution="PLUS"] .member-placeholder {
  background: linear-gradient(135deg, #8e44ad, #9b59b6) !important;
}

.team-member[data-institution="Graz"] .member-placeholder {
  background: linear-gradient(135deg, #27ae60, #2ecc71) !important;
}

.team-member[data-institution="Nürnberg"] .member-placeholder {
  background: linear-gradient(135deg, #3498db, #5dade2) !important;
}

.team-member[data-institution="AI Agent"] .member-placeholder {
  background: linear-gradient(135deg, #e74c3c, #ec7063) !important;
}
  font-weight: 700;
  font-size: 2.5rem;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.team-member:hover .member-initials {
  transform: translateY(-3px);
}

/* henry-card: same style as other team members */

/* Publications */
.publication {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.publication:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.publication h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.publication p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.5rem; }

/* Research Cards - Single Column Always */
.research-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex !important;
  flex-direction: column !important;
  gap: 2rem;
}

/* Research cards and link cards - special alignment overrides */
.research-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  text-align: left; /* Override canonical center alignment */
  position: relative;
}

/* Research card status left border */
.research-card.status-ongoing {
  border-left: 6px solid #3b82f6;
}

.research-card.status-preparation {
  border-left: 6px solid #fbbf24;
}

.research-card.status-published {
  border-left: 6px solid #10b981;
}

.link-card-item {
  text-align: center; /* Ensure About "Learn More" cards stay centered */
}

.research-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Remove the left border colored accents as requested */

.research-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.research-card-content {
  background: var(--bg-alt);
  padding: 2rem;
}

.research-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.research-year {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.research-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.research-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.research-team {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  font-style: italic;
}

.research-publications {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.research-publications p {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.pub-list { list-style: none; }

.pub-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.pub-item:last-child { border-bottom: none; }
.pub-item h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.pub-item .meta { color: var(--text-light); font-size: 0.875rem; }

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
  color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea { min-height: 120px; resize: vertical; }

/* Footer */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links { 
  display: flex; 
  gap: 2rem; 
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a { 
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7); 
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover { 
  color: var(--accent); 
}

.footer-email {
  font-weight: 500 !important;
  color: rgba(255,255,255,0.9) !important;
}

.footer-links svg {
  flex-shrink: 0;
}

.footer-copy { font-size: 0.8rem; opacity: 0.6; }

/* Page content */
.page-content {
  padding: 4rem 0;
  min-height: 60vh;
}

.page-content h1 { margin-bottom: 2rem; }

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  .hero { padding: 4rem 0 3rem; }
  
  /* Standardized hero mobile styles */
  .section.hero {
    padding: 2rem 0;
  }
  
  .section.hero h1 {
    font-size: 2rem;
  }
  
  .section.hero .hero-intro {
    font-size: 1.1rem;
  }
  
  .hero-image img {
    max-width: 240px;
  }
  
  /* Team photos - LOCKED sizing across all screens */
  .team-member-photo, .member-photo {
    width: 40% !important;
    max-width: 85px !important;
    height: 95px !important;
    object-fit: cover !important;
    object-position: center top !important;
    margin: 0 auto 0.15rem !important;
    border-radius: 8px !important;
    display: block !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
  }
  
  .member-placeholder {
    width: 40% !important;
    max-width: 85px !important;
    height: 95px !important;
    margin: 0 auto 0.15rem !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, var(--accent), var(--primary)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
  }
  
  .placeholder-initials {
    background: transparent !important;
    font-size: 2rem;
    font-weight: 700;
    color: white !important;
    text-transform: uppercase;
  }
  .hero h1 { font-size: 2.25rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  section { padding: 3rem 0; }
  .footer-inner { flex-direction: column; text-align: center; }

  /* OVERRIDE: Keep team cards fixed size always */
  .team-grid { 
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    justify-content: center !important;
  }
  
  .team-member {
    width: 300px !important;
    height: 240px !important;
    flex-shrink: 0 !important;
    padding: 0.1rem 1.2rem 0.3rem 1.2rem !important;
  }

  .member-photo-row {
    gap: 0.75rem;
  }

  /* REMOVED - using consistent sizing */

  .member-avatar {
    height: 80px;
    max-width: 60px;
  }
}

/* Professional Image Styling */
.image-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.05);
  background: var(--bg);
  padding: 8px;
  margin: 1.5rem 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-frame:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.08);
}

.image-frame img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.image-frame.professional {
  max-width: 400px;
  border: 1px solid var(--border);
}

.image-frame.team-preview {
  max-width: 300px;
  margin: 1.5rem auto;
}

.image-frame.about-preview {
  max-width: 350px;
  margin: 1.5rem auto;
}

/* Hero Layout */
.hero-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.featured-visual {
  display: flex;
  justify-content: center;
}

/* News Preview */
.news-item-compact {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  max-width: 700px;
  margin: 0 auto;
}

.news-thumbnail {
  flex-shrink: 0;
}

.news-thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.news-content {
  flex: 1;
}

.news-meta {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.news-content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.news-content p {
  margin-bottom: 0.75rem;
  color: var(--text);
  line-height: 1.6;
}

.news-author {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .news-item-compact {
    flex-direction: column;
    gap: 1rem;
  }
  
  .news-thumbnail img {
    width: 60px;
    height: 60px;
  }
  
  .news-item {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }
  
  .news-item .news-thumbnail img {
    width: 100%;
    height: 150px;
    max-width: 250px;
    margin: 0 auto;
    display: block;
  }
}

/* News Feed Layout */
.news-feed-layout {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.news-article-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}

.news-article-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.news-article-header {
  background: var(--bg-alt);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.news-date {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-article-content {
  padding: 1.5rem;
}

.news-article-image {
  float: right;
  margin: 0 0 1rem 1.5rem;
  flex-shrink: 0;
}

.news-article-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.news-article-body h2 {
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1.3;
}

.news-summary {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text);
}

.expand-toggle {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.expand-toggle:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

.expand-icon {
  transition: transform 0.3s ease;
}

.news-article-full {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  animation: slideDown 0.3s ease-out;
}

.article-content {
  line-height: 1.7;
}

.article-content h2 {
  margin: 1.5rem 0 1rem;
  font-size: 1.25rem;
}

.article-content h3 {
  margin: 1.25rem 0 0.75rem;
  font-size: 1.125rem;
}

.article-content p {
  margin-bottom: 1rem;
}

.article-content ul, .article-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.news-article-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  clear: both;
}

.news-author {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
  font-weight: 500;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .news-article-image {
    float: none;
    margin: 0 0 1rem 0;
    text-align: center;
  }
  
  .news-article-image img {
    width: 100px;
    height: 100px;
  }
}

/* Professional Selling Pages Styling */

/* Hero Sections */
.hero-section {
  margin: 3rem 0;
}

.hero-content-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-text h1 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.hero-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 0;
}

/* Pillars/Topics/Services Grid - Smart Responsive System */
.pillars-grid, .topics-grid, .services-grid {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

/* CONSISTENT DESKTOP CONTAINER SYSTEM - Wide, Professional Layout */
@media (min-width: 1024px) {
  /* Main content containers - wider for desktop */
  .container {
    max-width: 1280px;
    padding: 0 2rem;
  }
  
  /* Card grids - smart responsive behavior - handled by media queries below */
  
  /* Research and news - single column but wider */
  .research .research-grid,
  .news .news-feed-container {
    max-width: 1000px;
    margin: 2rem auto;
  }
}

/* Removed duplicate - consolidated below */

.topic-card.premium, .service-card.premium {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  border: 2px solid var(--accent);
}

.pillar-icon, .topic-icon, .service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

/* Removed - using canonical card definitions above */

/* Challenge Cards */
.challenges-grid {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.challenge-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.challenge-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

/* Content with Visual */
.content-with-visual {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
  margin: 3rem 0;
}

.visual-accent {
  display: flex;
  justify-content: center;
}

/* Engagement Cards */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

/* Removed duplicate - consolidated below */

.engagement-header {
  background: var(--primary);
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.engagement-card.featured .engagement-header {
  background: var(--accent);
}

.engagement-header h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.engagement-duration {
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 500;
}

.engagement-content {
  padding: 1.5rem;
}

.engagement-deliverable, .engagement-ideal {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* METHODOLOGY - CIRCULAR PROFESSIONAL LAYOUT */
.methodology-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
}

.methodology-circle {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto;
}

.methodology-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.methodology-step {
  position: absolute;
  width: 140px;
  height: 140px;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.methodology-step:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Position each step around the circle */
.methodology-step:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.methodology-step:nth-child(2) { top: 20%; right: 10%; }
.methodology-step:nth-child(3) { bottom: 20%; right: 10%; }
.methodology-step:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
.methodology-step:nth-child(5) { top: 20%; left: 10%; }

.step-number {
  background: var(--accent);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  margin-bottom: 0.25rem;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.step-content p {
  display: none; /* Hidden in circular layout for clean appearance */
}

/* Mobile methodology - show full content */
@media (max-width: 768px) {
  .methodology-container {
    padding: 1rem;
  }
  
  .methodology-circle {
    position: static;
    width: 100%;
    height: auto;
  }
  
  .methodology-center {
    position: static;
    transform: none;
    width: 100%;
    height: 80px;
    border-radius: 12px;
    margin-bottom: 2rem;
  }
  
  .methodology-step {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 12px;
    flex-direction: row;
    padding: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
  }
  
  .step-content p {
    display: block;
    margin: 0;
    line-height: 1.6;
  }
}

/* Format Lists */
.format-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.format-item {
  padding: 1rem;
  background: var(--bg-alt);
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.languages-note {
  background: var(--bg-alt);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.languages-note h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.faq-item {
  background: var(--bg-alt);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.faq-item h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.faq-item p {
  margin: 0;
  line-height: 1.6;
}

/* Internal Links Grid */
.internal-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.link-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  text-decoration: none;
}

.link-card.professional {
  border: 2px solid var(--accent);
}

/* Removed duplicate - consolidated below */

.link-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.link-content p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
  font-size: 0.9rem;
}

/* CTA Sections */
.cta-section {
  background: var(--bg-alt);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 4rem 0;
  border: 1px solid var(--border);
}

.cta-section.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
}

.cta-section.primary h2 {
  color: white;
}

.cta-section.primary p {
  color: rgba(255,255,255,0.9);
}

.cta-content h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.cta-content p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

/* Section Introductions */
.section-intro {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 2rem;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content-split, .content-with-visual {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-text h1 {
    font-size: 2.25rem;
  }
  
  /* Grid behavior handled by smart responsive system */
  
  .link-card {
    flex-direction: column;
    text-align: center;
  }
  
  .methodology-step {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* Standardized News Feed - Single Column Always */
.news-feed-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex !important;
  flex-direction: column !important;
  gap: 2.5rem;
}

.news-article-card.standardized {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-article-card.standardized:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* News Feed Items - Compact Layout */
.news-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.6);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.news-item .news-thumbnail {
  flex-shrink: 0;
}

.news-item .news-thumbnail img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--border);
}

.news-item .news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.news-item .news-meta {
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.news-item h3 {
  margin: 0 0 0.2rem 0;
  font-size: 1.1rem;
  line-height: 1.3;
}

.news-item h3 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-item h3 a:hover {
  color: var(--primary);
}

.news-item .news-excerpt {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0.2rem;
}

.news-item .news-author {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  font-weight: 500;
  margin: 0;
}

.news-article-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 1.5rem 2rem;
  text-align: center;
}

.news-date-prominent {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

.news-article-body {
  padding: 2rem;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  align-items: start;
}

.news-article-image img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid var(--border);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.news-article-content h2 {
  margin-bottom: 1.25rem;
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1.3;
}

.news-article-content h2 a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-article-content h2 a:hover {
  color: var(--accent);
}

.news-summary p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--text);
  font-size: 1.05rem;
}

.news-actions {
  margin-top: 1rem;
}

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.news-article-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.news-author {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  font-weight: 500;
}

/* Responsive News Layout */
@media (max-width: 768px) {
  .news-article-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .news-article-image {
    text-align: center;
  }
  
  .news-article-image img {
    width: 120px;
    height: 120px;
  }
  
  .news-date-prominent {
    font-size: 0.9rem;
  }
  
  .news-article-content h2 {
    font-size: 1.35rem;
  }
}

/* Single News Article Styling */
.single-news-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0 2rem;
}

.article-header {
  margin-bottom: 3rem;
  text-align: center;
  position: static !important;
  z-index: auto !important;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.article-date {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-author {
  color: var(--text-light);
  font-style: italic;
}

.article-header h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--primary);
}

/* Removed duplicate - using unified article-hero-image styles below */

.article-content {
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.article-content h2 {
  margin: 2.5rem 0 1.5rem;
  color: var(--primary);
  font-size: 1.75rem;
}

.article-content h3 {
  margin: 2rem 0 1rem;
  color: var(--primary);
  font-size: 1.4rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content strong {
  color: var(--primary);
  font-weight: 600;
}

.article-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
  margin-top: 3rem;
  background: var(--bg-alt);
}

.back-to-news {
  margin: 0;
}

/* Single News Article */
.single-news-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.article-hero-image {
  position: static !important;
  margin: 2rem auto;
  max-width: 400px; /* Reduced from 500px */
  text-align: center;
}

.article-hero-image img {
  width: 100%;
  height: auto;
  max-height: 300px; /* Add max height constraint */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.article-content {
  line-height: 1.8;
  font-size: 1.1rem;
  margin: 3rem 0;
}

.article-content h2,
.article-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

/* Responsive Single Article */
@media (max-width: 768px) {
  .article-header h1 {
    font-size: 2rem;
  }
  
  .article-hero-image {
    max-width: 100%;
  }
  
  .article-hero-image img {
    max-height: 200px;
  }
}
  
  .article-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .article-hero-image img {
    width: 250px;
    height: 250px;
  }
  
  .article-content {
    font-size: 1.05rem;
  }
}

/* Fixed Professional Pages Styling */

/* Hero Sections */
.hero-section-content {
  margin: 3rem 0;
}

.hero-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-text h1 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 0;
}

.hero-image-container {
  display: flex;
  justify-content: center;
}

/* Removed conflicting hero-image styling that was adding gray border */

.hero-image.professional {
  max-width: 350px;
}

/* Content Sections */
.content-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
  margin: 3rem 0;
}

/* Removed - using unified content-image styling above */
}

/* Pillars/Topics/Services/Challenges Containers */
.pillars-container, .topics-container, .services-container, .challenges-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

/* Removed - using canonical card system below */

/* Removed - using canonical card definitions above */

/* Engagement Cards */
.engagement-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

/* Removed duplicate - consolidated below */

.engagement-header {
  background: var(--primary);
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.engagement-card.featured .engagement-header {
  background: var(--accent);
}

.engagement-header h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.engagement-duration {
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 500;
}

.engagement-content {
  padding: 1.5rem;
}

.engagement-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.engagement-content p:last-child {
  margin-bottom: 0;
}

/* Methodology Section */
.methodology-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

/* Removed duplicate - using horizontal workflow above */

.methodology-image img {
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border: 2px solid var(--border);
  max-width: 100%;
  height: auto;
}

/* Format Lists */
.format-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.format-item {
  padding: 1rem 1.5rem;
  background: var(--bg-alt);
  border-radius: 10px;
  border-left: 4px solid var(--accent);
}

.languages-section {
  background: var(--bg-alt);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.languages-section h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

/* FAQ Container */
.faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.faq-item {
  background: var(--bg-alt);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.faq-item h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.faq-item p {
  margin: 0;
  line-height: 1.6;
}

/* Link Grid */
.link-grid {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.link-card-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-align: center;
}

.link-card-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-decoration: none;
}

.link-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.link-text h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.link-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.link-text h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.link-text p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Removed duplicate - using primary version above */

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

/* Responsive Design for Professional Pages */
@media (max-width: 768px) {
  .hero-split, .content-section, .methodology-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-text h1 {
    font-size: 2.25rem;
  }
  
  .pillars-container, .topics-container, .services-container, .challenges-container {
    grid-template-columns: 1fr;
  }
  
  .engagement-container, .faq-container {
    grid-template-columns: 1fr;
  }
  
  .link-card-item {
    flex-direction: column;
    text-align: center;
  }
  
  .methodology-step {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* DESKTOP TYPOGRAPHY SCALE - Professional, not mobile-ish */
@media (min-width: 1024px) {
  .about .page-content, 
  .speaking .page-content, 
  .consulting .page-content, 
  .contact .page-content, 
  .research .page-content,
  .team .page-content {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* Card text scaling on desktop */
  .pillar-card p, .topic-card p, .service-card p, .challenge-card p,
  .contact-card p, .research-card p, .link-card-item p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  /* Keep headings strong but not oversized */
  .pillar-card h3, .topic-card h3, .service-card h3, .challenge-card h3,
  .contact-card h3, .research-card h3, .link-card-item h3 {
    font-size: 1.1rem;
  }
}

.about .card, .about .pillar-card, .about .link-card-item,
.speaking .card, .speaking .topic-card, .speaking .service-card,
.consulting .card, .consulting .service-card, .consulting .engagement-card,
.contact .card, .contact .contact-option,
.research .card, .research .research-card {
  padding: 1.5rem;
}

.about .pillars-grid, .about .link-grid,
.speaking .topics-grid, .speaking .services-grid,
.consulting .services-grid, .consulting .engagement-grid,
.contact .contact-options,
.research .research-grid {
  gap: 1.25rem;
  margin: 1.5rem 0;
}

/* Professional Image Styling for Markdown Images */
.page-content img {
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border: 2px solid var(--border);
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
  display: block;
}

/* About, Speaking, Consulting Page Specific Styling */
.page-content h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.page-content h2 {
  font-size: 2rem;
  color: var(--primary);
  margin: 3rem 0 1.5rem;
  text-align: center;
}

.page-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 2rem 0 1rem;
}

.page-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.page-content strong {
  color: var(--primary);
  font-weight: 600;
}

/* Professional Link Styling */
.page-content a[href^="/"] {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin: 0.5rem 0;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-content a[href^="/"]:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* Service/Topic Cards as Sections */
.page-content h3 {
  background: var(--bg-alt);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0 1rem;
  font-size: 1.25rem;
  color: var(--primary);
}

.page-content h3 + p {
  margin-top: -1rem;
  padding: 0 1.5rem 1.5rem;
  background: var(--bg-alt);
  border-radius: 0 0 12px 12px;
  margin-bottom: 2rem;
}

/* Center content for professional look */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

/* Image sizing for different contexts */
.page-content img[alt*="SMART Research Process"],
.page-content img[alt*="Healthcare AI Strategy"],
.page-content img[alt*="SMART Speaking Engagements"] {
  max-width: 400px;
  margin: 2rem auto;
}

.page-content img[alt*="Speaking Formats"],
.page-content img[alt*="SMART Research Methods"],
.page-content img[alt*="SMART Methodology"] {
  max-width: 350px;
  margin: 1.5rem auto;
}

/* Engagement Models Special Styling */
.page-content h3:contains("⭐") {
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  color: white;
  border-left: none;
}

/* FAQ Styling */
.page-content h2 + p + p strong {
  display: block;
  background: var(--bg-alt);
  padding: 1rem 1.5rem 0.5rem;
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
  margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .page-content {
    padding: 1rem;
  }
  
  .page-content h1 {
    font-size: 2rem;
  }
  
  .page-content h2 {
    font-size: 1.75rem;
  }
  
  .page-content img {
    max-width: 100% !important;
  }
}
/* DESKTOP-FIRST LAYOUT FIXES */

/* Update container for better desktop experience */
.container { 
  max-width: 1280px; 
  margin: 0 auto; 
  padding: 0 2rem; 
}

/* Improved responsive breakpoints */
:root {
  --bp-sm: 640px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
}

/* DESKTOP GRID SYSTEMS (≥1024px) */
@media (min-width: 1024px) {
  /* News feed inherits base single-column layout */
  
  /* Team grid - 3 columns on desktop with max-width container */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Smart card grids - responsive 4-card behavior */
  .pillars-grid, .link-grid, .topics-grid, .services-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* 4 cards: very wide = 4 columns, medium = 2x2, never 3+1 */
  @media (min-width: 1400px) {
    .pillars-grid, .link-grid, .topics-grid, .services-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  @media (min-width: 1024px) and (max-width: 1399px) {
    .pillars-grid, .link-grid, .topics-grid, .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* 3 cards: wide = 3 columns, small = 2 top + 1 centered */
  .challenges-grid, .contact-options {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  @media (min-width: 1024px) {
    .challenges-grid, .contact-options {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (min-width: 768px) and (max-width: 1023px) {
    .challenges-grid, .contact-options {
      grid-template-columns: repeat(2, 1fr);
    }
    
    /* Center the third card under first two */
    .challenges-grid > :nth-child(3),
    .contact-options > :nth-child(3) {
      grid-column: 1 / -1;
      max-width: 50%;
      margin: 0 auto;
    }
  }
  
  /* Team member cards - broader, not taller */
  .team-member {
    height: auto;
    max-height: 300px;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
  }
  
.team-member-photo, .member-photo {
    width: 40% !important;
    max-width: 85px !important;
    height: 95px !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 8px !important;
    margin: 0 auto 0.15rem !important;
    display: block !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
  }
  
  /* Research grid inherits base single-column layout */
  
  /* Grid behavior handled by smart responsive system */
  
  .engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
  }
  
  /* Let pillars/topics/services use responsive auto-fit */
  
  .engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  /* Card grid - 3 columns */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* EXTRA LARGE DESKTOP (≥1280px) */
@media (min-width: 1280px) {
  .container {
    padding: 0 3rem;
  }
  
  /* Team grid - 4 columns on very wide screens */
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* TABLET (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .research-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .news-feed-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .team-grid,
  .card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  /* Contact options - handled by smart responsive system above */
}

/* CANONICAL CARD SYSTEM - "How We Work" Style Applied Everywhere */
.pillar-card, .topic-card, .service-card, .challenge-card, .engagement-card,
.contact-card, .link-card-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

/* Icons in canonical cards - centered */
.pillar-icon, .topic-icon, .service-icon, .challenge-icon, .contact-icon, .link-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

/* Headings in canonical cards - centered */
.pillar-card h3, .topic-card h3, .service-card h3, .challenge-card h3,
.contact-card h3, .link-card-item h3 {
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.25rem;
  text-align: center;
}

/* Body text in canonical cards - centered */
.pillar-card p, .topic-card p, .service-card p, .challenge-card p,
.contact-card p, .link-card-item p {
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* Canonical card hover - consistent across all card types */
.pillar-card:hover, .topic-card:hover, .service-card:hover, .challenge-card:hover,
.contact-card:hover, .link-card-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.topic-icon, .service-icon, .challenge-icon, .contact-icon {
  color: var(--accent);
  margin-bottom: 1rem;
  align-self: center;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 1.75rem;
}

/* Engagement card special styling */
.engagement-card.featured {
  border-color: var(--accent);
  background: var(--bg-alt);
  position: relative;
}

.engagement-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--accent);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.engagement-duration {
  color: white;
  font-weight: 500;
  opacity: 0.9;
  font-size: 0.9rem;
}

/* MOBILE (≤767px) */
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }
  
  /* Mobile: all card grids become single column EXCEPT team-grid */
  .news-feed-container,
  .research-grid,
  .card-grid,
  .contact-options,
  .services-grid,
  .topics-grid,
  .pillars-grid,
  .link-grid,
  .challenges-grid,
  .engagement-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  /* TEAM CARDS: Always stay fixed size and wrap */
  .team-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 1.5rem !important;
  }
  
  .team-member {
    width: 300px !important;
    height: 240px !important;
    min-width: 300px !important;
    max-width: 300px !important;
    min-height: 240px !important;
    max-height: 240px !important;
    flex-shrink: 0 !important;
    padding: 0.1rem 1.2rem 0.3rem 1.2rem !important;
  }
}

/* Status badges for projects */
.status-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.status-ongoing {
  background: #3b82f6;
  color: white;
}

.status-preparation {
  background: #fbbf24;
  color: #92400e;
}

.status-published {
  background: #10b981;
  color: white;
}

.status-published {
  background: #d1fae5;
  color: #065f46;
  border-left: 4px solid #10b981;
}

/* Languages box styling */
.languages-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin: 0 auto;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.languages-box h3 {
  margin-bottom: 0.75rem;
  color: var(--text);
}

/* Button styling improvements */
.btn-primary.btn-large {
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  border: none;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary.btn-large:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

/* Consulting button with dark blue background */
.btn-consulting {
  background: #1e3a8a;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  border: none;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.btn-consulting:hover {
  background: #1e40af;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 58, 138, 0.4);
  text-decoration: none;
}

/* Professional icons instead of emojis */
.icon-independent::before { content: "🔬"; }
.icon-evidence::before { content: "📊"; }
.icon-workflow::before { content: "🏥"; }
.icon-cost::before { content: "💰"; }

/* Standardized news author display */
.news-author {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.news-author-compact {
  font-size: 0.8rem;
  color: var(--text-light);
}
/* Team page fixes */
.team-group-photo {
  display: block;
  margin: 2rem auto;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border: 2px solid var(--border);
}

/* Removed duplicate - using responsive definition above */

/* Removed - using unified definition above */

/* Removed - using unified team-grid system */

/* Removed - using unified team member system */

@media (min-width: 1024px) {
  .collaborators-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
