h1{
	text-align: center;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #000;
	font-weight: 700;
}

.menu ul{
  display: flex;
  gap: 20px;
  align-items: center;
	list-style-type: none;
	justify-content: space-between;
	font-size: 45px;
	padding-left: 0;
}
.menu ul a{
	color: #000;
	text-decoration: none;
	font-weight: 500;
}
.menu ul a:hover{
	color: rgba(0, 0, 0, 0.5);
}

#advanced_search{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 60px;
}

#advanced_search h5{
	margin-bottom: 0;
}

.wp-block-navigation__container{
	list-style-type: none;
	display: flex;
	align-items: center;
	gap: 20px;
	padding-left: 0;
	margin-bottom: 0;
	min-height: 60px;
}

.article-list{
	display: flex;
	list-style-type: none;
	padding-left: 0;
	gap: 20px;
	flex-wrap: wrap;
}
.article-list li{
	flex: 1 1 calc(33% - 20px);
	transition: all .3s ease;
	max-width: 33%;
}
.article-list li a{
	display: flex;
	flex-direction: column;
	gap: 20px;
	border: 2px solid #000;
	border-radius: 20px;
	background-color: #f5f5f5;
	padding: 30px 20px;
	color: #000;
	text-decoration: none;
	transition: all .3s ease;
}

.article-list li:hover{ 
	background-color: #f4f4f4;
}

.article-list li:hover a{
	color: #259ee4;
}