.stacked-recent-news {
    margin-bottom: 10rem;
}

.stacked-item {
    height: 370px;
    display: block;
    background-color: white;
    box-shadow: -2px 2px 34px 2px rgba(28, 24, 28, 0.08);
    margin-bottom: 2rem;
}

.stacked__img {
    height: 250px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.stacked__details {
    padding: 2rem;
    position: relative;
}

@media screen and (min-width: 1024px) {

    .stacked__details {
        padding: 1rem;
    }
}

@media screen and (min-width: 1200px) {

    .stacked__details {
        padding: 2rem;
    }
}

.stacked__details::after {
    content: '';
    border: 2rem solid transparent;
    border-bottom: 2rem solid white;
    position: absolute;
    top: -4rem;
    left: calc(50% - 2rem);
}

.stacked__date {
    color: #AFAFAF;
    margin-top: 0;
    float: right;
}

.stacked__title {
    margin: 0;
    display: inline-block;
    color: #000000;
    transition: color .3s ease-in-out;
}

.stacked__title:hover {
    color: #F14400;
}

.stacked__category {
    display: inline-block;
    color: #F14400;
    text-transform: uppercase;
    border-bottom: 2px solid currentColor;
    margin-bottom: 1rem;
}