/* Blog Page Specific Styles */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* Blog uses a white header — just override colors, no structural changes */
.blog-header {
  background: var(--white, #fff) !important;
  border-bottom: 1px solid rgba(0,47,108,0.08);
  box-shadow: 0 2px 16px rgba(0,47,108,0.06);
}

/* On the blog page the header stays white even when scrolled */
.blog-header.scrolled {
  background: var(--white, #fff) !important;
  backdrop-filter: none;
  box-shadow: 0 2px 16px rgba(0,47,108,0.08);
}

/* Desktop nav links are navy on the blog page */
.blog-header nav:not(.mobile-menu) a {
  color: var(--navy, #002F6C);
}

.blog-header nav:not(.mobile-menu) a:hover {
  color: var(--orange, #FF6B00);
  background: rgba(0,47,108,0.05);
}

/* Logo shows in colour on blog page */
.blog-header .nav-logo img {
  filter: none;
  height: 38px;
}

/* Hamburger icon is navy on blog page */
.blog-header .menu-toggle .menu-icon {
  color: var(--navy, #002F6C);
}

/* Blog Intro */
.blog-intro {
  text-align: center;
  padding: 7rem 2rem 3rem;
  background: var(--white, #fff);
}

.blog-intro h2 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy, #002F6C);
  margin-bottom: 0.75rem;
}

.blog-intro p {
  font-size: 1.05rem;
  color: #4A4A4A;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Blog Grid */
.blog-entries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  padding: 2rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-post {
  background: #f5f7fa;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,47,108,0.07);
  border: 1px solid rgba(0,47,108,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-post:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,47,108,0.13);
  background: var(--navy, #002F6C);
}

.blog-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.blog-post:hover img {
  opacity: 0.85;
}

.blog-post-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-post h3 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy, #002F6C);
  margin-bottom: 0.6rem;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.blog-post:hover h3 {
  color: var(--white, #fff);
}

.blog-post p {
  font-size: 0.9rem;
  color: #5a6a7e;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
  transition: color 0.3s ease;
}

.blog-post:hover p {
  color: rgba(255,255,255,0.72);
}

.blog-post .btn-primary {
  align-self: flex-start;
  font-size: 0.88rem;
  padding: 0.55rem 1.2rem;
}

/* Coming Soon State */
.coming-soon-card {
  background: var(--white, #fff);
  border: 2px dashed rgba(0,47,108,0.15);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  grid-column: 1 / -1;
  max-width: 480px;
  margin: 2rem auto;
}

.coming-soon-card .coming-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,107,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--orange, #FF6B00);
}

.coming-soon-card h3 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy, #002F6C);
  margin-bottom: 0.6rem;
}

.coming-soon-card p {
  font-size: 0.95rem;
  color: #5a6a7e;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .blog-header {
    padding: 0 1.25rem;
  }

  .blog-intro {
    padding-top: 5.5rem;
  }

  .blog-entries {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem 4rem;
  }
}
