#blog-carousel {
  padding: 5rem 0;
  overflow: hidden;
}
#blog-carousel h2 {
  font-size: 3.2em;
  line-height: 1em;
  padding: 0 1rem;
  text-align: center;
}
.blog-item {
  margin: 2rem 1rem;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.blog-item-content {
  padding: 1rem;
}
.blog-item h3 {
  color: #00a2ff;
}
.blog-item p {
  margin-bottom: 0;
}
.blog-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
