/* ========================
   HEADER
======================== */
.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, var(--primary), var(--highlight));
  color: white;
  padding: 2rem var(--spacing);
  flex-wrap: wrap;
  gap: 1rem;
}

.header-logo img {
  max-height: 80px;
  width: auto;
}

.header-text {
  flex: 1;
  min-width: 200px;
}

.logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
}
