
body {
  margin: 0;
  padding: 0;
}

/* Smooth scrolling for in-page navigation */
html {
  scroll-behavior: smooth;
}

/* Custom utility class: container to ensure consistent max width */
.container {
  max-width: 1200px;
}

/* Hover effect for navigation links */
nav a:hover {
  color: #0b66b2; /* matches brand blue */
}

/* Mobile menu transitions (optional) */
#mobileMenu {
  transition: all 0.3s ease-in-out;
}

/* Footer customization */
footer a:hover {
  color: #ffffff; /* brighter on hover */
}

/* Brand Color */
:root {
  --brand: #1e40af; /* Tailwind Blue-900 */
}

/* General Page Layout */
body {
  font-family: 'Inter', sans-serif;
  color: #374151; /* Tailwind gray-700 */
  background-color: #fff;
  line-height: 1.6;
}

/* Header and Navigation */
header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
header nav a {
  color: #374151;
  text-decoration: none;
  transition: color 0.3s;
}
header nav a:hover {
  color: #0e0318
}

/* Hero Section */
.bg-brand {
  background-color: var(--brand);
}
.bg-brand h1,
.bg-brand p {
  color: #ffffff;
}

/* Breadcrumb */
section nav a {
  color: #cbd5e1; /* Tailwind blue-200 */
}
section nav a:hover {
  text-decoration: underline;
}

/* Article Content */
main img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.prose h2 {
  color: var(--brand);
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.prose p {
  margin-bottom: 1rem;
}

/* Related Posts */
.related-posts a {
  transition: transform 0.3s, box-shadow 0.3s;
}
.related-posts a:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Back Button */
.back-btn {
  display: inline-block;
  background-color: var(--brand);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  transition: background-color 0.3s;
}
.back-btn:hover {
  background-color: #1e3a8a; /* Darker blue */
}

/* Footer */
footer {
  background-color: #111827; /* Tailwind gray-900 */
  color: #d1d5db; /* Tailwind gray-300 */
  font-size: 0.875rem;
}
/* Force all team images to center on their card */
.team-card {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
