.news-container-featured {
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.news-container-featured .section-heading {
    margin: 2rem 0 3rem 0;
}

@media (max-width: 767px) {
    .promotion .detail-copy {
        display: none;
    }
}

@media (min-width: 1300px) {
    .news-container-featured .section-heading {
        margin-top: 0;
    }
}

.news-item {
    list-style-type: none;
    background-color: white;
    box-shadow: -2px 2px 34px 2px rgba(28, 24, 28, 0.08);
    margin-bottom: 2rem;
    transform: scale(1);
    transition: transform .3s ease-in-out;
}

.news-item:hover {
    transform: scale(1.01);
}

@media screen and (min-width: 768px) {
    .news-item {
        height: 250px;
    }
}

.news-item__img {
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .news-item__img {
        height: 100%;
    }
}

.news-item__info {
    padding: 1.5rem 2rem;
    position: relative;
    height: 100%;
}

@media screen and (min-width: 992px) {
    .news-item__info {
        padding: 3rem 2.5rem;
    }
}

.news-item__info::before {
    content: '';
    width: 0;
    height: 0;
    border: 2rem solid transparent;
    border-bottom: 2rem solid white;
    position: absolute;
    top: -4rem;
    left: 50%;
    margin-left: -2rem;
}

@media screen and (min-width: 768px) {
    .news-item__info::before {
        border-right: 2rem solid white;
        border-bottom: 2rem solid transparent;
        left: -4rem;
        top: 50%;
        margin-top: -2rem;
        margin-left: 0;
    }
}

.news-item__info h3 {
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 0;
    margin-top: 1rem;
}

@media screen and (min-width: 992px) {
    .news-item__info h3 {
        margin-top: 1.6rem;
    }
}

.news-item__info h3 a {
    color: black;
    transition: color .3s ease-in-out;
}

.news-item__info h3 a:hover {
    color: #F14400;
}

.news-item__date {
    display: inline-block;
    margin-top: 0;
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    color: #AFAFAF;
}

@media screen and (min-width: 992px) {
    .news-item__date {
        top: 3rem;
    }
}

.news-item__fragment {
    display: none;
}

@media screen and (min-width: 768px) {
    .news-item__fragment {
        height: 85px;
        overflow: hidden;
        position: relative;
        display: block;
    }
}

.news-item__fragment::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
}

.news-item__more {
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    display: none;
    position: absolute;
    right: 2rem;
    bottom: 1.2rem;
}

@media screen and (min-width: 768px) {
    .news-item__more {
        display: block;
    }
}

@media screen and (min-width: 1024px) {
    .news-item__more {
        right: 2.5rem;
    }
}

/*
* Featured news
*/

.news-featured {
    height: 280px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin-bottom: 3rem;
    position: relative;
}

@media screen and (min-width: 992px) {
    .news-featured {
        height: 380px;
    }
}

.news-featured__preview {
    overflow: hidden;
    max-height: 0;
    transition: max-height .8s ease-in-out;
    position: relative;
}

.news-featured__preview p {
    color: white;
}

.news-featured__title:hover .news-featured__preview {
    max-height: 380px;
}

@media screen and (min-width: 992px) {
    .news-featured {
        height: 300px;
    }

    .news-featured__title:hover .news-featured__preview {
        max-height: 300px;
    }
}

@media screen and (min-width: 1200px) {
    .news-featured {
        height: 300px;
    }

    .news-featured__title:hover .news-featured__preview {
        max-height: 350px;
    }
}

@media screen and (min-width: 1300px) {
    .news-featured {
        height: 330px;
    }

    .news-featured__title:hover .news-featured__preview {
        max-height: 380px;
    }
}

.news-featured--event {
    height: 300px;
    transform: scale(1);
    transition: transform .3s ease-in-out;
}

.news-featured--event:hover {
    transform: scale(1.01);
}

@media screen and (min-width: 1024px) {
    .news-featured--home {
        margin-bottom: 1rem;
    }
}

.news-featured__title {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, .7);
}

.news-featured__title h3 {
    font-family: 'nunitomedium', 'Helvetica', 'Arial', sans-serif;
    letter-spacing: 1px;
    color: white;
    text-transform: uppercase;
    font-size: 2rem;
    margin: 0;
}

.news-featured__title h3 a {
    color: white;
}

/*
* News archive
*/

.news-archive {
    background-color: white;
    box-shadow: -2px 2px 34px 2px rgba(28, 24, 28, 0.08);
    margin-bottom: 2rem;
    position: relative;
}

.news-archive__img {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 150px;
}

.news-archive__title {
    padding: 2rem;
}

.news-archive__title::before {
    content: '';
    width: 0;
    height: 0;
    border: 2rem solid transparent;
    border-bottom: 2rem solid white;
    position: absolute;
    margin-top: -6rem;
    left: 50%;
    transform: translate(-50%);
}

.news-archive__more {
    margin-bottom: 0;
    text-align: right;
    text-transform: uppercase;
}

.news-see-all {
    text-align: right;
    text-transform: uppercase;
    margin-top: -1rem;
}

.news-see-all a {
    color: #AFAFAF;
    transition: color .2s ease-in-out;
}

.news-see-all a:hover {
    color: #F14400;
}
