@charset "UTF-8";

/* ======================================================
   FOOTER
   ====================================================== */
.v2_footer {
  width: 100%;
}

/* ---- top: brand band ---- */
.v2_footer_top {
  background: var(--brand);
  color: #fff;
}
.v2_footer_top_inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.v2_footer_brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v2_footer_logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.v2_footer_logo img {
  width: auto;
  height: 40px;
}
.v2_footer_tagline {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}
.v2_footer_contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.v2_footer_contact_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v2_footer_contact_item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.v2_footer_contact_item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.v2_footer_inquiry {
  width: 240px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.v2_footer_inquiry:hover {
  background: #fff;
  color: #000;
}

/* ---- bottom: info band ---- */
.v2_footer_bottom {
  background: #323232;
  display: flex;
  justify-content: center;
}
.v2_footer_bottom_inner {
  width: 100%;
  max-width: var(--content);
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.v2_footer_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid #767676;
}
.v2_footer_info_texts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.v2_footer_links,
.v2_footer_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.v2_footer_links span,
.v2_footer_meta span {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}
.v2_footer_links span {
  cursor: pointer;
}
.v2_footer_divider {
  width: 1px;
  height: 12px;
  border-radius: 1px;
  background: #767676;
}
.v2_footer_sns {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.v2_footer_sns_btn {
  display: inline-flex;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 36px 36px;
  cursor: pointer;
}
.v2_footer_sns_btn.logo_instagram {
  background-image: url("../../../assets/image/common/footer/icon_instagram.svg");
}
.v2_footer_sns_btn.logo_facebook {
  background-image: url("../../../assets/image/common/footer/icon_facebook.svg");
}
.v2_footer_sns_btn.logo_naver_blog {
  background-image: url("../../../assets/image/common/footer/icon_naver_blog.svg");
}
.v2_footer_certified {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
}
.v2_footer_certified_marks {
  display: flex;
  align-items: center;
  gap: 4px;
}
.v2_footer_certified_marks img {
  width: 40px;
  height: 40px;
}
.v2_footer_certified_text {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  line-height: 1.4;
  color: #fff;
}

@media (max-width: 1024px) {
  .v2_footer_top_inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .v2_footer_contact {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .v2_footer_info {
    flex-direction: column;
    align-items: flex-start;
  }
  .v2_footer_certified {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .v2_footer_inquiry {
    width: 100%;
  }
}
