

/* 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/rukovodstvo/detail.css?17633929896321*/
.person-top{ display:grid; }
.person{ display:grid; row-gap:2rem; }          /* кнопка ↔ хедер = 2rem */
.person-main{ display:grid; row-gap:4rem; }     /* хедер ↔ секции = 4rem */
.person-content{ display:grid; row-gap:6rem; }
.person-back__link{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    padding: 1rem 1rem 1rem 0rem;
    border-radius: 1rem;
    text-decoration:none;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: rgba(0, 4, 19, 0.6);
}
.about2 {
    padding-bottom: 9rem;
    overflow-x: clip;
    padding-top: 2.5rem;
}
.person-back__icon{ display:inline-grid; width:1.125rem; height:1.125rem; }
.person-back__icon svg{ width:100%; height:100%; }


.person-head{ display:grid; }
.person-head__grid{ display:grid; grid-template-columns:1fr 3fr; gap:1.25rem; align-items:start; }
.person-head__photo{ display:grid; }
.person-head__photo img{ 
    border-radius: 2.75rem;
    width: 20.875rem;
    height: 25rem;
    object-fit:cover;
}

.person-head__info{ display:grid; row-gap:1rem; }
.person-head__name{
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 2.75rem;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: var(--chernyy-osnovnoy);
}
.person-head__meta{ display:grid; row-gap:2.5rem; }
.person-head__birth{ 
    font-family: var(--font-family);
font-weight: 400;
font-size: 1.125rem;
line-height: 150%;
letter-spacing: -0.02em;
color: rgba(0, 4, 19, 0.6);
 }
.person-head__pos-full{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: var(--chernyy-osnovnoy);
 }

.person-sections{ display:grid; row-gap:4rem; } /* секции и разделители = 4rem */
.person-sep{ height:.0625rem; width:100%; background:rgba(0,0,0,.1); }
.person-sec{ display:grid; }
.person-sec__grid{ display:grid; grid-template-columns:1fr 3fr; gap:1.25rem; align-items:start; }
.person-sec__label{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: rgba(0, 4, 19, 0.6);
    }
.person-sec__content{ display:grid; }
.person-list{ 
    display:grid; row-gap:1rem;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 136%;
    letter-spacing: -0.02em;
    color: var(--chernyy-osnovnoy);
}
.person-list p{ 
    margin:0;
}

.person-gap96{ height:6rem; }

.person-video{ display:grid; }
.person-video__iframe{ width:100%; aspect-ratio:16/9; border:0; border-radius:2.75rem; }
.person-video__link{
  display:inline-grid; place-items:center; height:2.5rem; padding:0 1rem; border-radius:62.4375rem;
  background:var(--servyy-svetlyy,#ECEFF3); text-decoration:none; color:var(--chernyy-osnovnoy);
}



@media (max-width:64rem){
  .person-head__grid{ grid-template-columns:1fr 3fr; }
  .person-sec__grid{ grid-template-columns:1fr 3fr; }
  .person-head__pos-full {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 150%;
    letter-spacing: -0.02em;
  }
  .person-head__meta {
    row-gap: 2rem;
  }
  .person-head__photo img {
    border-radius: 2.75rem;
    width: 21.875rem;
    height: 25rem;
  }
  .person-sections {
    row-gap: 2rem;
  }
  .person-list {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 150%;
    letter-spacing: -0.02em;
  }
  .person-sec__label {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 150%;
    letter-spacing: -0.02em;
  }
  .person-video__iframe {
    border-radius: 2rem;
  }
  .about2 {
    padding-bottom: 6rem;
    padding-top: 2rem;
  }
}










@media (max-width:33.75rem){
  .person-sections{ row-gap:3rem; }
  .person-head__name{
    font-weight: 500;
    font-size: 2rem;
    line-height: 110%;
    letter-spacing: -0.02em;
  }
  .person-back__link {
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: -0.02em;
  }
  .person-back__icon {
    width: 1rem;
    height: 1rem;
  }
  .person {
    row-gap: 1.5rem;
  }
  .person-head__grid {
    grid-template-columns: 1fr;
  }
  .person-head__info {
    row-gap: .5rem;
  }
  .person-head__birth {
    font-weight: 500;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: -0.02em;
  }
  .person-head__grid{
    display:grid;
    grid-template-columns:1fr;
    grid-template-areas:
      "name"
      "birth"
      "photo"
      "pos";
    row-gap:.5rem;
    align-items:start;
  }

  .person-head__info{display:contents}
  .person-head__meta{display:contents}

  .person-head__name{grid-area:name}
  .person-head__birth{grid-area:birth}
  .person-head__photo{grid-area:photo}
  .person-head__pos-full{grid-area:pos}

  .person-head__photo img{
    width:100%;
    height:auto;
    border-radius:2.75rem;
  }
  .person-head__photo{
    padding-block:1rem;          /* ← вместо изменения gap у grid */
  }
  .person-head__pos-full {
    font-weight: 500;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: -0.02em;
  }
  .person-sec__grid {
    grid-template-columns: 1fr;
  }

    .person-sections{
    position:relative;
    row-gap:2rem;                   /* как у тебя уже */
  }
  .person-main {
    row-gap: 3rem;
  }
  /* верхняя разделительная черта только на мобилке */
  .person-sections::before{
    content:"";
    display:block;
    height:.0625rem;
    width:100%;
    background:rgba(5,14,44,.12);   /* как у .person-sep */
  }
  .person-sec__label {
    font-weight: 500;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: -0.02em;
  }
  .person-sec__grid {
    gap: 1.5rem;
  }
  .person-list {
    font-weight: 500;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: -0.02em;
    row-gap: .5rem;
  }
  .person-content {
    row-gap: 3rem;
  }
  .person-video__iframe {
    border-radius: 1.5rem;
  }
  .about2 {
    padding-bottom: 4rem;
    padding-top: 1rem;
  }
}

/* End */
/* /local/templates/Spoda/about/about.css?176346556019903 */
/* /local/templates/Spoda/about/partials/rukovodstvo/detail.css?17633929896321 */
