.section.tagline {
  margin: 0;
  padding: 60px 20px;  /* padding lebih kecil di layar kecil */
  width: 100%;
  color: #111;
  min-height: 100vh;   
  display: flex;
  flex-direction: column;
  justify-content: center;  
}

.subheading {
  font-size: clamp(12px, 2vw, 16px); /* fleksibel */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555;
  margin-bottom: 15px;
}

.heading {
  font-size: clamp(36px, 10vw, 140px); /* skala otomatis */
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  font-family: 'Manrope', sans-serif;
  word-break: break-word; /* teks nggak keluar layar */
}

.with-icons {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 3vw, 20px);
  flex-wrap: wrap; /* biar turun ke bawah kalau sempit */
}

.icon-box {
  display: inline-block;
  width: clamp(100px, 25vw, 274px);  
  height: clamp(40px, 10vw, 100px);  
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  background-color: #e0e0e0;
}

.icon-box.left {
  background-image: url('/asset/img/about1.jpg');
}

.icon-box.right {
  background-image: url('/asset/img/about2.jpg');
  margin-bottom: clamp(20px, 10vw, 120px);
}

.section.tagline hr {
  border: none;
  border-top: 1px solid #aaa;
  margin-top: 20px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .heading {
    font-size: clamp(32px, 8vw, 90px);
  }
}

@media (max-width: 768px) {
  .section.tagline {
    padding: 40px 15px;
    text-align: center;
  }

  .with-icons {
    justify-content: center; 
  }

  .icon-box {
    width: 180px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .heading {
    font-size: clamp(24px, 10vw, 48px);
  }

  .icon-box {
    width: 140px;
    height: 50px;
  }

  .with-icons {
    flex-direction: column;
    gap: 10px;
  }
}
