.hero-about{
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 1600px;
  height: 800px;
  border-radius: 0;    
  background-image: url("/static/assets/hero.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 0;
  position: relative;
  margin-top: 20px;
}
.hero-about__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
  rgba(0,0,0,0) 0%,
  rgba(0,0,0,.15) 30%,
  rgba(0,0,0,.35) 100%
  );
  height: 800px;
}
.hero-about__inner{
  position: relative;
  display: flex;
  align-items: end;
  justify-content: end;
  padding-bottom: 100px;
}
.hero-about__content{
  position: relative;
  width: min(1240px, calc(100% - 48px));
  max-width: 1240px;
  margin: 0 auto;
}
.hero-about__title{
  font-size: 32px;
  font-weight: 700;
}
.hero-about__text{
  font-size: 24px;
  line-height: 1.6;
}
.hero-about__mission{
  position: relative;
  width: min(1240px, calc(100% - 48px));
  max-width: 1240px;
  margin: -70px auto 90px auto;
  padding: 64px 56px;
  border-radius: 48px;
  text-align: center;
  background: linear-gradient(90deg, #2f8f4a 0%, #f2c34a 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-about__mission-title{
  font-size: 26px;
  font-weight: 700;
  max-width: 800px;
}
.hero-about__mission-text{
  font-size: 20px;
  line-height: 1.2;
  max-width: 750px;
}
.hero-about__overlay{ z-index: 0; }
.hero-about__inner{ z-index: 1; }
.article-image {
  width: 100%;
  max-width: 1240px;
  aspect-ratio: 1240 / 520;
  object-fit: cover;
  border-radius: 60px;
}
@media (max-width: 768px) {
  .article-image {
    aspect-ratio: 16 / 9;
    border-radius: 20px;
  }
}
.about-why{
  width: 100%;
}
.about-why__title{
  margin-bottom: 40px;
}
.about-why .about-features-grid{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about-why .about-feature-card{
  background: #fff;
  border-radius: 28px;
  padding: 62px 22px;
}
.about-why .about-feature-icon{
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}
.about-why .about-feature-icon img{
  width: 66px;
  height: 66px;
  object-fit: contain;
}
.about-why .about-feature-title{
  font-size: 20px;
  font-weight: 700;
  color: #2E7D32;
}
.about-why .about-feature-text{
  font-size: 16px;
  line-height: 1.25;
  color: #111;
}
.about-why .mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.about-directions{
  width: 100%;
}
.about-directions__title{
  margin-bottom: 30px;
}
/* GRID: 2 колонки, gap 20x20 */
.about-directions .about-directions__grid{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}
.about-directions .about-directions__card{
  background: #2E7D32;
  border-radius: 40px;
  padding: 40px 70px 40px 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.about-directions .about-directions__img{
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 22px;
}
.about-directions .about-directions__name{
  font-size: 20px;
  font-weight: 400;
}
.about-directions .about-directions__text{
  font-size: 18px;
  line-height: 1.25;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: auto;
  padding-top: 16px;
}
.about-diff{
  width: 100%;
}
.about-diff .about-diff__row{
  column-gap: 78px;
}
.about-diff .about-diff__left{
  max-width: 610px;
}
.about-diff .about-diff__text{
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
  color: #111;
  margin: 0;
}
.about-diff .about-diff__smalltext{
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
  color: #111;
}
.about-diff .about-diff__card{
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  max-width: 520px;
  box-shadow: 0 0 0 rgba(0,0,0,0); 
}
.about-diff .about-diff__card-icon{
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.about-diff .about-diff__card-icon img{
  width: 45px;
  height: 45px;
  object-fit: contain;
  display: block;
}
.about-diff .about-diff__card-title{
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
  color: #111;
}
.about-diff .about-diff__card-text{
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
  color: #111;
}
.about-team{
  width: 100%;
  overflow: hidden;
}
.about-team .about-team__track{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: flex-start;
}
.about-team .about-team__card{
  width: 100%;
  max-width: 284px;
  /* height: 332px; */
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: transparent;
}
.about-team .about-team__viewport{
  position: relative;
}
.about-team .about-team__viewport::before,
.about-team .about-team__viewport::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    to left,
    rgba(var(--team-bg), 1),
    rgba(var(--team-bg), 0.7),
    rgba(var(--team-bg), 0)
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}
.about-team .about-team__viewport::before{
  left: 0;
  background: linear-gradient(
    to right,
    rgba(var(--team-bg), 1),
    rgba(var(--team-bg), 0.7),
    rgba(var(--team-bg), 0)
  );
}
.about-team .about-team__viewport::after{
  right: 0;
  background: linear-gradient(
    to left,
    rgba(var(--team-bg), 1),
    rgba(var(--team-bg), 0.7),
    rgba(var(--team-bg), 0)
  );
}
.about-team .about-team__viewport.has-left::before{ opacity: 1; }
.about-team .about-team__viewport.has-right::after{ opacity: 1; }
.about-team .about-team__viewport.is-end::after{
  opacity: 0;
}
.about-team .about-team__photo-wrap{
  width: 100%;
  height: 256px;
  /* border-radius: 40px; */
  /* overflow: hidden; */
  margin-bottom: 18px;
}
.about-team .about-team__photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}
.about-team .about-team__name{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  color: #111;
}
.about-team .about-team__role{
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #111;
  opacity: 0.9;
}
.about-team .about-team__phone{
  margin-top: 5px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #111;
}

@media (max-width: 1240px){
  .about-team .about-team__track{
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }
  .about-team .about-team__card{
    flex: 0 0 clamp(240px, 28vw, 294px);
    scroll-snap-align: start;
  }
  .about-team .about-team__track::-webkit-scrollbar{
    height: 8px;
  }
}


@media (max-width: 992px){
  .hero-about {
    height: 666px;
    /* margin-bottom: 180px; */
  }
  .hero-about__overlay {
    height: 666px;
  }
  .hero-about__inner{
    padding-top: 60px;
    padding-bottom: 180px;
  }
  .hero-about__mission{
    padding: 32px 20px;
    border-radius: 36px;
    bottom: 0px;
    margin-bottom: 52px;
  }
  .hero-about__content {
    margin-bottom: 0;
  }
  .hero-about__text {
    font-size: 20px;
  }
  .hero-about__mission-text {
    font-size: 18px;
  }
  .about-why .about-features-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .about-why .about-feature-card{
    padding: 62px 42px;
  }
  .about-why .about-feature-text{
    font-size: 14px;
  }
  .about-diff .about-diff-container,
  .about-team .about-team-container {
    margin: 0 auto 0 0;
  }
  .about-diff .about-diff__row{
    column-gap: 0;
    row-gap: 24px;
  }
  .about-diff .about-diff__left{
    max-width: 100%;
  }
  .about-diff .about-diff__card{
    max-width: 100%;
  }
}

@media (max-width: 768px){
  .hero-about {
    height: 644px;
  }
  .hero-about__overlay {
    height: 644px;
  }
  .hero-about__inner{
    padding-bottom: 180px;
    height: 644px;
    display: flex;
    align-items: flex-start;
    padding-top: 60px;
  }
  .hero-about__mission{
    padding: 32px 20px;
    border-radius: 30px;
    /* bottom: -136px; */
    width: calc(100% - 30px);
  }
  .hero-about__mission-title{
    font-size: 20px;
    text-align: left;
    width: 100%;
  }
  .hero-about__mission-text{
    font-size: 14px;
    text-align: left;
  }
  .hero-about__title{
    font-size: 24px;
}
  .hero-about__text{
    font-size: 18px;
  }
  .hero-about__mission-title .mb-5 {
    padding-bottom: 24px;
  }
  .hero-about__content {
    margin-bottom: 0;
  }
  .hero-about__mission-title.mb-5 {
    margin-bottom: 24px!important;
  }
  .about-why .about-features-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-why .about-feature-card{
    padding: 62px 22px;
  }
  .about-why .about-feature-text{
    font-size: 14px;
  }
  .about-directions .about-directions__grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-directions .about-directions__card{
    padding: 40px 200px 40px 40px;
  }
}

@media (max-width: 600px) {
  .about-directions .about-directions__card {
    padding: 34px;
  }
  .hero-about__text{
    font-size: 14px;
  }
}

@media (max-width: 370px){
  .about-directions .about-directions__grid{
    gap: 16px;
  }
  .about-directions .about-directions__card{
    padding: 34px;
  }
}

