
.header {
  width: 90%;

  max-width: 1000px;
  padding: 2.5rem 2rem;
  border-radius: 30px;
  background: var(--bg-color);
  box-shadow: var(--extruded-shadow);

  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}

.header-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.infobox {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 1rem 1.75rem;
  border-radius: 20px;

  background: var(--bg-color);
  box-shadow: var(--inset-shadow);

  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
  letter-spacing: 0.01em;
}