.blog-post-page {
  overflow: clip;
  background: var(--paper);
}

.blog-post-hero {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(255, 241, 155, 0.45), transparent 28%),
    radial-gradient(circle at top right, rgba(248, 132, 63, 0.18), transparent 24%),
    var(--paper);
  padding: 92px 0 40px;
  overflow: hidden;
}

.blog-post-hero__content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding-inline: 24px;
}

.blog-post-hero__eyebrow {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-post-hero__content h1 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.06;
  font-weight: 700;
}

.blog-post-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.blog-post-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-post-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(61, 69, 170, 0.12);
}

.blog-post-author__label {
  display: block;
  font-size: 0.82rem;
  opacity: 0.65;
  margin-bottom: 2px;
}

.blog-post-hero__date {
  font-size: 0.96rem;
  font-weight: 600;
  opacity: 0.75;
}

.blog-post-hero__shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

.blog-post-hero__shape--one {
  width: 180px;
  top: 44px;
  left: -48px;
}

.blog-post-hero__shape--two {
  width: 132px;
  top: 52px;
  right: -34px;
}

.blog-post-hero__shape--three {
  width: 108px;
  bottom: 12px;
  left: 8%;
}

.blog-post-content-section {
  background: linear-gradient(to bottom, var(--paper) 0%, #f7f4ff 100%);
  padding: 28px 0 96px;
}

.blog-post-card {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.84);
  border: 2px solid rgba(61, 69, 170, 0.12);
  border-radius: 30px;
  box-shadow: 0 16px 36px rgba(18, 18, 18, 0.08);
  overflow: hidden;
  position: relative;
}

.blog-post-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--blue) 0%,
    var(--orange) 35%,
    var(--red) 65%,
    var(--yellow) 100%
  );
  z-index: 2;
}

.blog-post-card__image-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(61, 69, 170, 0.05);
}

.blog-post-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-card__body {
  padding: 34px 34px 32px;
}

.blog-post-card__body h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

.blog-post-card__body h2:first-child {
  margin-top: 0;
}

.blog-post-card__body p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.blog-post-card__body p:last-child {
  margin-bottom: 0;
}

.blog-post-cta {
  font-weight: 600;
}

.blog-post-cta a {
  color: var(--blue);
  text-decoration: none;
}

.blog-post-cta a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .blog-post-hero {
    padding: 72px 0 28px;
  }

  .blog-post-hero__content {
    max-width: 680px;
    padding-inline: 20px;
  }

  .blog-post-hero__shape--one {
    width: 120px;
    top: 34px;
    left: -26px;
    opacity: 0.72;
  }

  .blog-post-hero__shape--two {
    width: 100px;
    top: 34px;
    right: -20px;
    opacity: 0.72;
  }

  .blog-post-hero__shape--three {
    width: 72px;
    bottom: 12px;
    left: 4%;
    opacity: 0.68;
  }
}

@media (max-width: 640px) {
  .blog-post-hero {
    padding: 64px 0 24px;
  }

  .blog-post-hero__content {
    max-width: 100%;
    padding-inline: 20px;
  }

  .blog-post-hero__content h1 {
    font-size: clamp(2.2rem, 9vw, 4rem);
    line-height: 0.96;
  }

  .blog-post-hero__shape--one {
    width: 92px;
    top: 18px;
    left: -28px;
    opacity: 0.58;
  }

  .blog-post-hero__shape--two {
    width: 86px;
    top: 18px;
    right: -22px;
    opacity: 0.58;
  }

  .blog-post-hero__shape--three {
    width: 58px;
    bottom: 8px;
    left: 2%;
    opacity: 0.54;
  }

  .blog-post-card {
    border-radius: 24px;
  }

  .blog-post-card__body {
    padding: 24px 18px 22px;
  }

  .blog-post-card__body p {
    font-size: 1rem;
  }
}

@media (max-height: 760px) {
  .blog-post-hero {
    padding-top: 64px;
    padding-bottom: 24px;
  }

  .blog-post-hero__shape--one {
    width: 110px;
    top: 22px;
    left: -20px;
    opacity: 0.65;
  }

  .blog-post-hero__shape--two {
    width: 100px;
    top: 18px;
    right: -18px;
    opacity: 0.65;
  }

  .blog-post-hero__shape--three {
    width: 70px;
    bottom: 8px;
    left: 6%;
    opacity: 0.6;
  }
}