.top-container {
	position: relative;
	overflow: hidden;
}

a {
	color: inherit;
}

.top-container img {
	position: relative;
}

.top-container .button-container {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.page-wrapper {
	max-width: var(--max-container-width);
	margin: auto;
	padding: 20px;
}
.page-wrapper.no-banner {
	margin-top: 100px;
}

h1 {
	text-shadow: 0 3px 4px rgba(0, 0, 0, 0.6);
	position: relative;
}

h5 {
	color: var(--light-green);
	font-size: 20px;
}

.article-list {
	margin: 5px 0;
}

ul, li {
	list-style-type: none;
}
.article-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.article-list li > a {
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	display: block;
	background-color: black;
	text-align: center;
	height: 100%;
}

.article-list li > a div {
	padding: 10px;
}

.article-list li > a div p {
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-paging {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: 10px;
	font-size: 12px;
	line-height: 20px;
}

.article-paging > * {
	min-width: 20px;
	padding: 1px 5px 0;
	height: 20px;
	text-align: center;
	margin: 0 5px;
}

.article-paging a {
	color: inherit;
}

.article-paging a:hover {
	color: var(--light-green);
}

.article-paging a.active:hover {
	color: black;
}

.article-paging .dots {
	font-weight: bold;
}

.article-paging .prev,
.article-paging .next {
	padding: 0;
	width: 20px;
}

.article-paging .prev {
	transform: rotate(180deg);
}

.article-paging .disabled {
	opacity: 0.5;
}

.article-paging .active {
	background-color: var(--light-green);
	color: var(--blue-bg);
	border-radius: 6px;
	/* font-weight: bold; */
}

.content-wrapper {
	margin: 40px 0 20px;
}

.content-wrapper h3 {
	margin: 10px 0;
	color: var(--light-green);
}

/* WEB ONLY */
@media screen and (min-width: 751px) {
	.main-container {
		display: flex;
		align-items: center;
		padding-top: 100px;
	}
	.top-container .main-img {
		width: 1400px;
		max-width: initial;
		left: 50%;
		transform: translateX(-50%);
	}

	.top-container .button-container {
		max-width: 750px;
	}

	.top-container h1 {
		left: 55%;
		top: 50%;
		font-size: 60px;
		display: inline-block;
	}

	.page-wrapper.no-banner h1 {
		font-size: 45px;
	}

	.article-list li {
		width: 25%;
		padding: 10px;
	}
}

@media screen and (min-width: 1024px) {
	.top-container .main-img {
		width: 1920px;
		max-width: initial;
		left: 50%;
		transform: translateX(-50%);
	}

	.top-container .button-container {
		max-width: var(--max-container-width);
	}

	.top-container a {
		bottom: 30px;
		right: 6%;
	}
}

/* MOBILE ONLY */
@media screen and (max-width: 750px) {
	
	.top-container h1 {
		position: absolute;
		width: 100%;
		text-align: center;
		font-size: 50px;
		bottom: 2%;
	}
	.page-wrapper.no-banner {
		margin-top: 40px
	}
	.page-wrapper.no-banner h1 {
		font-size: 35px;
	}
	.article-list li {
		width: 50%;
		padding: 5px;
		font-size: 14px;
	}

	.article-paging {
		justify-content: center;
	}
}
