#common-home #content{
  background-color: #141414;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero {
  display: flex;
  flex-direction: column;
}
.hero__wrap{
  display: flex;
}
.hero__stats {
  display: flex;
  flex-direction: column;
  border-radius: 0 10px 0 0;
  border: 1px solid #262626;
}
.hero__stats .stat {
  display: flex;
  flex-direction: column;
  gap:4px;
  padding: 40px 16px;
  border-bottom: 1px solid #262626;
}
.hero__stats .stat:first-child{
  padding-top: 20px;
}
.hero__stats .stat:last-child{
  border-bottom: none;
}
.hero__stats .stat span{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color:#98989A;
}
.hero__stats .stat strong{
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color:#FFFFFF;
}
.hero__stats .stat strong b{
  color:#FFD11A;
}
.hero__categories {
  display: flex;
  border: 1px solid #262626;
  border-top: none;
  border-radius: 0 0 10px 10px;
}
.hero__categories .cat{
  display: flex;
  gap:16px;
  padding:24px 16px;
  border-right: 1px solid #262626;
  align-items: center;
}
.cat__svg{
  display: flex;
  justify-content: center;
  align-items: center;
  width:40px;
  min-width: 40px;
  height: 40px;
  background: #FFD11A;
  border-radius:50%;
}
.hero__categories img{
  display: flex;
  flex: 1;
}
.hero__categories span{
  display: flex;
  flex: 1;
  font-size:14px;
  font-weight: 500;
  line-height: 1.3;
  color:#FCFCFD;
}
.hero__categories a:active,
.hero__categories a:hover{
  color:#FCFCFD;
}


/* BRANDS BLOCK */
.parts-block {
  background: #141414;
  border: 1px solid #262626;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap:16px;
  position: relative;
}
.parts-block__header-wrap{
  display: flex;
  gap: 16px;
}
.parts-block__header{
  display: flex;
  flex-direction: column;
  gap:8px;
}
.parts-block h2 {
  font-size: 20px;
  font-weight: 600;
  margin:0;
}

.parts-block__subtitle {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: #98989A;
}

.parts-block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.parts-block__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  background: #1a1a1a;
  border-radius: 100px;
}
.parts-block__tag span{
  font-size: 12px;
  line-height: 1.3;
  color: #FCFCFD;
  text-decoration: none;
  transition: background .25s;
}

.parts-block__tag:hover {
  background: #262626;
}

.parts-block__tag img {
  width: 32px;
  height: 32px;
}


.parts-block__brands {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 6px;
  max-height: 210px;
  overflow: hidden;
  transition: max-height .4s ease;
  position: relative;
  background: linear-gradient(360deg, #111111 0%, rgba(17, 17, 17, 0) 100%);
}
.parts-block__brands::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  background: linear-gradient(
    to bottom,
    rgba(14,14,14,0) 0%,
    rgba(14,14,14,.85) 70%,
    rgba(14,14,14,1) 100%
  );
  pointer-events: none;
  transition: opacity .3s ease;
}

/* когда раскрыто — убираем затемнение */
.parts-block__brands.is-open::after {
  opacity: 0;
}
.parts-block__brands.is-open {
  max-height: 12000px;
}

.brand-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  transition: background .25s, transform .25s;
}
.brand-card__image{
  width: 100%;
  height: 88px;
  background: #1a1a1a;
  border-radius: 6px;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.brand-card__image:hover {
  background: #262626;
  transform: translateY(-2px);
}

.brand-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 8px;
}

.brand-card span {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color:#E4E4E7;
}

.parts-block__footer {
  position:absolute;
  bottom: 16px;
  right: 16px;
}

.show-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffcc00;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}
a.show-more:hover,
a.show-more:active{
  color: #ffcc00;
}

.show-more.is-open svg {
  transform: rotate(180deg);
}


/* INFO BLOCK */
.info-block{
  display: flex;
  flex-direction: column;
  border-radius:10px;
  background-color: #1A1A1A;
}
.info-block__section{
  border-top: 1px solid #262626;
}
.info-block__section:first-child{
  border: none;
}
.info-block__section .section__main{
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  padding:40px;
  border-right: 1px solid #262626;
}
.info-block__section .section__main img{
  width: 40px;
  height: 40px;
}
.info-block__section .section__main-info h3{
  margin:0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color:#FFFFFF;
}
.info-block__section .section__main-info span{
  font-size: 14px;
  line-height: 1.5;
  color:#B3B3B3;
}
.btn-primary {
  background: #FFD11A;
  color: #141414;
  border: none;
  border-radius: 6px;
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-primary:hover {
  color:#141414;
}
.btn-dark{
	background-color: #262626 !important;
	border: 1px solid #262626 !important;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	color:#F1F1F3 !important;
}
.btn-dark:hover{
  color:#F1F1F3 !important;
}
.btn-dark svg{
	color: #FFD11A;
}
.info-block__section .section__desc{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding:40px;
  justify-content: center;
}
.info-block__section .section__desc span{
  line-height: 1.5;
  color:#B3B3B3;
}
.section__desc-advantage{
  display: flex;
  flex-direction: column;
  gap:4px;
  padding: 24px;
  border: 1px solid #262626;
  border-radius:10px;
}
.advantage-head{
  display: flex;
  gap:4px;
}
.advantage-head>img{
  width: 20px;
  height: 20px;
}
.advantage-head h4{
  margin:0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
}
.section__desc-advantage span{
  font-size: 14px;
  line-height: 1.5;
  color: #98989A;
}
.desc__articles {
  display: flex;
  flex-direction: row;
  gap:16px;
}
.desc__article{
  display: flex;
  flex-direction: column;
  flex:1;
  justify-content: space-between;
}
.article__img{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  width:auto;
  height: 150px;
  margin-bottom:16px;
}
.desc__articles span.article__title{
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color:#fff;
  margin-bottom:4px;
}
.article__meta{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom:8px;
}
.article__meta span,
.article__social{
  line-height: 1.5;
  font-size: 14px;
  color:#98989A;
}
.article__meta span:last-of-type{
  font-size: 10px;
  font-style: italic;
}
.article__activities{
  display: flex;
  gap:14px;
  justify-content: space-between;
}
.article__social-wrap{
  display: flex;
  gap:8px;
}
.article__social{
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid #262626;
  display: flex;
  justify-content: center;
  align-items: center;
  gap:4px;
  background: #1A1A1A;
}
.article__social.is-active svg{
    fill:#98989A;
}
.article__activities .btn{
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color:#F1F1F3;
  margin:0;
}
.article__activities .btn{
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color:#F1F1F3;
  margin:0;
}
#our-blog-info .section__desc{
  padding:28px 40px;
}


/* OUR TEAM */
.team-block {
  background:
        url("/image/catalog/rays_с.png") no-repeat left top / contain;
  border: 1px solid #262626;
  border-radius: 10px;
  padding: 40px;
  color: #fff;
}
.team-block__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* ===== Avatars ===== */
.team-block__avatars {
  flex: 0 0 auto;
  align-self: self-end;
}

.avatars-list {
  display: flex;
  align-items: center;
  padding:16px;
  border: 1px solid #262626;
  border-radius: 190px;
  background-color: #1A1A1A;
}

.avatars-list img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.9px solid #666666;
  margin-left: -12px;
  background: #111;
}

.avatars-list img:first-child {
  margin-left: 0;
}

/* ===== Content ===== */
.team-block__content {
  display: flex;
  flex-direction: column;
  gap:20px;
}
.team-block__content-text{
  display: flex;
  flex-direction: column;
  gap:4px;
}
.team-block__content h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  margin:0;
}

.team-block__content p {
  font-size: 14px;
  color: #B3B3B3;
  line-height: 1.5;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .team-block__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-block__content {
    max-width: 100%;
  }
  #common-home #content{
    gap:0;
  }
}



/* PROJECTS BLOCK */
.projects-block {
  display: flex;
  flex-direction: column;
  gap:40px;
  padding:40px;
  background-color: #1A1A1A;
  border-top: 1px solid #262626;
  border-radius: 10px;
}
.projects_img{
  padding-left: 40px;
  background-image: url("/image/catalog/project_img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width:100%;
  height: 100%;
}
.projects-block .section__main{
  padding: 0 40px 0 0;
}
.projects-block .section__desc{
  padding: 0 0 0 40px;
}
.project-categories{
  display: flex;
  gap:10px;
  padding:10px;
  border: 1px solid #262626;
  border-radius: 10px;
  background-color: #141414;
}
.project__category{
  display: flex;
  flex-direction: column;
  gap:10px;
  padding:24px;
  background-color: #1A1A1A;
  border: 1px solid #262626;
  border-radius: 10px;
}
.project__category span{
  color:#98989A;
  line-height: 1.5;
}
.category__head {
  display: flex;
  justify-content: space-between;
}
.category__head span{
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color:#fff;
}


/* MEDIA 1200px */
@media(max-width: 1200px){
  .hero__categories .cat{
    gap:12px;
  }
}


/* MEDIA 992px */
@media(max-width: 992px){
  .hero__wrap{
    flex-direction: column;
  }
  .hero__stats{
    flex-direction: row;
  }
  .hero__stats .stat{
    flex: 1 1 0;
    padding: 20px 16px;
    border-left:1px solid #262626;
    border-bottom: none;
  }
  .hero__stats .stat:first-child,
  .hero__categories .cat:first-child{
    border: none;
  }
  .hero__categories{
    flex-direction: column;
  }
  .hero__categories .cat{
    gap:16px;
    border-top: 1px solid #262626;
  }
  .hero__categories img{
    max-width: 54px;
  }
  .mobile-title{
    display: flex;
    align-items: center;
    gap: 16px;
    color: #B3B3B3;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    background-color: #141414;
  }
  .mobile-title::before,
  .mobile-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #333333;
  }
}


/* MEDIA 768px */
@media(max-width:768px){
  .parts-block__brands{
    grid-template-columns: repeat(4, minmax(88px, 1fr));
  }
  .info-block__section{
    flex-direction: column;
  }
  .info-block__section .section__main{
    padding: 40px 16px 4px;
    border-right: none;
  }
  .info-block__section .section__desc{
    padding: 0 16px 40px;
  }
  .section__desc a.show-mobile{
    margin-top: 30px;
  }
  #organization-info{
    background-color: #141414;
    gap: 0;
  }
  #our-blog-info .section__desc{
    padding:28px 0 0;
  }
  #our-blog-info .section__main{
    padding-bottom: 40px;
  }
  .team-block{
    padding: 100px 16px 40px;
  }
  .avatars-list img{
    width: 40px;
    height: 40px;
  }
  .team-block__avatars{
    align-self: self-start;
  }
  .team-block__inner{
    gap:20px;
  }
  .projects_img{
    height: 185px;
    border-radius: 10px;
  }
  .project-categories{
    flex-direction: column;
  }
  .projects-block .info-block__section{
    gap:40px;
  }
  .projects-block .info-block__section .section__desc{
    padding: 0;
  }

  /*.image-slider__slide img{*/
  /*  height: auto;*/
  /*}*/
}

@media(max-width: 500px){
  .desc__articles{
    flex-direction: column;
    gap:24px;
  }
}
