/* =========================
   STICKY BAR GLOBAL
   ========================= */

.stickybar{
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.stickybar__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
}

.stickybar__brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.stickybar__logo{
  height: 44px;
  width: auto;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.stickybar__text{
  min-width: 0;
}

.stickybar__name{
  font-weight: 700;
  font-size: 16.4px;
  line-height: 1.15;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stickybar__tagline{
  font-size: 15px;
  color: #666;
  margin-top: 2px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* supaya konten tidak menempel ke header */
.page{
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 18px 60px;
}

/* =========================
   TABLET
   ========================= */
@media (max-width: 992px){
  .stickybar__inner{
    padding: 10px 16px;
  }

  .stickybar__brand{
    gap: 10px;
  }

  .stickybar__logo{
    height: 38px;
  }

  .stickybar__name{
    font-size: 12.5px;
  }

  .stickybar__tagline{
    font-size: 11px;
  }

  .page{
    padding: 20px 16px 50px;
  }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 768px){
  .stickybar__inner{
    padding: 9px 14px;
  }

  .stickybar__brand{
    gap: 8px;
    width: 100%;
  }

  .stickybar__logo{
    height: 32px;
  }

  .stickybar__text{
    flex: 1 1 auto;
    min-width: 0;
  }

  .stickybar__name{
    font-size: 11.5px;
    line-height: 1.15;
  }

  .stickybar__tagline{
    font-size: 10px;
    line-height: 1.2;
  }

  .page{
    padding: 18px 14px 44px;
  }
}

/* =========================
   HP KECIL
   ========================= */
@media (max-width: 480px){
  .stickybar__inner{
    padding: 8px 12px;
  }

  .stickybar__brand{
    gap: 7px;
  }

  .stickybar__logo{
    height: 28px;
  }

  .stickybar__name{
    font-size: 10.5px;
  }

  .stickybar__tagline{
    font-size: 9px;
    margin-top: 1px;
  }

  .page{
    padding: 16px 12px 40px;
  }
}