/* 공통 푸터 — 홈 · 스테이지 · 라이터 */
.cogrow-footer {
  flex-shrink: 0;
  border-top: 1px solid var(--line, #e7e5e4);
  background: #fff;
  margin-top: auto;
}
.cogrow-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
  max-width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
  padding: .65rem 0;
}
.cogrow-footer-main {
  display: grid;
  gap: .2rem;
  min-width: 0;
}
.cogrow-footer-links {
  margin: 0;
  font-size: .75rem;
  color: var(--muted, #78716c);
  line-height: 1.5;
}
.cogrow-footer-note {
  margin: 0;
  font-size: .68rem;
  color: #a8a29e;
  line-height: 1.45;
}
.cogrow-footer-links a {
  color: var(--muted, #78716c);
  text-decoration: none;
}
.cogrow-footer-links a:hover {
  color: var(--accent, #0f766e);
  text-decoration: underline;
}
.cogrow-footer-toggle {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: .75rem;
  font-weight: 600;
  color: #57534e;
  cursor: pointer;
  padding: .35rem .5rem;
  border-radius: 8px;
}
.cogrow-footer-toggle:hover {
  background: #f5f5f4;
}
.cogrow-footer-detail {
  border-top: 1px solid #f5f5f4;
  background: #fafaf9;
  padding: .75rem 0 1rem;
}
.cogrow-footer-detail-inner {
  max-width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: .35rem .75rem;
  font-size: .68rem;
  line-height: 1.55;
  color: #57534e;
}
@media (min-width: 640px) {
  .cogrow-footer-detail-inner { grid-template-columns: 1fr 1fr; }
}
.cogrow-footer-detail dt {
  display: inline;
  color: #a8a29e;
}
.cogrow-footer-detail dd {
  display: inline;
  margin: 0;
}
.cogrow-footer-detail a { color: #0f766e; }
.cogrow-footer-detail .full { grid-column: 1 / -1; color: #a8a29e; }
