/* custom-footer 전체 스타일 */
.custom-footer {
	background: #f7f8fa;
	color: #222;
	padding: 40px 0 20px 0;
	font-family: 'Segoe UI', Arial, sans-serif;
	font-size: 16px;
	box-shadow: 0 0 16px 0 rgba(0,0,0,0.04);
}
.custom-footer-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}
.custom-footer-top {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.custom-footer-logo img {
	height: 40px;
	width: auto;
	display: block;
}
.custom-footer-nav {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}
.custom-footer-nav a {
	color: #222;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
	border-bottom: 2px solid transparent;
	padding-bottom: 2px;
}
.custom-footer-nav a:hover {
	color: #00bcd4;
	border-bottom: 2px solid #00bcd4;
}
.custom-footer-info {
	width: 100%;
	text-align: center;
}
.custom-footer-info ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px 32px;
}
.custom-footer-info li {
	color: #444;
	font-size: 0.97em;
	display: flex;
	align-items: center;
	justify-content: center;
}
.custom-footer-info > ul > li:nth-child(3) {
	padding-top: 4px;
}
.custom-footer-info li .powered-logo {
	height: 35px;
	width: auto;
	margin-top: -5px;
	margin-left: 6px;
	vertical-align: middle;
	display: inline-block;
	overflow-y: hidden;
}
.custom-footer-sns {
	margin: 10px 0 0 0;
	display: flex;
	gap: 16px;
	justify-content: center;
}
.custom-footer-sns a img {
	width: 28px;
	height: 28px;
	filter: grayscale(0.1) brightness(1.1);
	transition: filter 0.2s;
}
.custom-footer-sns a:hover img {
	filter: none;
}
.custom-footer-copy {
	margin-top: 16px;
	color: #666;
	font-size: 0.95em;
	text-align: center;
}
/* powered by 영역 */
.custom-footer-powered {
	margin-top: 12px;
	color: #888;
	font-size: 0.95em;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.custom-footer-powered .powered-logo {
	height: 22px;
	width: auto;
	vertical-align: middle;
	display: inline-block;
}
@media (max-width: 1025px) {
	.custom-footer-container {
		padding: 0 16px;
	}
	.custom-footer-top {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}
	.custom-footer-nav {
		gap: 16px;
	}
	.custom-footer-info ul {
		gap: 8px 16px;
	}
}
