/* 푸터 전용 스타일: 하단 고정 느낌과 인스타 링크 유지 */
.theme-new .footer {
  background-color: var(--theme-footer-bg);
  color: #555555;
  padding: 14px 0;
  margin-top: 0;
}

.theme-new .theme-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.theme-new .theme-footer-left {
  display: flex;
  align-items: flex-start;
  gap: 34px;
}

.theme-new .theme-footer-brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333333;
  line-height: 1;
}

.theme-new .theme-footer-info p {
  margin: 0 0 4px;
  line-height: 1.35;
  font-size: 0.82rem;
}

.theme-new .theme-footer-policy-link {
  color: #333333;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.theme-new .theme-footer-policy-link:hover {
  color: #0f4a85;
  border-color: #0f4a85;
}

.theme-new .theme-footer-copy {
  margin-top: 8px;
}

.theme-new .theme-footer-right {
  display: flex;
  gap: 12px;
}

.theme-new .theme-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #4a90e2;
  color: #4a90e2;
  font-size: 0.76rem;
  background: transparent;
}

.theme-new .theme-footer-social:hover {
  color: #2f6fb6;
  border-color: #2f6fb6;
}

.theme-new .theme-footer-social-blog {
  border-color: #7ed321;
  color: #7ed321;
}

.theme-new .theme-footer-social-blog:hover {
  color: #5ba80f;
  border-color: #5ba80f;
}

@media (max-width: 768px) {
  .theme-new .theme-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .theme-new .theme-footer-left {
    flex-direction: column;
    gap: 14px;
  }
}

/* 1920x1080 기준: 하단은 너무 작지 않게 조정 */
@media (min-width: 1400px) and (min-height: 1000px) {
  .theme-new .footer {
    padding: 10px 0;
  }

  .theme-new .theme-footer-inner {
    gap: 16px;
  }

  .theme-new .theme-footer-left {
    gap: 24px;
  }

  .theme-new .theme-footer-brand {
    font-size: 1.05rem;
  }

  .theme-new .theme-footer-info p {
    margin: 0 0 3px;
    font-size: 0.74rem;
    line-height: 1.2;
  }

  .theme-new .theme-footer-copy {
    margin-top: 6px;
  }

  .theme-new .theme-footer-social {
    width: 34px;
    height: 34px;
    font-size: 0.7rem;
  }
}
