.div_content{

}
.boxNews{
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 16px 16px;
}

.boxNews>a{
display: block;
position: relative;
height: 100%;
padding-bottom: 45px;
box-sizing: border-box;
background-color: #F9F9F9;
transition: all 0.5s ease-out 0s;
}
.boxNews>a:hover {
background-color: #FFFFFF;
box-shadow: 0px 0px 31px 0px rgba(0,0,0,0.16);
}

.boxNews>a .imgP {
display: block;
position: relative;
margin-bottom: 40px;
overflow: hidden;
background-color: #FBFBFB;
}

.boxNews>a .imgP:after{
content: "";
position: absolute;
width: 100%;
height: 40%;
display: block;
bottom: -50%;
left:0px;
transition: all 0.5s ease-out 0s;
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.39) 100%);
}

.boxNews>a .imgP:after{
bottom: 0px;
}

.boxNews>a .imgP img {
max-width: 100%;
height: auto;
transition: all 0.5s ease-out 0s;
}
.boxNews>a .zajawkaTytul {
display: block;
box-sizing: border-box;
transition: all 0.5s ease-out 0s;
padding: 0px 16px 0px 40px;
}
.boxNews>a .zajawkaTytul .tytulNews {
display: block;
font-size: 26px;
font-weight: 700;
line-height: 1.2;
color: var(--g2-color);
margin: 0px 0px 15px 0px;
position: relative;
transition: all 0.5s ease-out 0s;
}
.boxNews>a:hover .zajawkaTytul .tytulNews {
transform: translateY(-100px);
color: #FFFFFF;
}

.boxNews>a  .zajawkaNews {
font-size: 16px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: 1.6;
letter-spacing: normal;
color: #2B343B;
}


@media screen and (max-width:1500px){
.boxNews>a  .zajawkaTytul .tytulNews {font-size: 20px;line-height: 1.1em;padding-bottom: 10px;margin-bottom: 15px;}
.boxNews>a  .zajawkaNews {font-size: 16px;}
.boxNews>a  .newsDiv .zajawkaTytul .tytulNews::after {height: 2px;}
.boxNews>a  .newsDiv .moreSp {font-size: 16px;background-size: 25px auto;}
}
@media screen and (max-width:1000px){
.boxNews{grid-template-columns: 1fr 1fr;}
}
@media screen and (max-width:620px){
.boxNews{grid-template-columns: 1fr;}
}