.hero-compact {
  padding-top: 0;
  padding-bottom: 123px;
}

.hero-compact .hero-shapes {
  left: -145px;
  top: 49px;
  width: 190px;
  height: 190px;
}

.hero-compact .hero-shapes-right {
  left: auto;
  right: -145px;
  top: -91px;
}

.hero-compact .hero-shape-circle {
  width: 156px;
  height: 156px;
}

.hero-compact .hero-shape-triangle {
  width: 112px;
  height: 112px;
}

.blog-back-link {
  display: inline-block;
  margin: 1.25rem 1.25rem 0;
}

.blog-page {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 4rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.blog-tile {
  display: flex;
  flex-direction: column;
  background: var(--card-light);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 30px rgba(31, 53, 181, 0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.blog-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(31, 53, 181, 0.16);
}

.blog-tile-image {
  width: 100%;
  height: 173px;
  position: relative;
  background: #ffe3ee;
  border-radius: 18px;
  overflow: hidden;
}

.blog-tile-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-tile-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.blog-tile-body h2 {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--blue);
  margin: 0 0 0.5rem;
}

.blog-tile-body p {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--blue);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
