#content{
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #141414;
    padding: 0;
}
.product-content__video{
  background-color: #1A1A1A;
  border: 1px solid #262626;
  border-radius: 10px;
  padding: 16px;
}
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.blog-page,
.news-page,
.projects-page{
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: #1A1A1A;
    border:1px solid #262626;
    border-radius: 10px;
    padding: 16px;
}
.blog__header{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.header__info{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.header__info h1,
.header__info strong{
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin:0;
}
.header__info span{
    font-size: 14px;
    line-height: 1.5;
    color:#B3B3B3;
}
.header__blog-categories{
    background: #141414;
    border: 1px solid #262626;
    border-radius: 10px;
    padding: 8px;
}
.blog-categories__wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.blog-categories__category{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding:11px 16px;
    border: 1px solid #262626;
}
.blog-categories__category.active{
    background-color: #1A1A1A;
}
.blog-categories__category.active span:first-child,
.blog-categories__category.active span:last-child{
    color:#fff;
}
.blog-categories__category span:first-child,
.blog-categories__category span:last-child{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: #98989A;
}
.blog-categories__category span:last-child{
    font-size: 12px;
    font-style: italic;
}

.desc__articles{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.desc__article{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex:1;
}
.project_title{
  display: flex;
  gap: 4px;
}
.project_title>img{
  width: 20px;
  height: 20px;
}
.article__img{
  background-size: cover;        
  background-position: center;   
  background-repeat: no-repeat;
  border-radius: 10px;
  width:auto;
  height: 236px;
  margin-bottom:16px;
}
.desc__articles span.article__title,
.blog__related-posts span.article__title{
  display: block;
  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;
}
.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;
}

.news-page{
  gap:16px;
}
.blog__tags{
  display: flex;
  flex-direction: column;
  gap: 12px;

}
.blog__tags>span{
  font-weight: 600;
  line-height: 1.3;
}
.tags{
  display: flex;
  flex-wrap: wrap;
  gap:8px;
  background: #141414;
  border: 1px solid #262626;
  border-radius: 10px;
  padding: 8px;
}
.tag{
  display: flex;
  justify-content: center;
  align-items: center;
  padding:11px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color:#98989A;
  border: 1px solid #262626;
  border-radius: 100px;
}
a.tag:hover,
a.tag:focus,
a.tag:active{
  color:#98989A;
}
.blog__info{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog__info a{
  font-size: 14px;
  line-height: 1.5;
  color:#F1F1F3;
}
.blog__info span{
  font-size: 10px;
  font-style: italic;
  line-height: 1;
  color:#F1F1F3;
}
.blog__related-posts{
  display: flex;
  flex-direction: column;
  gap:40px;
  padding: 40px 16px;
  border: 1px solid #262626;
  border-radius: 10px;
}
.blog__related-posts>img{
  width: 50px;
  height: 50px;
}
.blog__related-posts>span{
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}
.related-posts{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-posts .desc__article{
  background-color: #262626;
  border-radius: 10px;
  padding:16px;
}
.related-posts .btn-dark:focus,
.related-posts .btn-dark:hover{
  background-color: #1A1A1A!important;
}
.blog__description{
  display: flex;
  flex-direction: column;
  gap:16px;
  max-width: 700px;
}
.description__img{
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  border-radius: 10px;
}
.blog__description h1{
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}
.blog__description span{
  font-size: 14px;
  line-height: 1.5;
  color: #B3B3B3;
}
.description__block-h2{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.description__block-h2 h2{
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}
.description__block-h2 ul li span{
  font-size: 14px;
  line-height: 1.5;
}
.description__block-h2 ul li span b{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color:#E4E4E7;
}
.description__block-h2 b,
.description__block-h2 u,
.description__block-h2 a{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color:#E4E4E7;
}
.description__block-h2 a{
  color:#e6f0db;
}
.projects-page{
  gap:16px;
}
.projects-page .desc__articles{
  padding:10px;
  background-color: #141414;
  border: 1px solid #262626;
  border-radius: 10px;
  gap:10px;
}
.projects-page .desc__article{
  padding:24px;
  background-color: #1A1A1A;
  border: 1px solid #262626;
  border-radius: 10px;
}
.projects-page .header__info{
  max-width: 700px;
}
.projects-page .article__activities{
  align-items: center;
}
.projects-page .article__activities>span{
  font-size: 12px;
  line-height: 1;
  color:#98989A;
  font-style: italic;
}
.article__desc{
  font-size: 14px;
  line-height: 1.5;
  color:#98989A;
}
.desc-item__wrap{
  display: flex;
  flex-direction: column;
  gap:16px;
  padding: 40px 0;
  border-bottom:1px solid #262626;
}
.desc-item__wrap:first-child{
  padding-top:0;
}
.desc-item__wrap strong{
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  font-style: italic;
  color:#F1F1F3;
  text-transform: uppercase;
}
.desc-item__wrap .description__block-h2 h2{
  font-size: 18px;
}
.show-more,
.show-more-attr {
  position: absolute;
  bottom:16px;
  right: 16px;
  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,
.show-more-attr:hover,
.show-more-attr:active{
  color: #ffcc00;
}

.show-more.is-open svg,
.show-more-attr.is-open svg {
  transform: rotate(180deg);
}


/* MEDIA 992px */
@media(max-width: 992px){
  .related-posts{
    grid-template-columns: repeat(2, 1fr);
  }
}


/* MEDIA 768px */
@media(max-width: 768px){
  .desc__articles{
    grid-template-columns: 1fr;
  }
  .blog-categories__wrap {
    display: flex;
    gap: 10px;
    white-space: nowrap;
    padding-bottom: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 10000px;
    width: auto;
    flex-wrap: nowrap;
  }
  .blog-categories__wrap::-webkit-scrollbar,
  .header__blog-categories::-webkit-scrollbar,
  .related-posts{
      display: none;
  }
  .header__blog-categories,
  .blog-categories__wrap,
  .related-posts {
      scrollbar-width: none; /* Firefox */
  }
  .related-posts{
    display: flex;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    overflow-x: auto;
    width: auto;
    max-width: 100000px;
  }
}