.hero-atf{
  background: var(--hero-bg, #032E48);
  color: var(--hero-text, #fff);
  padding: 80px;
  overflow:hidden;
  position relative;
  
}

.hero-atf__inner{
  max-width: min(100%, var(--hero-w, 1200px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;   /* заголовок + декор праворуч */
  align-items: center;
  gap: 48px;
  position: static;
}

/* Ліва частина з заголовком */
.hero-atf__title {
  margin: 0;
  max-width: 950px;
  color: #fff;
  font-weight: 400;
  font-size: 52px;
  line-height: 60px;
  letter-spacing:0;
}
.hero-atf__title strong{ font-weight: 800; }

/* Рамка навколо заголовка */
.hero-atf__title--boxed{
  display: inline-block;
}



.hero-atf__right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    right: 0px;
}

.hero-atf__art{
  width: 107px;
  height: auto;
  display: block;
}


.hero-atf__subtitle { 
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0%;
  margin-top: 40px;
}


/* Респонсів */
@media (max-width: 1024px){
  .hero-atf__inner{
    grid-template-columns: 1fr auto;
    gap: 32px;
    min-height: 420px;
  }
  .hero-atf__title{
    font-size: clamp(var(--hero-fs-m, 36px), 6vw, var(--hero-fs-d, 64px));
  }
  
  .hero-atf__title {
  max-width: 670px;
    font-size: 42px;
  }
  
}

@media (max-width: 870px){ 
  .hero-atf__right { 
    max-width: 70px;
  }
}

@media (max-width: 720px){
  .hero-atf { 
  padding:80px 20px !important;
  }
  
  .hero-atf__inner{
    grid-template-columns: 1fr;     /* стекаємо */
    text-align: left;
  }
  .hero-atf__right{
    justify-content: flex-start; 
    top:90px;
  }
  .hero-atf__art {
    width: 70px;
  }
  
  .hero-atf__title {
  max-width: 350px;
  font-size: 36px !important;
  line-height:48px !important;
  }
  
  .hero-atf__inner {
       min-height: 220px;
   }
}
  

