

/* Start:/local/templates/Spoda/about/about.css?176346556019903*/
.about-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
}

.about-chip{
  display:grid;
  place-items:center;
  border-radius: 1.25rem;
  padding: 1.5rem 1rem;
  background:var(--belyy);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1rem;
  line-height: 96%;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--chernyy-osnovnoy);
  border:0;
  cursor:pointer;
  transition:background .25s ease-out, color .25s ease-out;
  text-decoration: none;
}

.about-chip.is-active{
  background:var(--cvet-brenda);
  color:var(--belyy);
}

@media (hover:hover){
  .about-chip:not(.is-active):hover{
    background:var(--servyy-osnovnoy);
    color:var(--chernyy-osnovnoy);
  }
}

.about-chip:focus-visible{
  outline:.125rem solid var(--cvet-brenda);
  outline-offset:.125rem;
}

@media (max-width:33.75rem){
  .about-tabs{
    flex-wrap:nowrap;
    overflow-x:auto;
    gap:.25rem;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width: none;
  }
  .about-chip{ scroll-snap-align:start; }
  .about-chip {
    border-radius: .75rem;
    padding: 1rem .75rem;
    font-weight: 400;
    font-size: .875rem;
    line-height: 96%;
    letter-spacing: -0.03em;
    text-wrap: nowrap;
  }
  
}


/* ========== Табы уже есть у тебя. Ниже — новые блоки. ========== */

/* Сетка блока-героя: индивидуальные gap’ы на каждый подблок */
.about-hero{ display:grid; }
.about-hero__grid{
  display:grid;
  row-gap: 2rem;              /* заголовок → галерея → текст */
}

/* Заголовок */
.about-title{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2.75rem;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--chernyy-osnovnoy);
}

/* Галерея */
.about-gallery{
  display:grid;
  row-gap: .75rem;              /* основной слайдер → превью */
}

.about-swiper-main{
  border-radius: 2.75rem;
  overflow: clip;
}
.about-swiper-main .swiper-slide{
  display:grid;
  place-items:center;

}
.about-swiper-main img{
  display:block; width:100%; height:auto; object-fit:cover;
}


.about-swiper-thumbs .swiper-slide{
  overflow: hidden;
}
.about-swiper-thumbs img{
  width:100%; height:100%; object-fit:cover; display:block;
}

/* Текст + кнопка */
.about-text{ display:grid; row-gap: 2rem; }

.about-text__body{
  display:grid; 
  max-height: 11.25rem;          /* свернутое состояние */
  overflow: hidden;
  row-gap: .75rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 136%;
  letter-spacing: -0.02em;
  color: var(--chernyy-osnovnoy);
}
.about-text__body[data-state="expanded"]{
  max-height: none;
}

.about-more{
  width: max-content;
  display:grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items:center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 136%;
  letter-spacing: -0.02em;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--chernyy-600);
  cursor: pointer;
  transition: opacity .25s ease-out;
  background: transparent;
  border: 0;
}
@media (hover:hover){
  .about-more:hover{ opacity: .7; }
}




/* Контейнер истории: заголовок ↔ текст = 2.25rem, текст ↔ кнопка = 2rem */
.about-story{ display:grid; row-gap:2rem; padding-top: 2rem;}
.about-story-head{ display:grid; row-gap:2.25rem; }

/* Сам текст — показываем 2 абзаца через анимируемую height */
.about-text{
  display:grid;
  overflow:hidden;           /* прячем остальное */
  height:auto;               /* JS выставит точную высоту */
  transition:height .35s ease;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 136%;
  letter-spacing: -0.02em;
  color: var(--chernyy-osnovnoy);
}

/* Кнопка */
.about-more{
  width:max-content;
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:max-content;
  align-items:center;
  gap:.5rem;
  border:0;
  background:transparent;
  color:var(--chernyy-600);
  cursor:pointer;
  text-decoration:underline;
  padding: 0;
  transition:opacity .25s ease-out;
}
@media (hover:hover){ .about-more:hover{ opacity:.7; } }

@media (max-width:33.75rem){  .about-text{ 
  font-weight: 400;
  font-size: 1rem;
  line-height: 150%;
  letter-spacing: -0.02em;
} 
}



.about-tables{
  display:grid;
  grid-template-columns: 1fr;
}
.about-tables__in{
  display:grid;
  row-gap: 2rem;
  padding-left: var(--container-padding, 1rem); 
  padding-right: 0;
}

.about-h2{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2.75rem;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--chernyy-osnovnoy);
}

.about-tablewrap{
  display:grid;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.about-table{
  border-collapse: separate;
  border-spacing: 0;
  min-width: 45rem;                 
  width: max-content;
  border-radius: 1rem;
}
.about-table th,
.about-table td{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
  color: var(--chernyy-osnovnoy);
  padding: .875rem 1rem;
  white-space: nowrap;
}
.about-table thead th{
  font-weight: 500;
  color: rgba(0,4,19,.7);
}
.about-table tbody tr + tr td{
  border-top: .0625rem solid rgba(0,4,19,.08);
}

.about-tables__in > .about-h2 + .about-tablewrap{
  row-gap: 0;
}

/* брейки */

@media (max-width:33.75rem){
  .about-title{ 
    font-weight: 500;
    font-size: 2rem;
    line-height: 110%;
    letter-spacing: -0.02em;
  }
  .about-text__body{ max-height: 10rem; }
}


/* === MAIN === */
.about-swiper-main{
  width: 100%;
  border-radius: 2.75rem;
  overflow: hidden;            /* радиус не «протекает» */
  aspect-ratio: 16/9;          /* контролируем высоту контейнера */
  height: 36.625rem; 
}
@media (max-width:64rem){ .about-swiper-main{ aspect-ratio: 3/2; } }
@media (max-width:33.75rem){  .about-swiper-main{ aspect-ratio: 4/4; border-radius: 1.5rem;} }

/* ВАЖНО: всё внутри — на 100% высоты контейнера */
.about-swiper-main .swiper,
.about-swiper-main .swiper-wrapper,
.about-swiper-main .swiper-slide{ height: 100%; }
.about-swiper-main .swiper-slide{
  display: grid;
  place-items: center;
  border-radius: inherit;      /* наследуем радиус на слайд */
  overflow: hidden;
  
}
.about-swiper-main .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;           /* не ломаем пропорции, заполняем полностью */
  display: block;
}

/* === THUMBS === */
/* фиксированная высота превью, дальше всё на 100% */
.about-swiper-thumbs{
  height: 6rem;                /* можно 88/80 — как нравится по дизайну */
}
@media (max-width:64rem){ .about-swiper-thumbs{ height: 5.25rem; } }
@media (max-width:33.75rem){  .about-swiper-thumbs{ height: auto; } }

.about-swiper-thumbs .swiper-wrapper,
.about-swiper-thumbs .swiper-slide{ height: 100%; }

.about-swiper-thumbs .swiper-slide{
  border-radius: 1rem;
  overflow: hidden;
}
.about-swiper-thumbs .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-stack{ display:grid; }

.about-stack--tabs-title{ row-gap:4rem; }

.about-stack--title-gallery{ display:grid; row-gap:4rem; }

.about-stack--gallery-story{ row-gap:6rem; }

.about-story{ display:grid; row-gap:2rem; }
.about-story-head{ display:grid; row-gap:2.25rem; }

.about-stack--story-summer{ row-gap:6rem; }

.about-summer{ display:grid; row-gap:4rem; }

.about-tables-pair{ display:grid; row-gap:6rem; }

.about-winter{ display:grid; row-gap:4rem; }

.about-gallery-block{ display:grid; row-gap:6rem; }

.swiper{ max-width: 100%; }
.about-tables{
  display: grid;
  row-gap: 6rem;                       
}
.about_arrow {
  width: 2rem;
  height: 2rem;
}

.medal {
  width: 1.75rem;
  height: 1.75rem;
}

.about-cols-scroll{
  width: auto;                         
  margin-right: calc(50% - 50vw);    
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.about-cols-scroll::-webkit-scrollbar{ display: none; }

.about-cols-grid{
  display: grid;
  grid-template-columns: repeat(5, 22.125rem);
  min-width: 100%;
  border-radius: 1rem;
}

.about-col{
  display: grid;
  grid-auto-rows: 5.875rem;                
}
.about-col:last-child{ border-right: 0; }

.about-col__head{
  position: sticky; top: 0;
  display: flex; align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: rgba(0,4,19,.7);
}

/* Ячейка */
.about-col__cell{
  display: flex; align-items: center;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: var(--chernyy-osnovnoy);

  border-top: .0625rem solid rgba(0,4,19,.08);
  white-space: nowrap;                  /* чтобы значения не ломались */
}


/* Адаптив */

@media (max-width:33.75rem){
  .about-col{ grid-auto-rows: 3rem; }
  .about-col__head, .about-col__cell{ font-size: .875rem; }
}

/* Страховка от случайных «вылетов» внутри секции */
.about{ overflow-x: clip; padding-top: 2.5rem;}
.about-tables { padding-right: 0;}
.about-cols-scroll{
  cursor: grab;
}
.about-cols-scroll.is-drag{
  cursor: grabbing;
  user-select: none;
}
/* сама сетка колонок — нужна относительная позиция,
   чтобы псевдоэлементы могли растянуться по всей ширине контента */
.about-cols-grid{
  position: relative;
}

/* сплошные линии сверху и снизу через всю ширину контента */
.about-cols-grid::before,
.about-cols-grid::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: .0625rem;
  background: rgba(0, 4, 19, .12); /* тот же цвет, что у горизонтальных линий */
  pointer-events: none;
}

.about-cols-grid::before{ top: 0; }     /* линия перед названиями колонок */
.about-cols-grid::after { bottom: 0; }  /* линия после последней строки */
.about-tables {
  padding-top: 6rem;
  padding-bottom: 9rem;
}
/* Между блоками «Летние…» и «Зимние…» */
.about-tables{
  display: grid;
  row-gap: 6rem;
}

/* Внутри каждого блока: заголовок ↔ таблица */
.about-table-set{
  display: grid;
  row-gap: 4rem;
}
.about-col__head{
  display:flex;
  align-items:center;
  gap:.5rem; /* отступ между иконкой и словом */
}
/* контейнер слайдера на всякий случай — для absolute позиционирования стрелок */
.about-swiper-main{ position: relative; }

.about-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;                
  width: 3rem;
  height: 4rem;
  padding: 1rem .5rem;
  border: 0;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  backdrop-filter: blur(.3125rem);
  background: rgba(0,0,0,0.5);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease-out;
}

/* расположение */
.about-prev{ left: 1rem; }
.about-next{ right: 1rem; }

.about-prev svg{ transform: none; }          /* влево */
.about-next svg{ transform: rotate(180deg); }/* вправо */
/* показываем стрелки при ховере (desktop) */
.about-swiper-main:hover .about-nav{
  opacity: 1;
  pointer-events: auto;
}

/* на устройствах без hover (тач) — всегда видимы */
@media (hover: none){
  .about-nav{
    opacity: 1;
    pointer-events: auto;
  }
}
.about-swiper-main{ position: relative; }
.about-swiper-main .swiper,
.about-swiper-main .swiper-wrapper,
.about-swiper-main .swiper-slide{ height: 100%; }
.about-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 4rem;
  padding: 1rem .5rem;
  border: 0;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  backdrop-filter: blur(.3125rem);
  background: rgba(0,0,0,.5);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease-out;
}
.about-swiper-main:hover .about-nav{ opacity: 1; pointer-events: auto; }
@media (hover:none){
  .about-nav{ opacity: 1; pointer-events: auto; }
}

.about-swiper-thumbs .swiper-wrapper,
.about-swiper-thumbs .swiper-slide{ height: 100%; }

.about-swiper-thumbs .swiper-slide{
  width: auto;               /* убираем фикс 11.8125rem */
  border-radius: 1.5rem;
  overflow: hidden;
  display: grid;
}

.about-swiper-thumbs .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-swiper-thumbs .swiper-slide-thumb-active{
  outline: .125rem solid var(--cvet-brenda);
  outline-offset: 0;
}

@media (hover:hover){
  .about-swiper-thumbs .swiper-slide:not(.swiper-slide-thumb-active):hover{
    filter: brightness(.95);
  }
}
@media (max-width:64rem){
  .about-stack--title-gallery {
    row-gap: 3rem;
  }
  .about-story-head {
    padding-top: 1rem;
  }

  .about-tables {
    padding-top: 4rem;
    padding-bottom: 6rem;
    row-gap: 4rem;
  }
}
@media (max-width:33.75rem){  
  .about-swiper-thumbs .swiper-slide{ 
    height: 2.75rem;  
    border-radius: .75rem;
    margin: 0;
  } 
  .about-swiper-main {
    height: auto;
  }
  
  .about-stack--tabs-title {
    row-gap: 2.5rem;
  }
  .about-stack--title-gallery {
    row-gap: 2rem;
  }

  .about-gallery {
    row-gap: .25rem;
  }

  .about-story-head {
    padding-top: .75rem;
  }

  .about-h2 {
    font-weight: 500;
    font-size: 2rem;
    line-height: 110%;
    letter-spacing: -0.02em;
  }

  .about-story-head {
    row-gap: 1.5rem;
  }

  .about-text {
    row-gap: 1.5rem;
  }

  .about-story {
    row-gap: .625rem;
  }

  .about-more {
    font-weight: 500;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: -0.02em;
  }

  .about-tables {
    padding-bottom: 4rem;
  }

  .about-table-set {
    row-gap: 2rem;
  }
  .about {
    padding-top: 1rem;
  }
  
  .about-nav {
    width: 2rem;
    height: 2.75rem;
    border-radius: .75rem;
    padding: .75rem .375rem;
  }
    .about-nav svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .about-story {
    padding-top: .75rem;
  }
}

.about-cards{display:none}
@media (max-width:33.75rem){
  .about-cols-scroll{display:none}
  .about-cards{display:grid;row-gap:2rem}
  .about-card{display:grid;row-gap:1.5rem;}
  .about-card__head{display:grid;row-gap:.125rem}
  .about-card__city{
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: var(--chernyy-osnovnoy);
  }
  .about-card__year{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: var(--chernyy-600);
  }
  .about-card__medals{display:grid;grid-auto-flow:column;grid-auto-columns:1fr;column-gap:1rem;align-items:start; padding-top: .5rem;}
  .about-medal{display:grid;row-gap:.5rem;justify-items:start}
  .about-medal__icon{width:1.25rem;height:1.25rem;border-radius:62.4375rem;display:inline-block}
  .about-medal__icon--gold{background:#FCC861}
  .about-medal__icon--silver{background:#FFFFFF;box-shadow:inset 0 0 0 .0625rem rgba(0,4,19,.12)}
  .about-medal__icon--bronze{background:#DBB386}
  .about-medal__label{
    font-family: var(--font-family);
    font-weight: 500;
    font-size: .875rem;
    line-height: 136%;
    letter-spacing: -0.02em;
    color: var(--chernyy-600);
  }
  .about-medal__value{
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 96%;
    letter-spacing: -0.02em;
    color: var(--chernyy-osnovnoy);
  }
  .about-card__total{display:grid;row-gap:.5rem}
  .about-card__total-label{
    font-family: var(--font-family);
    font-weight: 500;
    font-size: .875rem;
    line-height: 136%;
    letter-spacing: -0.02em;
    color: var(--chernyy-600);
  }
  .about-card__total-value{
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 96%;
    letter-spacing: -0.02em;
    color: var(--chernyy-osnovnoy);
  }
}


@media (max-width:33.75rem){
  .about-hr{display:block;}
  .about-hr::after{content:"";display:block;height:.0625rem;background:rgba(0,4,19,.12)}
}
@media (max-width:33.75rem){
  .about-medal__icon{
    width:1.125rem;height:1.125rem;display:inline-block;
    background-repeat:no-repeat;background-position:center;background-size:1.125rem 1.125rem;
    border-radius:0;background:none;box-shadow:none;
    position:relative
  }
  .about-medal__icon::after{content:none}

  .about-medal__icon--gold{
    background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none"><path d="M0 9C0 4.02944 4.02944 0 9 0C13.9706 0 18 4.02944 18 9C18 13.9706 13.9706 18 9 18C4.02944 18 0 13.9706 0 9Z" fill="%23FCC861"/><path d="M8.40613 12.1154V6.23354H9.59413V12.1154H8.40613Z" fill="%23000413"/></svg>');
  }

  .about-medal__icon--silver{
    background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none"><path d="M0 9C0 4.02944 4.02944 0 9 0C13.9706 0 18 4.02944 18 9C18 13.9706 13.9706 18 9 18C4.02944 18 0 13.9706 0 9Z" fill="white"/><path d="M7.61539 12.1126V6.23077H8.80338V12.1126H7.61539Z" fill="%23000413"/><path d="M9.88313 12.1126V6.23077H11.0711V12.1126H9.88313Z" fill="%23000413"/></svg>');
  }

  .about-medal__icon--bronze{
    background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none"><path d="M0 9C0 4.02944 4.02944 0 9 0C13.9706 0 18 4.02944 18 9C18 13.9706 13.9706 18 9 18C4.02944 18 0 13.9706 0 9Z" fill="%23DBB386"/><path d="M6.48454 12.1154V6.23354H7.67254V12.1154H6.48454Z" fill="%23000413"/><path d="M8.75228 12.1154V6.23354H9.94028V12.1154H8.75228Z" fill="%23000413"/><path d="M11.02 12.1154V6.23354H12.208V12.1154H11.02Z" fill="%23000413"/></svg>');
  }
}
@media (max-width:33.75rem){
  .about-medal{
    display:grid;
    grid-template-columns:max-content;
    grid-template-rows:auto auto;
    column-gap:.375rem;
    row-gap:.75rem;
    align-items:center;
  }
  .about-medal__icon{ grid-column:1; grid-row:1; }
  .about-medal__label{
    grid-column:2; grid-row:1;
    white-space:nowrap;
  }
  .about-medal__value{
    grid-column:1 / span 2; grid-row:2;
    justify-self:start;
  }
}


/* End */


/* Start:/local/templates/Spoda/about/partials/sotrudniki/sotrudniki.css?17637327418315*/
:root {
  --gap-12: 0.75rem;
  --gap-16: 1rem;
  --gap-20: 1.25rem;
  --gap-24: 1.5rem;
  --gap-28: 1.75rem;
  --gap-32: 2rem;
  --gap-64: 4rem;
  --gap-96: 6rem;
}
.about {
  padding-bottom: 15.25rem;
}
.fed-head_cats {
  display: grid;
  row-gap: var(--gap-64);
}
.staff-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2.75rem;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--chernyy-osnovnoy);
}
.staff-roles__item {
  display: block; /* каждая должность — отдельной строкой */
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: var(--chernyy-osnovnoy);
}

.staff-filter {
  display: grid;
  row-gap: var(--gap-24);
}
.staff-filter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 65rem;
}
.staff-filter__dept {
  display: grid;
  row-gap: var(--gap-16);
}
.staff-filter__dept-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.staff-filter__chip {
  display: inline-grid;
  place-items: center;
  border-radius: 0.75rem;
  padding: 0.75rem 0.5rem;
  background: var(--servyy-osnovnoy);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1rem;
  line-height: 96%;
  letter-spacing: -0.02em;
  color: var(--chernyy-600);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
  .staff-filter__chip:hover {
    background: var(--belyy);
  }
}
.staff-filter__chip.is-active {
  background: var(--cvet-brenda);
  color: #fff;
}
.staff-subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 2rem;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--chernyy-osnovnoy);
}

.staff-tablewrap {
  overflow: visible;
}
@media (max-width: 64rem) {
  .staff-tablewrap {
    overflow: auto;
  }
}
/* обёртка скроллит, полоса скрыта */
.staff-tablewrap {
  overflow-x: auto;
  overflow-y: hidden;
  display: block;
  -ms-overflow-style: none; /* IE/старый Edge */
  scrollbar-width: none; /* Firefox */
}
.staff-tablewrap::-webkit-scrollbar {
  display: none;
}

.staff-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  min-width: 65rem;
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
}
.staff-table thead th {
  text-align: left;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: var(--chernyy-600);
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.staff-table thead tr {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  column-gap: var(--gap-20);
  align-items: end;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
}
.staff-table thead tr th:nth-child(3) {
  padding: 0;
}
.staff-table tbody tr {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  column-gap: var(--gap-20);
  align-items: start;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
}
.staff-table tbody tr:first-child {
  border-top: none;
}
.staff-table tbody td {
  display: grid;
  row-gap: var(--gap-16);
  padding: var(--gap-32) 0;
  vertical-align: top;
}
.staff-table tbody td:nth-child(2) {
  grid-column: 2/4;
}
.staff-table tbody td:nth-child(3) {
  grid-column: 3/4;
  display: none;
}
.staff-table tbody td,
.staff-table tbody td a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: var(--chernyy-osnovnoy);
  text-decoration: none;
}
.staff-table a[href^="tel:"] {
  color: var(--dlya-pochty-i-telefona);
}

.staff-table td br:last-child {
  display: none;
}
.staff-table td > :last-child {
  padding-bottom: 0;
}
@media (max-width: 64rem) {
  .about {
    padding-bottom: 6rem;
  }
}
@media (max-width: 33.75rem) {
  .staff-title {
    font-weight: 500;
    font-size: 2rem;
    line-height: 110%;
    letter-spacing: -0.02em;
  }
  .staff-table {
    min-width: 0;
    width: 100%;
  }
  .staff-table thead {
    display: none;
  }
  .staff-table tbody tr {
    grid-template-columns: 1fr;
    border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
  }
  .staff-table tbody td {
    row-gap: 0.25rem;
    padding: 0;
  }
  .staff-table tbody td:nth-child(1) {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 108%;
    letter-spacing: -0.02em;
    color: var(--chernyy-osnovnoy);
  }
  .staff-table tbody td:nth-child(2)::before {
    content: "Должность";
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 136%;
    letter-spacing: -0.02em;
    color: var(--chernyy-600);
    padding-bottom: 0.5rem;
  }
  .staff-table tbody td:nth-child(4)::before {
    content: "Телефон";
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 136%;
    letter-spacing: -0.02em;
    color: var(--chernyy-600);
    padding-bottom: 0.5rem;
    display: none;
  }
  .staff-table tbody td,
  .staff-table tbody td a {
    font-size: 1rem;
    line-height: 150%;
  }
}
/* Мобильная лента тегов со свайпом (≤540) */
@media (max-width: 33.75rem) {
  .staff-filter {
    row-gap: var(--gap-16);
  }
  .staff-filter__chips {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    column-gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.5rem;
    border-radius: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }
  .staff-filter__chips::-webkit-scrollbar {
    display: none;
  }
  .staff-filter__chip {
    scroll-snap-align: start;
    border-radius: 0.75rem;
    padding: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 136%;
    letter-spacing: -0.02em;
  }
}
@media (max-width: 33.75rem) {
  .staff-roles__item {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: var(--chernyy-osnovnoy);
  }
  .staff-table {
    min-width: 0;
    width: 100%;
  }
  .staff-table thead {
    display: none;
  }

  .staff-table tbody {
    display: grid;
    row-gap: 0rem;
  }

  .staff-table tbody tr {
    display: grid;
    grid-template-columns: 1fr;
    border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1.75rem;
    padding-top: 1.75rem;
    row-gap: 1.25rem;
  }

  .fed-head_cats {
    row-gap: 2rem;
  }
  .staff-table tbody td {
    display: grid;
    row-gap: 0.25rem;
    padding: 0;
  }

  /* Порядок блоков: ФИО → Должность → Телефон */
  .staff-table tbody td:nth-child(1) {
    order: 1;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 108%;
    letter-spacing: -0.02em;
    color: var(--chernyy-osnovnoy);
  }

  .staff-table tbody td:nth-child(2) {
    order: 2;
    grid-column: auto;
  }
  .staff-table tbody td:nth-child(2)::before {
    content: "Должность";
    font: 500 0.875rem/136% var(--font-family);
    letter-spacing: -0.02em;
    color: var(--chernyy-600);
    padding-bottom: 0.5rem;
    display: none;
  }

  .staff-table tbody td:nth-child(3) {
    display: none;
  }

  .staff-table tbody td:nth-child(4) {
    order: 3;
  }
  .staff-table tbody td:nth-child(4)::before {
    content: "Телефон";
    font: 500 0.875rem/136% var(--font-family);
    letter-spacing: -0.02em;
    color: var(--chernyy-600);
    padding-bottom: 0.5rem;
  }

  .staff-table tbody td,
  .staff-table tbody td a {
    font-size: 1rem;
    line-height: 150%;
  }
  .staff-subtitle {
    padding-top: 0.5rem;
  }
  .about {
    padding-bottom: 4rem;
  }
}

@media (hover: hover) {
  .staff-phones__item a:hover {
    text-decoration: underline;
  }
}

/* End */
/* /local/templates/Spoda/about/about.css?176346556019903 */
/* /local/templates/Spoda/about/partials/sotrudniki/sotrudniki.css?17637327418315 */
