.NoticeCardCont{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
	padding: 10px;
	gap:12px;
}


.NoticeCard{
	box-shadow: 0px 4px 5px hsla(0, 0%, 0%, 0.03), 0px 4px 5px hsla(0, 0%, 0%, 0.08);
	border: 2px solid hsl(0 0% 85%);
	background-color: white;
	min-height: 170px;
	padding: 5px 10px;
	display: flex;
	flex-direction: column;
	border-radius: 20px;
	align-items: center;
	cursor: pointer;
}
.NoticeCard:hover{
	filter: brightness(96%);
}

.NoticeCardTitle{
	font-family: "Momo Trust Display", sans-serif;
	font-size: 30px;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 6px;
}

.NoticeCardTitle >span{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: hsl(100 0% 20%);

}

.NotiCircle{
	min-width: 26px;
	height:26px;
	border-radius: 50%;
	background-color: oklch(54.469% 0.17165 144.949);;
}

.NoticeCardType,.NoticeCardZone{
	font-size: 20px;
	margin-top: 2px;
	padding: 0px 5px;
	color: hsl(100 0% 28%);
	width: calc(100% - 10px);
}
.NoticeCardZone{
	font-size: 12px;
}
.NoticeCardDates{
	display: flex;
	gap: 10px;
	padding: 4px;
	width: calc(100% - 8px);
	align-items: center;
	justify-content: center;
}

.NoticeCardDate{
	width: 100%;
	text-align: center;
	background-color: hsl(0 0% 18%);
	color:white;
	padding: 8px;
	font-size: 15px;
	border-radius: 10px;
}

.geometryInfo{
	width: calc(100% - 28px);
	text-align: center;
	padding:4px 10px;
	margin-top:5px;
	font-weight: 200;
	font-size: 18px;
	border-radius: 15px;
	color: hsl(100 0% 25%);
	background-color: hsl(100 0% 95%);
	border: 2px solid hsl(100 0% 79%);
	cursor: pointer;
}


