.blog-hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin: 40px auto;
  max-width: 1280px;
  width: calc(100% - 40px); /* Responsive margin */
}

.overlay {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  text-align: center;
  background: url('/assets/article-image.png') center/cover no-repeat;
}

.blog-hero-content {
  max-width: 720px;
  width: 100%;
  color: #fff;
  font-family: 'Inter', sans-serif;
  padding: 0 20px;
}

.blog-label {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.blog-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.blog-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 1rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.blog-newsletter-form input[type="email"] {
  padding: 12px 16px;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  width: 100%;
  box-sizing: border-box;
}

.blog-newsletter-form button {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 6px;
  background-color: #f2994a;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
}

.blog-newsletter-form button:hover {
  background-color: #e68a3e;
}

.blog-privacy {
  font-size: 0.75rem;
  color: #f3f3f3;
}

.blog-privacy a {
  color: #fff;
  text-decoration: underline;
}

/* Tablet Styles (768px - 1024px) */
@media screen and (min-width: 768px) {
  .blog-hero {
    margin: 60px auto;
    width: calc(100% - 80px);
  }
  
  .overlay {
    padding: 100px 40px;
  }
  
  .blog-newsletter-form {
    flex-direction: row;
  }
  
  .blog-newsletter-form input[type="email"] {
    width: 250px;
  }
  
  .blog-newsletter-form button {
    width: auto;
  }
}

/* Desktop Styles (1025px and up) */
@media screen and (min-width: 1025px) {
  .overlay {
    padding: 150px 60px;
  }
  
  .blog-title {
    font-size: 2.5rem;
  }
}