/* BOSFOR — /about page */
.about {
  padding: calc(var(--navx-h, 64px) + clamp(36px, 6vh, 72px)) var(--pad, 24px) clamp(24px, 3vh, 40px);
  min-height: 0;
}
.about__inner {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 52ch) minmax(0, 1.45fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
  font-family: var(--serif);
  font-size: clamp(17px, 1.7vw, 23px);
}
.about__copy {
  min-width: 0;
}
.about__klabel {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.about__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(42px, 4.4vw, 80px);
  line-height: .98;
  letter-spacing: -.01em;
  margin: clamp(10px, 1.4vh, 18px) 0 0;
}
.about__lead {
  font: inherit;
  line-height: 1.4;
  color: var(--ink-90);
  margin: clamp(12px, 1.8vh, 20px) 0 0;
}
.about__note {
  font-family: var(--sans, inherit);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-60);
  margin: 14px 0 0;
}
.about__note b {
  color: var(--ink-90);
  font-weight: 500;
  font-family: var(--serif);
  font-size: 1.05em;
}
.about__gallery {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 11;
  min-height: clamp(280px, 42vh, 560px);
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  align-self: stretch;
}
.about__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s var(--ease, ease);
}
.about__slide.is-active { opacity: 1; }
.about__dots {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  gap: 4px;
  padding: 12px 12px 0;
}
.about__dot {
  flex: 1;
  padding: 6px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.about__dot::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, .32);
  transition: background .3s;
}
.about__dot.is-active::after { background: #fff; }
.about__dot:hover::after { background: rgba(255, 255, 255, .65); }
.about__nav {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  gap: 6px;
}
.about__navbtn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(0, 0, 0, .35);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  transition: background .3s, color .3s;
}
.about__navbtn:hover { background: #fff; color: #000; }

/* фид главной: по центру, высота как раньше (зазор даёт #feedList).
   Якорь /#about — сразу после блока выше, под шапкой, чтобы лого не наезжало на «Кто мы». */
.about--feed {
  padding: 0 var(--pad, 24px);
  scroll-margin-top: calc(var(--topbar-h) + var(--navx-h) + 100px);
}

/* ---------- Team ---------- */
.team {
  padding: clamp(24px, 3vh, 40px) var(--pad, 24px) clamp(72px, 12vh, 140px);
}
.team__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0;
}
.team__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(42px, 4.4vw, 80px);
  line-height: .98;
  letter-spacing: -.01em;
  margin: 0 0 clamp(28px, 4vh, 48px);
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3.5vw, 48px) clamp(20px, 2.5vw, 40px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.team__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}
.team__avatar {
  width: min(100%, 220px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #1a1a1a;
  display: grid;
  place-items: center;
  flex: none;
}
.team__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team__initials {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -.02em;
  color: rgba(255, 255, 255, .55);
  line-height: 1;
  user-select: none;
}
.team__name {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink-90);
}
.team__role {
  margin: 6px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-40);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .about__gallery {
    margin-top: clamp(20px, 3vh, 30px);
  }
  .team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }
  .team__avatar {
    width: min(100%, 180px);
  }
}

@media (max-width: 480px) {
  .team__grid {
    grid-template-columns: 1fr 1fr;
  }
}
