/* ==========================================================
   HEADER
========================================================== */

.header {
  margin-bottom: 1px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  gap: 8px;
}

.logo {
  width: 54px;
  height: 54px;

  object-fit: contain;

  user-select: none;
}

.brand-text {
  max-width: 560px;
}

.brand-title {
  margin: 0;

  font-size: 2rem;

  font-weight: 700;

  letter-spacing: -0.04em;

  line-height: 1;

  color: var(--text);
}

.header-message {
  margin-top: 4px;

  font-size: 0.96rem;

  line-height: 1.45;

  color: var(--text-soft);
}

.header-message strong {
  color: var(--text);

  font-weight: 600;
}
/* ----------------------------------------------------------
   Divider
---------------------------------------------------------- */

.header::after {
  content: "";

  display: block;

  width: 100%;

  height: 1px;

  margin-top: 14px;

  background: linear-gradient(
    to right,
    transparent,
    var(--border),
    transparent
  );
}

/* ----------------------------------------------------------
   Tablet
---------------------------------------------------------- */

@media (max-width: 900px) {
  .header {
    margin-bottom: 20px;
  }

  .logo {
    width: 64px;
    height: 64px;
  }

  .brand-title {
    font-size: 2rem;
  }

  .header-message {
    font-size: 0.97rem;
  }
}

/* ----------------------------------------------------------
   Mobile
---------------------------------------------------------- */

@media (max-width: 640px) {
  .header {
    margin-bottom: 18px;
  }

  .brand {
    gap: 10px;
  }

  .logo {
    width: 58px;
    height: 58px;
  }

  .brand-title {
    font-size: 1.75rem;
  }

  .header-message {
    margin-top: 6px;

    font-size: 0.94rem;

    line-height: 1.5;
  }

  .header::after {
    margin-top: 16px;
  }
}
