/*-------------------------------------------------------------*/

footer {
  background-color: #f9fafb;
  padding: 40px 0 0 0;
  font-family: 'Pretendard Variable', sans-serif;
  color: #333;
  border-top: 1px solid #edf2f7;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 8vw 0 3vw;
  box-sizing: border-box;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  padding-right: 40px;
}

.footer-logo {
  max-width: 220px;
  margin-bottom: 24px;
}

.footer-logo img {
  max-width: 100%;
  height: auto;
  opacity: 0.9;
}

.footer-menu {
  display: flex;
  margin-bottom: 20px;
  margin-left: 0;
  align-items: center;
  flex-wrap: wrap;
}

.footer-menu a {
  margin-right: 24px;
  text-decoration: none;
  color: #4b5563;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.footer-menu a:hover {
  color: #1e40af;
}

.footer-icon {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  opacity: 0.8;
}

.download-icon {
  width: 14px;
  height: 14px;
}

.blog-icon {
  width: 24px;
  height: 24px;
}

.insta-icon {
  width: 20px;
  height: 20px;
}

.footer-info p {
  margin-left: 0;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

.footer-right {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  text-align: right;
  padding-left: 0;
  padding-right: 40px;
  width: 50%;
}

.footer-right p {
  line-height: 0.8;
  margin-bottom: 3px;
  color: #6b7280;
}

.footer-right p:nth-child(odd) {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #4b5563;
  margin-bottom: 4px;
  text-align: right;
}

.footer-right p:nth-child(even) {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 14px;
  color: #6f7b8d;
  text-align: right;
}

.footer-right div {
  margin-bottom: 14px;
  text-align: right;
}

.footer-right div:last-child p:nth-child(even) {
  margin-bottom: 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 0px;
  padding: 4px 0;
  color: #9ca3af;
  font-size: 0.8rem;
  letter-spacing: 0.4px;
  border-top: 1px solid #edf2f7;
}

