    /*Смена цвета иконок у виджета*/
    .t-sociallinks__svg path {
        fill: #1E1E1E !important;
    }
    
    .t898__icon-whatsapp_wrapper svg path[fill="#27D061"] {
        fill: #1E1E1E !important;
    }


        /*Наведение на текст меню */
.txt-hover .tn-atom {
    /*cursor: pointer;*/
    transition: color 0.3s ease !important;
}

.txt-hover .tn-atom:hover {
    color: #cc8f58 !important;
}


    /*Эффект увеличения при наведении на фото */
    .t396__elem.zoomon {
            overflow: hidden;
        }
        
        .zoomon .tn-atom {
            transition: all 0.5s ease;
        }
        
        .zoomon .tn-atom:hover {
            transform: scale(1.1);
    }

    /*Закругление углов в чекбоксе формы*/
    .t-checkbox__indicator {
        border-radius: 2px !important;
    }
    /*100% ширины кнопки в форме*/
    .t-submit{
        width: 100% !important;
    }
    /*100% ширины блока новостей*/
    .js-feed-container {
    max-width: 100vw;
    padding: 0 40px !important;    /*Отступы по бокам экрана*/
    box-sizing: border-box;
    display: grid !important;
    grid-template-columns: repeat( auto-fit, minmax(220px, 1fr) );  /*Минимальная ширина карточки*/
    gap: 40px 20px;  /*Отступ между карточками, первое значение – по оси Y, второе – по оси X*/
}

.js-feed-container:before,
.js-feed-container:after{
    display: none !important;
}

.js-feed-post{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.t-feed__col-grid__post-wrapper {
    height: 100%;
}

@media screen and (max-width: 1000px){
    .js-feed-container{
        padding: 0 20px !important;   /*Отступы по бокам экрана*/ 
        grid-template-columns: repeat( auto-fit, minmax(300px, 1fr) );  /*Минимальная ширина карточки*/
        gap: 20px 20px;  /*Отступ между карточками*/
    }
}

@media screen and (max-width: 960px){
    .t-feed__container_inrow3 .t-feed__post:nth-child(-n+3) {
        margin: 0 !important;
    }
    
    .t-feed__grid-col:not(.t-slds__item) {
        margin: 0 !important;
    }    
}

@media screen and (max-width: 768px){
    .js-feed-container{
        padding: 0 20px !important;    /*Отступы по бокам экрана*/
        grid-template-columns: repeat( auto-fit, minmax(300px, 1fr) );  /*Минимальная ширина карточки*/
        gap: 20px 20px;  /*Отступ между карточками*/
    }
}

@media screen and (max-width: 480px){
    .js-feed-container{
        padding: 0 10px !important;    /*Отступы по бокам экрана*/
        grid-template-columns: repeat( auto-fit, minmax(300px, 1fr) );  /*Минимальная ширина карточки*/
        gap: 20px 20px;  /*Отступ между карточками*/
    }
}

/*—————Конец 100% ширины блока новостей—————*/

/*—————Запрет выделения элементов с классом .select-off—————*/
.select-off {
  user-select: none;        /* Отключает выделение текста */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge */
  pointer-events: none;      /* Отключает любые действия курсора (нажатия, клики) */
}
/*—————Конец запрет выделения элементов с классом .select-off—————*/

/*Настройка сетки новостей*/

@media screen and (max-width: 960px) {
    .t-feed__container_inrow1 .t-feed__post:first-child,
    .t-feed__container_inrow2 .t-feed__post:nth-child(-n+2),
    .t-feed__container_inrow3 .t-feed__post:nth-child(-n+3),
    .t-feed__container_inrow4 .t-feed__post:nth-child(-n+4) {
        margin-top: 0 !important;
    }
}
