﻿﻿.news-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.news-item img {
    opacity: 1;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

    .news-item img:hover {
        opacity: .2
    }

.news-item-overlay {
    position: relative;
    overflow: hidden;
    background: #000;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    min-width: 390px;
    min-height: 390px;
    max-height: 390px;
    width: -webkit-fill-available;
}

    .news-item-overlay:hover {
        background: #044d66;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out
    }

.news-item .mud-icon-button {
    position: absolute;
    top: 0;
    z-index: 99999;
    color: #FFFFFF;
}

.news-item .news-item-block {
    position: absolute;
    left: 0;
    bottom: 35px;
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 1px 2px #222222;
    transition: all linear .25s;
    padding-right: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: -webkit-fill-available;
}

    .news-item .news-item-block h6,
    .news-item .news-item-block p {
        max-width: 60%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* News Notice Board Carousel */
.notice-board {
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    background-color: #F2F2F2;
    box-shadow: rgba(50,50,105,0.15) 0 2px 5px 0,rgba(0,0,0,0.05) 0 1px 1px 0;
    border-right: var(--mud-palette-secondary);
    border-width: 4px;
    border-top: 0;
    border-bottom: 0;
    border-radius: 4px;
}

/* Notice Banner */
.notice-banner {
    min-height: 300px;
}
