.tag_links{
	background-size: cover;
	background-position: center center;
	min-height: 25vw;
	display: flex;
	flex-wrap: wrap;
	column-gap: 2rem;
	justify-content: center;
	align-content: center;
	padding: 1rem;
	font-family: 'Baskerville Display PT W03 Rg', serif;
}
.tag_links .tag_box{
	background-color: #FFF;
	border-radius: 12px;
	max-width: 560px;
	width: 100%;	
	margin-bottom: 2rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 1rem;
	box-shadow: 5px 5px 15px 10px rgba(0,0,0,.3);
}
.tag_links .tag_box.last{
	margin-bottom: 0;
}
.tags_headline{
	flex: 0 0 100%;
	text-align: center;
	color: #840000;
	font-family: 'Baskerville Disp PT Bold W03', serif;
    font-size: 1.5em;
	margin-bottom: 1rem
}
.tag_links .tag_link{
	flex: 0 0 48%;
	max-height: 50px;
	margin-bottom: 4%;
	border: 1px solid grey;
	border-radius: 12px;
	text-align: center;
}
.tag_links .tag_link.last{
	margin-bottom: 0;
}
.tag_links .tag_link a{
	display: inline-block;
	text-decoration: none;
	color: #000;	
	width: 100%;
	font-size: calc(15px + (18 - 15) * ((100vw - 300px) / (1600 - 300))) !important;
	line-height: 48px;
	height: 100%;
	
}
.tag_links .tag_link:hover{
	border-color: #840000;
}
.tag_links .tag_link a:hover{
	color: #840000;
}


@media screen and (min-width: 1024px){
	.tag_links{
		padding: 1.5rem;	
	}
	.tag_links .tag_box{
		width: 48%;
		padding: 2rem;
		margin-bottom: 0;
	}
	.tags_headline{
		font-size: 2em;	
	}
}