/**
 * Theme Name: PHA Portal
 * Template:   generatepress
 * Author: Joe Simpson / Invisible Dragon
 */
.mt-2 {
	margin-top: 2rem;
}
.mt-1 {
	margin-top: 1rem;
}
.site-header .header-image {
	max-width: 70vw;
}
.card-icon {
	position: relative;
	transition: 0.4s linear all;
}
.card-icon:hover {
	transform: scale(1.05);
}
.card-icon a:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.icon {
	width: 24px;
	height: 24px;
}
.entry_list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.entry h3 {
	margin-bottom: 0;
}
.entry_filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}
.entry_filters .entry_filter {
	background-color: var(--contrast);
	color: #fff;
	font-size: 80%;
	text-transform: uppercase;
	padding: 5px 7.5px;
	border-radius: 7.5px;
}
.entry_filters .entry_filter.active,
.entry_filters .entry_filter:hover {
	background-color: var(--contrast-2);
}
.entry_pagination {
	margin-top: 1rem;
	display: flex;
	gap: 0.5rem;
}