 /* Footer (Desktop Base) */
.footer {
  width: 100%;
  background: #222;
  padding: 25px 0;
  margin-top: auto;
}


.footer__inner {
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}


.footer_left {
  display: flex;
  gap: 70px;
  color: #c7c7c7;
  align-items: center;
}


.footer_left > img {
  max-width: 220px;
  height: auto;
  display: block;
}


.footer_left > .adress > img {
  max-width: 230px;
  height: auto;
  display: block;
  margin-bottom: 8px;
}


/* FAMILY SITE DROPDOWN */
.footer_right {
  display: flex;
  justify-content: flex-end;
  position: relative;
}


.family_site {
  position: relative;
  color: #fff;
}


/* ¹öÆ° */
.family_toggle {
  background: transparent;
  border: none;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.05em;
  cursor: pointer;
  gap: 12px;
  padding: 0;
}
.family_toggle::after {
  content: "";
  display: block;
  width: 160px;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
  margin-left: 10px;
}


/* µå·Ó´Ù¿î ±âº» ¼û±è */
.family_dropdown {
  position: absolute;
  right: 0;
  bottom: 120%;
  width: 220px;


  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 14px 0;


  display: flex;
  flex-direction: column;
  gap: 10px;


  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s ease;


  z-index: 9999;
}


.family_dropdown li {
  list-style: none;
}


.family_dropdown a {
  display: block;
  padding: 8px 18px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.25s ease;
}


.family_dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
}


/* ¿­·ÈÀ» ¶§ */
.family_site.is-open .family_dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


@media (max-width: 768px) {
  /* Footer @ <=768 */
  .footer {
    padding: 28px 0;
  }


  .footer__inner {
    max-width: 1560px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 220px 1fr;
    row-gap: 14px;
    align-items: start;
  }


  .footer_left {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 220px 1fr;
    column-gap: 22px;
    row-gap: 0;
    align-items: start;
    gap: 0;
  }


  .footer_left > img {
    width: 100%;
    max-width: 150px;
  }


  .footer_left > .adress {
    color: #c7c7c7;
  }


  .footer_right {
    grid-column: 2;
    justify-content: flex-start;
    margin-top: 4px;
  }


  .family_toggle::after {
    width: clamp(160px, 28vw, 340px);
  }
}


@media (max-width: 425px) {
  .footer__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }


  .footer_left {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }


  .footer_left > img {
    align-self: center;
    max-width: 120px;
  }


  .footer_left > .adress {
    font-size: 0.98rem;
    line-height: 1.55;
  }


  .footer_right {
    width: 100%;
    justify-content: flex-start;
    margin-top: 4px;
  }


  .family_toggle {
    width: 100%;
    justify-content: flex-start;
  }


  .family_toggle::after {
    flex: 1;
    width: 160px;
  }


  .family_dropdown {
    right: auto;
    left: 0;
    width: min(240px, 92vw);
  }


  .footer_left > .adress > img {
    margin: 0 auto;
  }
}

