.gn-lastNotice{
	background-color: white !important;
	position: relative;
	overflow: hidden;
	border-radius: 30px;
}
.gn-lastNotice-img{
	height: 290px;
	position: relative;
	overflow: hidden;
	width: auto;
}

.gn-lastNotice-info{
	padding: 45px 25px;
}

.gn-lastNotice-info h4{
	font-family: var(--title-font-family);
	color: var(--color-text);
	font-size: 22px;
	line-height: 28px;
	text-align: center;
}

.gn-readNotice{
	display: none;
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	text-align: center;
	padding: 20px;
	font-family: var(--text-font-family);
	font-size: 18px;
	line-height: 22px;
	color: var(--color-text);
	background-color: rgba(255, 255, 255, 0.2); 
	  backdrop-filter: blur(5px); 
}
.gn-lastNotice:hover .gn-readNotice{
	display: block;
}