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

body {
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at top left, #d6e3f1 0, transparent 34%),
    linear-gradient(180deg, #f8f7f5 0%, #fbfaf8 100%);
  color: #3f3a36;
}

a {
  text-decoration: none;
  color: inherit;
}

.blog-header {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #e8e3dc;
  position: sticky;
  top: 0;
  z-index: 50;
}

.blog-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.blog-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
}

.blog-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.blog-nav-links,
.blog-nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  color: #6f685f;
}

.blog-nav-links a.active,
.blog-nav-links a:hover,
.blog-nav-actions a:hover {
  color: #4f7dae;
}

.nav-cta,
.primary-btn {
  background: linear-gradient(135deg, #8faed1, #6f95bf);
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 16px 35px rgba(143, 174, 209, 0.35);
  font-weight: 700;
}

.secondary-btn {
  background: #ffffff;
  color: #3f3a36;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #e8e3dc;
  font-weight: 700;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 24px;
}

.eyebrow {
  color: #6f95bf;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 14px;
}

.blog-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  min-height: 540px;
}

.blog-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

.blog-hero-content > p:not(.eyebrow) {
  max-width: 690px;
  color: #6f685f;
  font-size: 18px;
  line-height: 1.8;
}

.blog-hero-card {
  background: linear-gradient(145deg, #ffffff 0%, #f1f6fb 100%);
  border: 1px solid #e8e3dc;
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 30px 80px rgba(63, 58, 54, 0.12);
}

.blog-hero-card span,
.category {
  display: inline-flex;
  width: fit-content;
  background: #d6e3f1;
  color: #4f7dae;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.blog-hero-card h3 {
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.blog-hero-card p {
  color: #6f685f;
  line-height: 1.8;
  margin-bottom: 22px;
}

.blog-hero-card a,
.article-card a {
  color: #4f7dae;
  font-weight: 800;
}

.featured-section,
.blog-split,
.updates-section,
.cta-section {
  margin-top: 80px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-head h2,
.updates-section h2,
.cta-section h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 22px;
}

.article-card {
  background: #ffffff;
  border: 1px solid #e8e3dc;
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(63, 58, 54, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(63, 58, 54, 0.1);
}

.large-card {
  background:
    radial-gradient(circle at top right, #d6e3f1 0, transparent 40%),
    #ffffff;
}

.article-card h3 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.article-card p {
  color: #6f685f;
  line-height: 1.75;
  margin-bottom: 20px;
}

.blog-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.content-column {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #e8e3dc;
  border-radius: 34px;
  padding: 32px;
  box-shadow: 0 20px 55px rgba(63, 58, 54, 0.07);
}

.post-list {
  display: grid;
  gap: 14px;
}

.post-list article {
  background: #fbfaf8;
  border: 1px solid #e8e3dc;
  border-radius: 22px;
  padding: 20px;
}

.post-list h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.post-list p {
  color: #6f685f;
  line-height: 1.7;
  font-size: 14px;
}

.updates-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  background: #ffffff;
  border: 1px solid #e8e3dc;
  border-radius: 34px;
  padding: 42px;
  box-shadow: 0 20px 55px rgba(63, 58, 54, 0.07);
}

.updates-section p,
.cta-section p {
  color: #6f685f;
  line-height: 1.8;
  font-size: 16px;
}

.cta-section {
  text-align: center;
  background:
    radial-gradient(circle at top right, #d6e3f1 0, transparent 34%),
    #ffffff;
  border: 1px solid #e8e3dc;
  border-radius: 42px;
  padding: 64px 30px;
  box-shadow: 0 30px 80px rgba(63, 58, 54, 0.1);
}

.cta-section p {
  max-width: 720px;
  margin: 18px auto 0;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.blog-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 24px 44px;
  border-top: 1px solid #e8e3dc;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #6f685f;
}

.blog-footer strong {
  display: block;
  font-size: 22px;
  color: #3f3a36;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 600;
}

.footer-links a:hover {
  color: #4f7dae;
}

@media (max-width: 950px) {
  .blog-nav {
    flex-wrap: wrap;
  }

  .blog-nav-links,
  .blog-nav-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .blog-hero,
  .blog-split,
  .updates-section {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  main {
    padding: 42px 18px;
  }

  .blog-nav {
    padding: 16px 18px;
  }

  .blog-nav-links {
    display: none;
  }

  .blog-nav-actions {
    justify-content: space-between;
    gap: 10px;
  }

  .blog-hero h1 {
    font-size: 42px;
  }

  .blog-hero-content > p:not(.eyebrow) {
    font-size: 16px;
  }

  .blog-hero-card,
  .content-column,
  .updates-section,
  .cta-section {
    border-radius: 26px;
    padding: 26px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn,
  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .blog-footer {
    flex-direction: column;
  }
}