
/* ÆäÀÌÁö Ãâ·Â */

	.pageWrap {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 1px;
		margin: 20px 0;
		padding: 0;
		list-style: none;
	}
	.pageWrap li {
		list-style: none;
	}
	.pageWrap a {
		display: inline-block;
		padding: 2px 8px; /* ³ôÀÌ ´Ã¸®°í ³ÐÀÌ ÁÙÀÓ */
		border-radius: 12px;
		border: 1px solid white;
		text-decoration: none;
		color: gray;
		font-size: 25px;
		min-width: 26px;
		text-align: center;
		line-height: 1.4;
	}
	.pageWrap a:hover {
		background: #efefef;
		border-radius: 12px;
	}
	.pageWrap a.current {
		color: black;
		font-weight: bold;
		border-radius: 12px;
		border: 1px solid gray;
	}
