.views-element-container h2 {
	margin-bottom: 0;
}

.block-views {
	position: relative;
}

.block-views .teaser-list,
.archive-view {
	box-sizing: content-box;
    display: flex;
    margin: 0 0 var(--gap) 0;
    position: unset;
}

.more-link {
    position: absolute;
    top: 12px;
    right: 0;
}

.block-views .teaser-list .view-content > div {
	display: inline-block;
}

.archive-view .view-content {
    margin: 0;
    display: grid;
    overflow-x: auto;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, 298px);
    position: relative;
    width: 100%;
}

.block-views .teaser-list .view-content {
	padding: 0 0 10px 10px;
    margin: 0;
    display: flex;
    overflow-x: auto;
	gap: 1rem;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
	position: relative;
	width: 100%;
}

.teaser-list article {
	display: block;
    position: relative;
    max-width: 225px;
	min-width: 225px;
    background-color: #e5e5e5;
	background: linear-gradient(185deg, rgba(0,63,35,.2) 0%, rgba(0,37,21,.2) 35%, rgba(0,63,35,.2) 100%);
    border-radius: 4px;
    padding: 32px 24px;
    margin: 12px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
	box-shadow: -1rem 1rem 2rem -1rem #000;
	box-shadow: -10px 10px 20px -10px #000;
}

.teaser-list article:hover {
	transition: all 0.3s ease-out;
    color: #ffffff;
}

.teaser-list article:hover h2 a {
	transition: all 0.3s ease-out;
    color: #f58c00;
}

.teaser-list article:hover .field--name-body {
	transition: all 0.3s ease-out;
    color: rgba(255, 255, 255, 0.8);
}

.teaser-list article:hover:before {
    transform: scale(21);
}

.teaser-list article:before {
	content: "";
    position: absolute;
    z-index: -1;
    top: -35px;
    right: -35px;
    background: #00838d;
	background: #002515;
    background: #003f23;
    height: 70px;
    width: 70px;
    border-radius: 35px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease-out;
}

.teaser-list article a {
    width: 100%;
    height: 100%;
	text-align: right;
	padding-right: 5px;
}

.teaser-list article img {
	margin: 0 auto;
    display: block;
	max-height: 200px;
    width: auto;
}

.teaser-list article .field--type-timestamp {
	font-style: italic;
}

.teaser-list article .field--name-body {
	margin-top: 10px;
}

.teaser-list article .field--type-link {
    background-color: #00838d;
	display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
	background: none;
    overflow: hidden;
    top: 0;
    right: 0;
    border-radius: 0 4px 0 32px;
}

.teaser-list article .field--type-link a {
	color: #fff;
	text-decoration: none;
}

.teaser-list article h2 {
    margin: 0 0 1rem;
	border-radius: 10px;
	font-size: 1.3rem;
	font-weight: bold;
	text-transform: uppercase;
	margin: 0;
}

article.node--view-mode-teaser h2 a {
	text-decoration: none;
	color: #000;
	left: 0;
}

article.node--view-mode-teaser h2:hover a {
	color: #a86000;
}


/* Media Queries */
@media(max-width: 1080px){	
	.block-views.views-element-container {
		position: relative;
	}
	
	.block-views.views-element-container > h2 {
		background: none;
		color: #000;
		float: none;
		height: auto;
		line-height: normal;
		margin: 0;
		top: 0;
	}
	
	.archive-view .view-content {
		align-items: center;
		justify-content: center;
	}
	
	.block-views .teaser-list .view-content {
		padding: 0;
	}
	
	.more-link {
		top: 4px;
	}
}


/*******************************************
************** Old Dark Cards***************
*******************************************/
/*
.teaser-list article {
	padding: 1.5rem;
    border-radius: 16px;
    background: linear-gradient(0deg, #434343, #262626);
    color: #fff;
    display: flex;
    flex-direction: column;
	font-size: 1rem;
    transition: .2s;
    margin: 0;
	max-width: 250px;
	min-height: 250px;
	min-width: 250px;
	box-shadow: -2rem 0 3rem -2rem #000;
}

.block-views .teaser-list .view-content article:focus-within,
.block-views .teaser-list .view-content article:hover {
	transform: translateY(-1rem) rotate(3deg);
	transform: translateY(-1rem);
}

.block-views .teaser-list .view-content article:focus-within~article,
.block-views .teaser-list .view-content article:hover~article {
	transform: translateX(130px);
}

.block-views .teaser-list .view-content article:not(:first-child) {
	margin-left: -130px;
    box-shadow: -3rem 0 3rem -2rem #000;
}

@media(max-width: 768px){
	.node--view-mode-teaser {
		margin: 0 auto;
	}
	
	.teaser-list article {
		padding: 0.5rem;
	}
	
	.teaser-list article,
	.block-views .teaser-list .view-content article:not(:first-child)	{
		box-shadow: none;
	}
	
	.block-views .teaser-list .view-content article:focus-within,
	.block-views .teaser-list .view-content article:hover {
		transform: none;
	}
}
*/