.mass_media{
    margin-top: 120px;
    margin-bottom: 120px;
}

.mass_media__title{
    font: 700 34px / 1.2em 'Roboto Slab', Arial, Helvetica, serif;
    color: #333;
    position: relative;
    margin-bottom: 40px;
}

.mass_media__cards{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mass_media__item{
    overflow: hidden;
    width: 100%;
    height: 300px;
    border-radius: 5px;
    box-shadow: 0 10px 35px 0 rgba(70, 72, 85, .4);
}

.mass_media__item::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgb(91 91 91 / 26%);
    z-index: 2;
}

.mass_media__item::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,103,56,.75);
    opacity: 0;
    z-index: 2;
    transition: 0.3s all ease-in-out;
}

.mass_media__item:hover::after {
    opacity: 1;
}

.mass_media__item:hover .mass_media__item__content__description{
    opacity: 1;
    transform: translateY(-10px);
}

.mass_media__item:hover .mass_media__item__content__caption{
    opacity: 1;
    transform: translateY(-40px);
}

.mass_media__item:hover .mass_media__item__content__source-wrap::before{
    opacity: 0;
}



.mass_media__item__content{
    position: relative;
    box-sizing: border-box;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    border-radius: 5px;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    align-items: center;

    color: #fff;
}

.mass_media__item__content__caption{
    padding-bottom: 15px;
    position: relative;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    transition: 0.3s all ease-in-out;

    z-index: 5;
}

.mass_media__item__content__description{
    position: absolute;
    opacity: 0;
    font-size:16px;
    text-align: center;
    transition: 0.3s all ease-in-out;
    padding-right: 20px;
    padding-left: 20px;
    z-index: 5;
}

.mass_media__item__content__source-wrap{
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s all ease-in-out;
}

.mass_media__item__content__source-wrap::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 240px;
    border-radius: 0 0 10px 0;
    height: 65px;
    z-index: 3;
    background: linear-gradient(50deg, #042100 7.49%, rgba(0, 0, 0, 0) 100%);
    transition: 0.3s all ease-in-out;
}

.mass_media__item__content__source{
    position: relative;
    top: 20px;
    left: 25px;
    z-index: 5;
    font-size: 20px;
    font-weight: bolder;
    color: #d4d4d4;
}

.mass_media__item__content__date{
    position: absolute;
    top: 30px;
    right: 15px;
    z-index: 5;
}

@media (max-width: 767px){
    .mass_media__item__content{
        padding: 10px;
    }

    .mass_media__cards{
        grid-template-columns: 1fr;
    }

    .mass_media__item__content__description{
        display: none;
    }
}