/* ---------------------------------------------------------------- Blog News */
.blognews-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 25px;
    width: 100%;
    position: relative;
}
a.box-blognews {
    font-family: "Sora", sans-serif; font-optical-sizing: auto;
    display: block;
    position: relative;
    width: 100%;
    float: left;
    height: 450px;
    background-color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 20px;
}
.box-blognews:nth-child(4), .box-blognews:nth-child(8), .box-blognews:nth-child(12), .box-blognews:nth-child(16),
.box-blognews:nth-child(20), .box-blognews:nth-child(24), .box-blognews:nth-child(28), .box-blognews:nth-child(32) {
    margin-right: 0;
}
.box-blognews-img {
    display: block;
    position: relative;
    width: 100%;
    height: 290px;
    border-radius: 30px;
    border: 1px solid #ececec;
    background-size: auto 140%;
    background-position: center center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
a.box-blognews:hover .box-blognews-img {
    background-size: auto 150%;
    filter: grayscale(100%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.box-blognews-cat {
    color: #000000;
    display: block;
    position: relative;
    padding: 20px 0 5px 0;
    font-size: 55%;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 90%;
}
.box-blognews-tit {
    color: #000000;
    display: block;
    height: 50px;
    position: relative;
    padding: 10px 0 10px 0;
    font-weight: 500;
    font-size: 110%;
    line-height: 97%;
}
.box-blognews-txt {
    display: block;
    position: relative;
    height: 80px;
    font-size: 80%;
    overflow-y: hidden;
    padding: 5px 0 15px 0;
}
.box-blognews-readmore {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 60%;
}
.box-blognews-readmore-linea {
    width: 30px;
    height: 3px;
    margin-right: 5px;
    margin-bottom: 2px;
    display: inline-block;
    background: linear-gradient(90deg, rgba(57,181,74,1) 0%, rgba(0,113,188,1) 100%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
a.box-blognews:hover .box-blognews-readmore-linea {
    width: 50px;
}
.box-blognews-data {
    display: block;
    position: relative;
    padding: 5px 20px 15px 20px;
    font-size: 12px;
}
.box-blognews-data-top {
    display: block;
    position: absolute;
    z-index: 50;
    top: 20px;
    right: 20px;
    width: 33%;
    padding: 10px;
    border-radius: 15px;
    background-color: rgba(0,0,0,.3);
}
.box-blognews-data-top-giorno {
    color: #ffffff;
    text-align: center;
    font-size: 36px;
    line-height: 92%;
}
.box-blognews-data-top-mese {
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    line-height: 92%;
    text-transform: uppercase;
}
.box-blognews-data-top-anno {
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    line-height: 92%;
}
/* ************************************************************************** */
/* MEDIA QUERY
/* ************************************************************************** */
/* SCHERMO più piccolo della larghezza del sito, data da fixwidth [1400px] */
@media screen and (max-width: 1400px) {
}
/* ************************************************************************** */
/* SCHERMO più piccolo della larghezza del sito, data da fixwidth [1200px] */
@media screen and (max-width: 1200px) {
}
/* ************************************************************************** */
/* SCHERMO più piccolo della larghezza del sito, data da fixwidth [1152px] */
@media screen and (max-width: 1152px) {
}
/* ************************************************************************** */
/* SCHERMO più piccolo della larghezza del sito, data da fixwidth [960px] */
@media screen and (max-width: 960px) {
    .blognews-box {
        grid-template-columns: 1fr;
        padding: 10px;
    }
}
/* ************************************************************************** */
/* IPAD mini verticale 768 x 1024 */
@media screen and (max-width: 768px) {
}
/* ************************************************************************** */
/* IPHONE 8 plus 414 x 736 */
@media screen and (max-width: 460px) {
}
/* ************************************************************************** */
/* IPHONE 8 plus 375 x 667 */
@media screen and (max-width: 375px) {
}
/* ************************************************************************** */
/* IPHONE SE 320 x 568 */
@media screen and (max-width: 320px) {
}