/*
 * Restrained brand integration for the existing JFD editorial theme.
 * The layout, typography, navigation and component dimensions stay unchanged.
 */

.jfd-brand__mark {
  background: url("jfd-brand-mark-dark-v1.png") center / contain no-repeat;
  border: 0;
  border-radius: 0;
  color: transparent;
  flex: 0 0 2.45rem;
  font-size: 0;
  overflow: hidden;
  transition: filter 180ms ease, transform 180ms ease;
  width: 2.45rem;
}

.jfd-brand:hover .jfd-brand__mark {
  filter: drop-shadow(0 0 0.45rem rgba(124, 209, 217, 0.22));
  transform: translateY(-1px);
}

.jfd-hero .jfd-kicker::before {
  background: linear-gradient(
    90deg,
    rgba(124, 209, 217, 0.28) 0%,
    var(--jfd-sky) 72%,
    var(--jfd-signal) 72%,
    var(--jfd-signal) 100%
  );
  height: 2px;
  opacity: 1;
  width: 2.75rem;
}

.jfd-altimeter {
  /*
   * Keep the portrait editorial and unobstructed. The nearby credential
   * labels already provide the useful career context at every viewport.
   */
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .jfd-brand__mark {
    transition: none;
  }
}
