.lc-shell {
  min-height: 0;
  padding: 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(79, 120, 175, 0.24), transparent 34%),
    linear-gradient(120deg, #0c1726, #172f4d 64%, #204b69);
}

.lc-shell-inner {
  width: min(1180px, calc(100% - 36px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}

.lc-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.lc-brand:hover,
.lc-brand:focus-visible {
  color: #fff;
}

.lc-brand img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.95;
}

.lc-brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
  line-height: 1.12;
}

.lc-brand-copy strong {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.01em;
}

.lc-brand-copy span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 650;
}

.lc-brand-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 650;
}

.lc-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  flex-wrap: wrap;
}

.lc-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.lc-nav a:hover,
.lc-nav a:focus-visible,
.lc-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 720px) {
  .lc-shell-inner {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0 10px;
  }

  .lc-brand img {
    width: 44px;
    height: 44px;
  }

  .lc-brand-copy strong {
    font-size: 17px;
  }

  .lc-brand-copy span {
    display: none;
  }

  .lc-brand-copy small {
    font-size: 9px;
  }

  .lc-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .lc-nav a {
    min-width: 0;
    justify-content: center;
    padding-inline: 6px;
    text-align: center;
    font-size: 12px;
    line-height: 1.2;
  }
}
