@charset "UTF-8";

/* ==========================================================================
   Header
   ========================================================================== */
.l-header-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: 0px 2px 18px 0px rgba(111, 111, 111, 0.34);;
}

.l-header-custom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1448px;
  margin: 0 auto;
}

.l-header-custom__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.l-header-custom__logo img {
  width: 280px;
  height: auto;
  object-fit: contain;
}

.l-header-custom__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.l-header-custom__user-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 69px;
  height: 51px;
}

.l-header-custom__user-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
  .l-header-custom__inner {
    padding: 8px 16px;
  }

  .l-header-custom__logo img {
    width: 180px;
  }

  .c-btn--cta-header {
    width: 160px;
    height: 44px;
    font-size: 14px;
  }

  .l-header-custom__user-icon {
    width: 50px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .l-header-custom__inner {
    padding: 6px 12px;
  }

  .l-header-custom__logo img {
    width: 140px;
  }

  .c-btn--cta-header {
    width: 120px;
    height: 36px;
    font-size: 12px;
  }

  .l-header-custom__user-icon {
    width: 40px;
    height: 30px;
  }

  .l-header-custom__actions {
    gap: 8px;
  }
}
