/* ==== custom brand lockup: icon + "Sankalp" wordmark ==== */
.brand-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.brand-logo__icon {
  height: 36px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.brand-logo__text {
  font-family: var(--nunito);
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--primary-color);
  white-space: nowrap;
}
.brand-logo__text--light {
  color: var(--white);
}

@media only screen and (min-width: 768px) {
  .header .brand-logo__icon {
    height: 44px;
  }
  .header .brand-logo__text {
    font-size: 28px;
  }
}
