/*** News Snippet ***/
.newsfeed .container-flex {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.newsfeed a:hover {
    text-decoration: none;
}

.newsfeed .col-b .col-sm-12, .newsfeed .col-sm-24 {
    padding: 0;
}

.newsfeed .col-a .col-sm-24, .newsfeed .col-b .col-sm-24 {

}

/* See All News CTA */
.newsfeed a.button,
.newsfeed a.link-arrow,
.eventslist a.link-arrow {
    float: right;
    margin-top: 10px;
    right: 0;
    position: relative;
}

/* Column A - Left Side */
.newsfeed .col-a {
    padding: 0;
}

.newsfeed .col-sm-24 .newsitem {
    padding: 10px;
}

.newsfeed .col-sm-24 .newsitem:hover {
    background-color: #f6f7f8;
}

.newsfeed .col-a img {
    height: 360px;
	width: 100%;
	object-fit: cover;
}


/* Column B - Right Side */
.newsfeed .col-b img {
    height: 165px;
	width: 100%;
	object-fit: cover;
}

.newsfeed .col-b .col-sm-12 {
    width: calc(50% - 5px);
}

.newsfeed .col-b {
    display: flex;
    padding: 0;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
    row-gap: 0px;
    column-gap: 0px;
}

.newsfeed .col-sm-6 .secondRow {
    padding-top: 9px;
}


/* News Items - Individual Blocks */
.newsfeed .newsitem, .newsfeed .col-sm-12 .newsitem  {
    position: relative;
}

.newsfeed .col-sm-12 img {
    width: 100%;
    object-fit: cover;
}

.newsfeed .col-sm-6 img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Category */
.newsitem .description .nr_category {
    color: #333;
}

.newsfeed a:hover .nr_category {

}

/* Description */
.newsfeed .description {

}

p.nr_date {
    font-size: 1rem;
    color: #333;
    font-weight: 300;
	margin: 0px;
}

.nr-text-desc, .nr-text-desc, .nr-text-desc p {
	font-size: .8rem;
    color: #333;
    font-weight: 300;
	margin: 0px;
	margin-top: 5px;
}

.col-a .newsitem .description .nr_title {
    color: #333;
    font-weight: bolder;
    font-size: 1.35rem;
	margin-bottom: 2px;
	margin-top: 15px;
}

.col-b .newsitem .description .nr_title {
    color: #333;
    font-weight: bolder;
    font-size: 1rem;
	margin-bottom: 0px;
	margin-top: 8px;
	line-height: 1.2;
}

.newsfeed .col-sm-12 .description p {
    margin: 5px;
    font-size: 18px;
    line-height: 18px;
    color: #ffffff;
    padding: 6px;
    background-color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

/* Tablet */
@media (max-width: 1000px) {
    .newsfeed .description,
    .newsfeed .col-sm-12 .description {
        padding-left: 0;
        padding-right: 0;
    }

    .newsfeed .description .category,
    .newsfeed .col-sm-12 .description .category {
        position: relative;
        top: 0;
        font-size: 12px;
    }

    .newsfeed .col-sm-6 .description,
    .newsfeed .col-sm-12 .description p {
        font-size: 15px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        padding-bottom: 0;
    }

    .newsfeed .col-sm-12 .description p {
        font-size: 14px;
    }
	
	.newsfeed .col-b img {
		width: 100%;
		height: 120px;
		object-fit: cover;
	}

	.newsfeed .col-a img {
		height: 250px;
		width: 100%;
		object-fit: cover;
	}
}

/* Mobile */
@media (max-width: 768px) {
    .newsfeed .container-flex {
        flex-direction: column;
        justify-content: center;
    }

    .newsfeed .col-sm-12 img {
        max-height: 130px;
    }

    .newsfeed .col-sm-12.col-a img {
        max-height: 250px;
    }

    .newsfeed .col-sm-24 {
        width: 100%;
    }

    .newsfeed .col-a {
        padding-right: 0;
        margin-bottom: 10px;
    }
	
	.newsfeed .col-b img {
		width: 100%;
		height: 165px;
		object-fit: cover;
	}

	.newsfeed .col-a img {
		height: 200px;
		width: 100%;
		object-fit: cover;
	}
}