.boxNews{
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 25px 25px;
}

.boxNews .newsA {
box-sizing: border-box;
vertical-align: top;
display: block;
position: relative;
height: 100%;
background-color: #FFFFFF;
transition: all 0.5s ease-out 0s;
box-shadow: 0 0 30px 0 rgba(0,0,0,0.1);
padding-bottom: 145px;
}

.boxNews .newsA:hover {
box-shadow: 0 0 30px 0 rgba(0,0,0,0.03);
}

.boxNews .newsA .imgP {
display: block;
position: relative;
margin-bottom: 40px;
overflow: hidden;
}

.boxNews .newsA .imgP img {
max-width: 100%;
height: auto;
transition: all 0.5s ease-out 0s;
z-index: 2;
}
.boxNews .newsA .imgP::after {
content: "";
position: absolute;
width: 100%;
height: 40%;
display: block;
bottom: 0;
left: 0;
transition: all 0.5s ease-out 0s;
background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
z-index: 1;
}
.boxNews .newsA .zajawkaTytul {
display: block;
box-sizing: border-box;
transition: all 0.5s ease-out 0s;
padding: 0px 16px 0px 40px;
}
.boxNews .newsA .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 .newsA .zajawkaTytul .zajawkaNews {
font-size: 18px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: 1.7;
letter-spacing: normal;
color: #000000;
}
.boxNews .newsA .more {
display: inline-block;
transition: all 0.5s ease;
background-color: var(--g1-color);
border: 1px solid var(--g1-color);
color: #FFFFFF;
font-size: 13px;
padding: 15px 20px;
font-weight: 700;
text-transform: uppercase;
position: absolute;
bottom: 40px;
left: 40px;
}
.boxNews .newsA .more:hover {
background-color: #FFFFFF;
color: var(--g1-color);
}
.boxNews .newsA .more::after {
content: "";
display: inline-block;
width: 0;
height: 0;
border-top: 8px solid transparent;
border-left: 8px solid #FFFFFF;
border-bottom: 8px solid transparent;
vertical-align: middle;
margin-bottom: 2px;
margin-left: 25px;
transition: all 0.5s ease;
}

.boxNews .newsA .more:hover::after {
border-left: 8px solid var(--g1-color);
}