@charset "utf-8";

/* ===== Footer ===== */
.geumho-footer {
	position: relative;
	margin-top: 0;
	background: #fff;
	border-top: 1px solid rgba(58, 36, 21, 0.12);
}

.geumho-footer::before {
	display: block;
	width: 100%;
	height: 11px;
	background: linear-gradient(90deg, var(--geumho-pink) 0 25%, var(--geumho-teal) 25% 50%, var(--geumho-yellow) 50% 75%, #2f62ad 75% 100%);
	content: "";
}

.geumho-footer__inner {
	padding: 34px 0 38px;
}

.geumho-footer__logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 42px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.geumho-footer__logos li {
	display: flex;
	align-items: center;
	justify-content: center;
}

.geumho-footer__logos img {
	display: block;
	width: auto;
	max-width: 170px;
	max-height: 38px;
	object-fit: contain;
}

.geumho-footer__contact {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin-top: 27px;
	color: #7a6f68;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	word-break: keep-all;
}

.geumho-footer__contact span {
	color: #3a2415;
	font-weight: 800;
}

.geumho-footer__contact a {
	color: inherit;
	text-decoration: none;
}

.geumho-footer__contact a:hover {
	color: var(--geumho-pink);
}

.geumho-footer__contact i {
	display: block;
	width: 1px;
	height: 12px;
	background: rgba(58, 36, 21, 0.24);
}

/* ===== Responsive ===== */
@media all and (max-width: 768px) {
	.geumho-footer__inner {
		padding: 30px 0 34px;
	}

	.geumho-footer__logos {
		flex-wrap: wrap;
		gap: 22px 32px;
	}

	.geumho-footer__logos img {
		max-width: 145px;
		max-height: 34px;
	}

	.geumho-footer__contact {
		flex-wrap: wrap;
		margin-top: 20px;
		font-size: 13px;
	}
}

@media all and (max-width: 420px) {
	.geumho-footer__logos {
		gap: 18px 24px;
	}

	.geumho-footer__logos img {
		max-width: 128px;
		max-height: 31px;
	}

	.geumho-footer__contact {
		flex-direction: column;
		gap: 5px;
	}

	.geumho-footer__contact i {
		display: none;
	}
}