.no-scroll {
    overflow: hidden;
  }
.article-main-container{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}
.post-single{
    margin: 16px 0 0 0;
}
.ph-header{
    font-size: 24px;
    font-weight: 600;
}
.post-main-photo > img{
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
}
.post-meta{
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 8px 8px 12px 8px;
    font-size: 12px;
    font-weight: 300;
    color: var(--gray-text-3);
}
.pm-item{
    display: flex;
    align-items: center;
    gap: 4px;
}
.pm-item > svg{
    width: 16px;
    height: 16px;
    color: var(--gray-text-1);
}
.post-content-text{
    padding: 12px 8px;
}


.post-text-short,
.post-text-full{
    font-family: 'Inter',sans-serif !important; 
    font-size: 14px !important;

}
.post-text-short > p  ,
.post-text-full > p {

    text-align: start !important;
	line-height: 1.75 !important;
}
.post-text-short > p > span > span ,
.post-text-full > p > span > span {

    font-family: 'Inter',sans-serif !important;
    font-size: 14px !important;
}



.post-text-short{
    margin: 0 0 8px 0;
}


.post-gallery{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
    margin: 12px 0 ;
}
.gallery-item{ 
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.2s ease;
}
.gallery-item:hover{ 
    opacity: 0.9;
}





  /* GALLERY START */

/* Основной контейнер */
.gallery-slider {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
  }
  /* Задний фон */
  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
  }
  
  /* Открытое состояние */
  .gallery-slider.open {
    visibility: visible;
    opacity: 1;
  }
  
  /* Обертка для картинки */
  .gallery-image-wrapper {
    /* position: relative; */
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    border: none;
    outline: none;
  }
  /* Само изображение */
  .gallery-image-wrapper img {
    /* display: block; */   

    width: 90vw;
    height: 90vh;
    border: none;
    outline: none;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.2s ease;

  }
  
  /* Кнопка закрыть */
  .gallery-close {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5vw;
    height: 5vw;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    z-index: 3;
    cursor: pointer;
  }
  .gallery-close > svg{
    width: 50%;
    height: 50%;
  }
  /* Стрелки навигации */
  .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    height: 50vh;
    width: 5vw;
    /* padding: 0 1rem; */
    z-index: 3;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gallery-prev { left: 0; }
  .gallery-next { right: 0; }

  .gallery-nav > svg{

    width: 50%;
    height: 50%;
  }
  .gallery-slider > button{
    outline: none;
    border: none;
    transition: 0.15s ease;
  }
  .gallery-slider > button:hover{
    cursor: pointer;
    opacity: 0.8;
  }
  /* Мобильные: стрелки скрыть (опционально) */
  @media (max-width: 857px) {
    .gallery-nav { display: none; }

    .gallery-close {
        width: 20vw;
        height: 20vw;
    }
    .article-main-container{
        grid-template-columns: 1fr;
    }
    .post-single{
        margin: 4px 0 0 0;
    }
    .post-main-photo > img{
        aspect-ratio: 16/10;
        /* border-radius: 12px; */
    }
    .ph-header{
        font-size: 20px;
    }

  }

  @media (max-width: 756px) {
    .post-gallery{
        grid-template-columns: 1fr 1fr 1fr;
    }
  }

  @media (max-width: 568px) {
    .post-gallery{
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
  }
  /* GALLERY END */








.article-hr{
    margin: 20px 8px;
    height: 1px;
    background-color: var(--gray-line-light);
    background-color: none;
    border: none;
}
  .btn-share{
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-text-3);
    color: var(--blue-more);
    /* background-color: var(--white); */
    background-color: transparent;
    border-radius: 8px;
    font-weight: 500;
    outline: none;
    margin: 8px 0 0 0;
    padding: 8px 32px 8px 20px;
    border: 1px solid var(--gray-line);
    cursor: pointer;
    transition: 0.2s ease;
  }
  .btn-share:hover{
    border: 1px solid var(--blue);

  }
  .btn-share > svg{
    width: 14px;
    height: 14px;
  }

  .post-video > iframe{
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
  }







  .amc-right{
    /* display: none; */
  }
.amcr-header{
    font-size: 12px;
    color: var(--gray-text-1);
    color: var(--blue-more);
    font-weight: 400;
    margin: 0 0 16px 8px;
    display: flex;
    align-content: center;
    gap: 4px;
}
.amcr-header > svg{ 
    width: 14px;
    height: 14px;
opacity: 0.8;
}
.amc-r-cont{
    /* background-color: var(--white); */
    padding: 8px 0 8px 8px;
    /* border: 1px solid var(--gray-line-light); */
    /* border-radius: 16px; */
    border-left: 1px solid var(--gray-line);
}
  .lastnews-cont{
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .last-ar-item{
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 12px;
    cursor: pointer;
    padding: 4px;
    border-radius: 12px;
    transition: 0.2s ease;
    border: 1px solid transparent;
}
.last-ar-item:hover{  
    /* background-color: var(--white); */
    /* border: 1px solid var(--gray-line-light); */
    /* box-shadow: 0 0 12px rgba(0,0,0,0.05); */
    opacity: 0.9;
    /* color: var(--blue); */

}
.last-ar-item:hover .lal-head{  

    color: var(--blue-more);

}
  .last-ar-left{
    padding: 4px ;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .last-ar-item > img{
    width: 100%;
    aspect-ratio: 16/11;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
  }
  .lal-head{
    font-size: 14px;
    font-weight: 400;
    /* color: var(--gray-text-3); */
    color: var(--black-2);
    transition: 0.2s ease;
  }
  .lal-date{
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--gray-text-2);
    font-weight: 400;
    margin: 0 0  0 0;
  }
  .lal-date > svg{
    width: 16px;
    height: 16px;
    color: var(--gray-text-1);
  }