body {
  font-family: "Poppins", sans-serif;
  color: #222;
  margin: 0;
  background: #fff;
}

/* ===== HERO ===== */
.hero-heading-balanced {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 68px;
  color: #fff;
  text-align: center;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 15px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-heading-balanced span {
  color: #9e1212;
  font-weight: 800;
  position: relative;
}

.hero-heading-balanced span::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #9e1212;
}

.hero-subtext-balanced {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #f0f0f0;
  font-weight: 300;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Efect de apariție smooth */
.hero-heading-balanced,
.hero-subtext-balanced {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpBalanced 1s ease-out forwards;
}

.hero-subtext-balanced {
  animation-delay: 0.2s;
}

@keyframes fadeUpBalanced {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .hero-heading-balanced {
    font-size: 42px;
    padding: 0 20px;
  }
  .hero-subtext-balanced {
    font-size: 15px;
    padding: 0 20px;
  }
}

/* ===== ARTICLES ===== */
.blog-articles {
  background-color: #f9f9f9;
  padding: 80px 20px;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Featured article */
.featured-article {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  margin-bottom: 60px;
}

.featured-article img {
  flex: 1 1 50%;
  width: 100%;
  object-fit: cover;
}

.featured-content {
  flex: 1 1 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content h2 {
  font-size: 28px;
  color: #8a0000;
  margin-bottom: 20px;
}

.featured-content p {
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn-read {
  color: #fff;
  background-color: #8a0000;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  align-self: flex-start;
  transition: background-color 0.3s;
}

.btn-read:hover {
  background-color: #b30000;
}

/* Grid articles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card h3 {
  font-size: 20px;
  color: #333;
  margin: 20px;
}

.blog-card p {
  margin: 0 20px 20px;
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
}

.blog-card .read-more {
  color: #8a0000;
  text-decoration: none;
  font-weight: 500;
  margin: 0 20px 20px;
  transition: color 0.3s;
}

.blog-card .read-more:hover {
  color: #b30000;
}

/* ===== CTA ===== */
.blog-cta {
  background: #8a0000;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.blog-cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.blog-cta p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.blog-cta .btn {
  background: #fff;
  color: #8a0000;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s;
}

.blog-cta .btn:hover {
  background: #b30000;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .featured-article {
    flex-direction: column;
  }

  .featured-content {
    padding: 30px 20px;
  }

  .blog-hero h1 {
    font-size: 48px;
  }
}
