.site_footer {
	display: flex;
	width: 100%;
	background-color: #348BEE;
	color: #fff;
	min-height: 150px;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0;
}

.container.footer_flex_wrap {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 80px;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.footer_logo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 100%;
	margin: 0;
	padding: 0 20px 0 0;  /* 우측 여백만 */
	filter: drop-shadow(0 0 5px rgba(255,255,255,0.8));
}

.footer_logo img {
  width: 64px;
  height: auto;
  display: block;
}

.footer_right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  /* flex: 1 1 0; */
}

.footer_links {
  font-weight: normal;
  margin: 0 0 8px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start; /* 좌측 정렬 */
}

.footer_links a {
  font-size: 0.9375rem;
  color: #fff;
}

.divider {
  color: #fff;
}

.footer_info .footer_texts {
  text-align: left;
  margin: 0;
}

.footer_texts p {
  margin: 2px 0;
  font-size: 0.875rem;
}

.footer_info .footer_copyright {
  color: #e8bae7;
  font-size: 0.75rem;
  margin-top: 6px;
}

/* 반응형: 900px 이하에서는 세로 정렬 */
@media (max-width: 900px) {
  .container.footer_flex_wrap {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 10px;
  }
  .footer_logo,
  .footer_links,
  .footer_info .footer_texts {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin-left: 0;
    padding-left: 0;
  }
}
