/**
 * Footer Layout
 * フッターのスタイル
 *
 * @package KNOT_For_Dogs
 */

.l-footer {
  padding: 12px;
  border-top: 1px solid #80746A; /* Figma: border-top accent color */
}

.l-footer__inner {
  text-align: center;
}

.l-footer__copyright {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 1rem; /* 16px */
  line-height: 1.4;
  color: var(--color-text-muted);
  margin: 0;
}

/* CTA分のパディング（モバイル） */
@media (max-width: 767px) {
  .l-footer {
    padding-bottom: calc(12px + var(--cta-height));
  }
}
