.blog-hero {
  width: 100%;
  margin-bottom: 64px;
}

.blog-hero-section-label {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: #2A3A50;
  margin: 0 0 24px 0;
}

.blog-hero-link {
  display: block;
  text-decoration: none;
}

.blog-hero-image {
  position: relative;
  width: 100%;
  height: 362px;
  border-radius: 16px;
  overflow: hidden;
}

.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.blog-hero:hover .blog-hero-image img {
  transform: scale(1.05);
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.blog-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  line-height: 24px;
  align-self: flex-start;
}

.blog-hero-title {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 56px;
  margin: 0;
  color: #fff;
}

.blog-hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
}

.blog-hero-separator {
  font-size: 12px;
}

/* Tablet */
@media (max-width: 1024px) {
  .blog-hero-image {
    height: 300px;
  }

  .blog-hero-content {
    padding: 32px;
  }

  .blog-hero-title {
    font-size: 36px;
    line-height: 44px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .blog-hero {
    margin-bottom: 48px;
  }

  .blog-hero-image {
    height: 240px;
  }

  .blog-hero-content {
    padding: 24px;
    gap: 12px;
  }

  .blog-hero-title {
    font-size: 24px;
    line-height: 30px;
  }

  .blog-hero-meta {
    font-size: 14px;
  }
}
