/* ===== Hero-тайтл ===== */
.abas-info-hero {
  position: relative;
  width: 100%;
  margin-top: -72px;
  padding-top: 72px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1d45 0%, #1a2a5e 30%, #243674 60%, #2e4a8a 100%);
}

.abas-info-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 75% 15%, rgba(100,140,255,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 85%, rgba(60,100,200,0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,0.03) 0%, transparent 40%);
  pointer-events: none;
}

.abas-info-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 56px 40px;
}

.abas-info-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
  text-align: center;
}

/* ===== Breadcrumbs ===== */
.abas-info-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}

.abas-info-breadcrumbs a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  transition: color 0.2s;
}

.abas-info-breadcrumbs a:hover {
  color: #fff;
}

.abas-info-breadcrumbs-sep {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .abas-info-hero-inner {
    padding: 40px 20px 36px 20px;
  }
  .abas-info-title {
    font-size: 1.6rem;
  }
  .abas-info-breadcrumbs {
    font-size: 0.8rem;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.6;
  }
}
