.news-detail{
  background: #f6f7f9;
  padding-top: calc(28px + 67px); 
  padding-bottom: 40px;
}

.news-detail__container{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.news-detail__card{
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(0,0,0,.08);
  overflow: hidden;
}

.news-detail__title{
  margin: 0;
  padding: 26px 22px 18px;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 600;
  color: #151515;
}

.news-detail__hero{
  background: #e9eaec;
  position: relative;
  cursor: zoom-in;
  height: 450px;
  max-height: 450px;
}

.news-detail__hero img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.news-detail__hero::after{
  content: "Нажмите, чтобы открыть полностью";
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 10px;
  font-size: 13px;
  color: #fff;
  background: rgba(0,0,0,.38);
  border-radius: 10px;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.news-detail__hero:hover::after{ opacity: 1; }

.news-detail__content{
  padding: 22px 22px 30px;
  font-size: 18px;
  line-height: 1.7;
  color: #222;
}

.news-detail__content p{ margin: 0 0 14px; }

.news-detail__content h2{
  font-size: 24px;
  margin: 26px 0 12px;
  line-height: 1.25;
  color: #111;
}

.gallerych{
  display: flex;
  gap: 12px;
  margin: 18px 0 22px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}

.gallerych__item{
  flex: 0 0 auto;
  width: 260px;
  border-radius: 14px;
  overflow: hidden;
  background: #f1f2f4;
  cursor: zoom-in;
  display: block;
}

.gallerych__item img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center;
  display:block;
}

.news-video{
  margin: 18px 0 24px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}

.news-video video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}


#js-lightboxch{
  display:none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 999999; 
  align-items: center;
  justify-content: center;
  padding: 18px;
}

#js-lightboxch.is-open{
  display:flex !important; 
}

#js-lightboxch .lightboxch__img{
  max-width: 92vw;
  max-height: 82vh;
  border-radius: 14px;
  position: relative;
  z-index: 1;
  pointer-events: none; 
}


#js-lightboxch .lightboxch__close,
#js-lightboxch .lightboxch__prev,
#js-lightboxch .lightboxch__next{
  display: flex !important;
  align-items: center;
  justify-content: center;

  opacity: 1 !important;
  visibility: visible !important;

  position: absolute;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: #fff;
  cursor: pointer;

  z-index: 1000000; /* поверх картинки */
  pointer-events: auto !important;
}

#js-lightboxch .lightboxch__close{
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  font-size: 30px;
  line-height: 44px;
}

#js-lightboxch .lightboxch__prev,
#js-lightboxch .lightboxch__next{
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 44px;
}

#js-lightboxch .lightboxch__prev{ left: 18px; }
#js-lightboxch .lightboxch__next{ right: 18px; }

#js-lightboxch .lightboxch__counter{
  position:absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  color:#fff;
  font-size: 14px;
  opacity:.85;
  z-index: 1000000;
}

@media (max-width: 900px){
  .news-detail{ padding: 18px 0 26px; }
  .news-detail__container{ padding: 0 16px; }
  .news-detail__title{ font-size: 28px; }
  .news-detail__hero{ height: 360px; }
  .gallerych__item{ width: 240px; }
  .gallerych__item img{ height: 160px; }
}

@media (max-width: 520px){
  .news-detail__title{
    font-size: 24px;
    padding: 18px 14px 14px;
  }
  .news-detail__content{
    padding: 16px 14px 20px;
    font-size: 16px;
  }
  .news-detail__hero{ height: 260px; }
  .gallerych__item{ width: 220px; }
  .gallerych__item img{ height: 150px; }
}


.pc-block{
  position:relative;
  margin:40px 0;
}

.pc-block--gray{
  background:#fff;      
  border-radius:12px;    
  padding:5px;
  margin:40px 0;
}


.pc-title--short{
  position:relative;
  padding-left:18px;
}

.pc-title--short::before{
  content:'';
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:6px;          
  height:36px;
  background:#1BAD96; 
  border-radius:2px;
}





.news-img-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 24px 0;
}


.news-img-mini {
    flex: 1 1 280px; 
    max-width: 100%;
    cursor: zoom-in;
    position: relative;
}

.news-img-mini img {
    width: 100%;
    height: 380px; 
    object-fit: cover;
    border-radius: 14px;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.news-img-mini:hover img {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.news-img-mini span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}


.news-img-mini--right { float: right; margin-left: 24px; max-width: 600px; }
.news-img-mini--left { float: left; margin-right: 24px; max-width: 600px; }


@media (max-width: 600px) {
    .news-img-mini--right, 
    .news-img-mini--left { 
        float: none; 
        margin: 0 0 20px 0; 
        max-width: 100%; 
    }
    .news-img-mini img { height: auto; }
}