body {
	min-height: 100vh;
	display: grid;
	grid-template-rows: auto 1fr auto;
}
.event {
	padding: 0 0 150px 0;
}
.event-head {
	display: flex;
	justify-content: flex-end;/*space-between; hidden for now*/
	align-items: center;
	width: 65%;
	margin: 46px auto 32px auto;
}
.event-tab-list {
	display: none;/*flex; hidden for now*/
	align-items: center;
}
.event-tab-item {
	padding: 10px 16px;
	color: #01233E;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 550;
	line-height: 26px;
	border-bottom: 2px solid #03234B;
	cursor: pointer;
}
.event-tab-item-inactive {
	color: #6A7077;
	border-bottom: 1px solid #DBDEE2;
	padding-bottom: 11px;
}
.event-filter {
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
}
.event-filter img {
	width: 32px;
	height: 18px;
}
.event-filter > div {
	color: #4C545C;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
}
.event-filter:hover > div, .event-filter > div.event-filter-selected {
	color: #01233E;
}
.event-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	width: 65%;
	margin: auto;
}
.event-list-item {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 12px;
	padding: 14px;
	border-radius: 8px;
	border: 1px solid #DBDEE2;
	background: #FFF;
}
.event-list-item:hover {
	box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.12);
}
.event-list-item-title {
	color: #01233E;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px;
	min-height: 52px;
}
.event-list-item-info {
	color: #4C545C;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
}
.event-list-item-info > div {
	display: flex;
	align-items: center;
	gap: 4px;
}
.event-list-item-info > div img{
	width: 16px;
	height: 16px;
}
@media(max-width: 1400px) {
	.event-head, .event-list {
		width: 80%;
	}
}
@media(max-width: 1280px) {
	.event-head {
		width: 90%;
	}
	.event-list {
		grid-template-columns: repeat(3, 1fr);
		width: 90%;
	}
}
@media(max-width: 1024px) {
	.event-head, .event-list {
		width: 90%;
	}
}
@media(max-width: 800px) {
	.event-list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media(max-width: 450px) {
	.event-list {
		grid-template-columns: repeat(1, 1fr);
	}
	.event-filter {
		gap: 19px;
	}
	.event-head {
		gap: 21px;
	}
}