/* 🔹 Hero баннер */
.mv-hero-banner {
  background: linear-gradient(135deg, #f5f7fb, #ffffff);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid #e7ecf7;
}
.mv-hero-banner h1 {
  font-size: clamp(32px, 5vw, 46px);
  color: #1d5789;
  margin-bottom: 12px;
}
.mv-hero-banner .mv-subtitle {
  font-size: 18px;
  color: var(--mv-muted);
  margin-bottom: 20px;
}

/* 🔹 Бейдж категорий */
.mv-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--mv-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 8px;
}
.mv-badge--accent {
  background: var(--mv-accent);
}

/* 🔹 Ховер карточек */
.mv-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(15, 86, 217, 0.18);
}

/* 🔹 Футер CTA */
.mv-footer-cta {
  background: #1d5789;
  text-align: center;
  padding: 50px 20px;
  color: #fff;
}
.mv-footer-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(22px, 5vw, 32px);
}
.mv-footer-cta .mv-btn {
  font-size: 18px;
}

/* 🔹 Адаптив */
@media (max-width: 1020px) {
  .mv-articles .mv-main {
    display: flex;
    flex-direction: column;
  }
  .mv-articles .mv-aside {
    order: 2;
    margin-top: 30px;
  }
  .mv-articles .mv-cards {
    order: 1;
  }
}
@media (max-width: 560px) {
  .mv-articles .mv-hero-banner {
    padding: 40px 15px;
  }
  .mv-articles .mv-hero-banner h1 {
    font-size: 28px;
  }
  .mv-articles .mv-footer-cta h2 {
    font-size: 20px;
  }
  .mv-articles .mv-btn {
    width: 100%;
    text-align: center;
  }
}
