.hero-featured-article-block {
  position: relative;
  overflow: hidden;
}

.hero-featured-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-featured-content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

.hero-featured-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-featured-text {
  max-width: 48rem;
  color: white;
}

.hero-featured-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.hero-featured-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-featured-excerpt {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.hero-featured-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  color: white;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: scale(1);
}

.hero-featured-button:hover {
  background-color: var(--hover-bg) !important;
  transform: scale(1.05);
  text-decoration: none;
  color: white;
}

/* Responsive */
@media (min-width: 640px) {
  .hero-featured-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .hero-featured-title {
    font-size: 3rem;
  }
  
  .hero-featured-excerpt {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-featured-container {
    padding: 0 2rem;
  }
}

@media (max-width: 640px) {
  .hero-featured-meta {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .hero-featured-separator {
    display: none;
  }
  
  .hero-featured-button {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }
}