/* Premium media/logo polish */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -.04em;
}
.brand img {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 122, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.brand span {
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  background: none !important;
  color: inherit !important;
  margin-right: 0 !important;
  display: inline !important;
}
.brand.big {
  gap: 14px;
}
.brand.big img {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(0, 122, 255, 0.2);
}
.hero-art {
  position: relative;
  margin: 20px 0 22px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 11, 12, 0.8));
  pointer-events: none;
}
.hero-art img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}
