/* 홈 하단 공식 링크와 카드 전체 확대 보조 */
:root { --ghd-legal-h: calc(30px + env(safe-area-inset-bottom, 0px)); }

body[data-gomna-page="home"].gomna-home-deck-on .container {
  padding-bottom: calc(58px + var(--ghd-legal-h)) !important;
}

body.gomna-home-deck-on .gomna-home-tabbar {
  bottom: var(--ghd-legal-h);
  height: 58px;
  padding-bottom: 8px;
}

.gomna-home-legal-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  height: var(--ghd-legal-h);
  padding: 9px 8px calc(5px + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
  background: #FFFFFF;
  color: #B0AAA2;
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}
.gomna-home-legal-footer a { color: inherit; text-decoration: none; }
.gomna-home-legal-footer a:focus-visible { outline: 2px solid #355F9A; outline-offset: 2px; }
html.gomna-home-viewer-open .gomna-home-legal-footer { display: none; }

@media (min-width: 700px) {
  .gomna-home-legal-footer {
    left: 50%;
    right: auto;
    width: 430px;
    transform: translateX(-50%);
  }
}
