    :root {
      --bg: #050509;
      --panel-bg: rgba(8, 8, 16, 0.9);
      --accent: #cf004c;
      --accent-soft: rgba(207, 0, 76, 0.4);
      --text: #f5f3f1;
      --muted: #8b8b9a;
      --border: rgba(255, 255, 255, 0.08);
      --radius-xl: 999px;
      --blur: 22px;
      --ui-margin: 24px;
      --mobile-safe: 16px;
    }

    * {
      box-sizing: border-box;
    }
    
    /* GT America Compressed Black */
@font-face {
  font-family: "GT America Compressed Black";
  src: url("/fonts/gt-america/GT-America-Compressed-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* GT America Extended Bold */
@font-face {
  font-family: "GT America Extended Bold";
  src: url("/fonts/gt-america/GT-America-Extended-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* GT America Extended Italic */
@font-face {
  font-family: "GT America Extended Italic";
  src: url("/fonts/gt-america/GT-America-Extended-Italic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* GT America Extended Regular */
@font-face {
  font-family: "GT America Extended Regular";
  src: url("/fonts/gt-america/GT-America-Extended-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

    html, body {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      position: fixed;
      background: #000;
      color: var(--text);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
        "Inter", "Segoe UI", sans-serif;
      overscroll-behavior: none;
      touch-action: none;
      -webkit-user-select: none; /* Safari */
      -moz-user-select: none; /* Firefox */
      -ms-user-select: none; /* Internet Explorer/Edge */
      user-select: none; /* Standard syntax */
    }

    #warp-canvas {
      position: fixed;
      top: 0;
      left: 0;
      inset: 0;
      width: 100vw;
      height: 100vh;
      overflow:hidden;
      cursor: crosshair;
      display: block;
      touch-action: none;
    }

/* Top-left wordmark / branding */
.top-bar {
  position: absolute;
  top: 20px;
  left: 20px;

  z-index: 9999;
  display: flex;
  align-items: center;

  padding: 8px 22px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.1);

  /* Soft synthwave glow */
  box-shadow:
    0 0 12px rgba(207, 0, 76, 0.35),
    0 0 30px rgba(207, 0, 76, 0.15);
}

/* Brand text */
.top-bar .brand-text {
  font-family: "GT America Extended Bold", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #f5f3f1;
  text-transform: uppercase;
  white-space: nowrap;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .top-bar {
    top: 14px;
    left: 14px;
    padding: 7px 18px;
  }
  .top-bar .brand-text {
    font-size: 14px;
  }
}

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.18); opacity: 0.7; }
    }

    .wordmark {
      letter-spacing: 0.18em;
      font-size: 11px;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--text);
      opacity: 0.9;
    }

 /* Tool panel */
.tool-panel {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-xl);
  background: var(--panel-bg);
  backdrop-filter: blur(var(--blur));
  border: 1px solid var(--border);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.03);
}

/* TOOLS label */
.tool-label {
  font-family: "GT America Extended Regular";
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}

/* Button group */
.tool-buttons {
  display: flex;
  gap: 6px;
}

/* Button */
.tool-button {
  border: 1px solid transparent;
  background: rgba(15, 15, 26, 0.95);
  color: var(--text);
  font-family: "GT America Extended Bold";
  font-size: 11px;

  padding: 6px 12px;   /* Adjusted to fit icons + text nicely */
  border-radius: var(--radius-xl);
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  opacity: 0.82;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    opacity 0.18s ease,
    transform 0.12s ease,
    box-shadow 0.18s ease;
  white-space: nowrap;
}

/* Icon wrapper */
.tool-button .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon itself */
.tool-button .icon svg {
  width: 22px;
  height: 22px;
  stroke-linejoin: round;
  stroke: currentColor;
  fill: none;
}

.tool-button .label {
  margin-left: 4px;
}

/* Hover */
.tool-button:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.55);
}

/* Active */
.tool-button.active {
  border-color: var(--accent-soft);
  background: radial-gradient(circle at top,
                  rgba(207, 0, 76, 0.4),
                  rgba(13, 13, 24, 0.95));
  box-shadow:
    0 0 16px rgba(207, 0, 76, 0.55),
    0 0 1px rgba(255, 255, 255, 0.6);
  opacity: 1;
}

/* Active icon glow (fixed clean version) */
.tool-button.active .icon svg {
  stroke: var(--accent);
  filter: drop-shadow(0 0 6px rgba(207,0,76,0.8));
}

/* Mobile: hide labels, adjust padding */
@media (max-width: 768px) {
  .tool-button .label {
    display: none;
  }
  .tool-button {
    padding: 6px 10px;
    gap: 0;
  }
}

/* Outer container */
#tool-size-slider {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 200px;

  display: flex;
  align-items: center;
  justify-content: center;

  backdrop-filter: blur(18px);
  background: rgba(10,10,18,0.35);
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: visible;
}

/* Wrapper that controls centering */
.slider-wrapper {
  position: relative;
  width: 24px;
  height: 160px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Funnel graphic */
.funnel {
  position: absolute;
  width: 34px;
  height: 100%;
  background: rgba(207, 0, 76, 0.28);
  border-radius: 8px;
  clip-path: polygon(
    28% 0%,
    72% 0%,
    55% 100%,
    45% 100%
  );
  z-index: 1;
}

/* Tool Size Slider Panel */
#tool-size-slider {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  height: 180px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 25;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 18, 0.35);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 8px 0;
}

/* Vertical range input */
#toolSize {
  writing-mode: bt-lr;          /* vertical */
  transform: rotate(-90deg);    /* rotate to make it vertical */
  width: 150px;
  height: 20px;
  cursor: pointer;
  -webkit-appearance: none;
  background: transparent;
  touch-action: manipulation;
}

/* Track */
#toolSize::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}

/* Thumb */
#toolSize::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, #cf004c);
  box-shadow: 0 0 10px rgba(207,0,76,0.6);
  cursor: pointer;
  margin-top: -5px; /* alignment fix */
}

/* (optional) Firefox support */
#toolSize::-moz-range-track {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}
#toolSize::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, #cf004c);
  box-shadow: 0 0 10px rgba(207,0,76,0.6);
  border: none;
}



.tooltip {
  position: fixed; /* <-- IMPORTANT: ensures above canvas */
  padding: 6px 12px;
  font-family: "GT America Extended Regular";
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: #f5f3f1;
  background: rgba(15, 15, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition:
  opacity 0.22s ease,
  transform 0.22s ease;
  z-index: 999999999; /* <-- makes sure nothing overlaps it */
}

.tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

.tooltip::after {
  /* subtle neon glow */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(207, 0, 76, 0.45);
  pointer-events: none;
}

.tooltip[data-tip="tool-size"] {
  margin-top: -12px;
}

/* desktop: hide tool tooltips if you want */
@media (min-width: 769px) {
  .tooltip[data-tip="grow"],
  .tooltip[data-tip="liquify"],
  .tooltip[data-tip="shrink"],
  .tooltip[data-tip="splay"],
  .tooltip[data-tip="smash"] {
    display: none;
  }
}

/* mobile: show them (default display) */
@media (max-width: 768px) {
  .tooltip[data-tip="grow"],
  .tooltip[data-tip="liquify"],
  .tooltip[data-tip="shrink"],
  .tooltip[data-tip="splay"],
  .tooltip[data-tip="smash"] {
    display: block;
  }
}

/* Remove blue tap highlight on mobile */
* {
  -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
}

/* Remove focus outline on buttons and inputs */
button,
input,
select,
textarea {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

/* Remove the weird iOS/Android double-tap zoom behavior on buttons */
button:focus,
input:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* ======================================================
   TOP-RIGHT UTILITY CLUSTER (Undo, Redo, Zoom, Info)
   ====================================================== */

#utilityCluster {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + var(--ui-margin));
  right: calc(env(safe-area-inset-right, 0px) + var(--ui-margin)) !important;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  z-index: 9999;
  pointer-events: auto;
}

/* Reuse your existing .mini-circle-btn exactly */
#utilityCluster .mini-circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;

  -webkit-tap-highlight-color: transparent; /* fixes blue highlight on mobile */
}

#utilityCluster .mini-circle-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Smaller icons scale properly */
#utilityCluster svg {
  pointer-events: none;
}

.utility-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 768px) {

  /* Hide zoom buttons on mobile */
  #zoomInBtn,
  #zoomOutBtn {
    display: none !important;
  }

  /* Top-left branding */
  .top-bar {
    top: var(--mobile-safe);
    left: var(--mobile-safe);
  }

  /* Right-side utility cluster */
  #utilityCluster {
    top: var(--mobile-safe);
    right: var(--mobile-safe) !important;
    gap: 14px;
  }
  #utilityCluster .mini-circle-btn {
    width: 44px;
    height: 44px;
  }

  /* Tool size slider (LEFT SIDE) */
  #tool-size-slider {
    left: var(--mobile-safe);
    top: 50%;
    transform: translateY(-50%);
  }

  /* Bottom TOOLBAR */
  .tool-panel {
    bottom: var(--mobile-safe);
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 18px;
  }
}


/* ===========================
   EXPORT MODAL
   =========================== */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;

  opacity: 1;
  transform: translateY(0);
  pointer-events: none; /* off by default */
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Hidden state completely disables interactions */
.modal.hidden {
  display:none !important;
}

/* Visible state restores interaction */
.modal:not(.hidden) {
  pointer-events: auto !important;
}

/* Background blur layer */
.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
}

.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease-out;
  will-change: transform;
}


/* Modal box */
.modal-box {
  position: relative;
  width: 420px;
  max-width: 90vw;

  background: rgba(15,15,25,0.88);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  padding: 28px;

  box-shadow:
    0 0 40px rgba(207,0,76,0.08),
    0 8px 50px rgba(0,0,0,0.55);

  pointer-events: auto;
  animation: modal-pop 0.2s ease;
}

@keyframes modal-pop {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* Close button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;

  width: 38px;
  height: 38px;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  color: #fff;
  cursor: pointer;

  transition: background 0.2s ease, border-color 0.2s ease;
}
.close-btn:hover {
  background: rgba(255,255,255,0.18);
}

/* Preview wrapper */
.export-preview {
  width: 50%;
  border-radius: 12px;
  overflow: hidden;
  margin:0 auto 22px auto;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);

  display: flex;
  align-items: center;
  justify-content: center;

  aspect-ratio: 16 / 9;
}

/* Mobile override (9:16) */
@media (max-width: 768px) {
  .export-preview {
    aspect-ratio: 9 / 16 !important;
    max-height: 30vh;
    width: auto;
    margin: 0 auto 16px auto;
  }
}

/* Canvas fits container exactly */
#exportPreviewCanvas {
  width: 100%;
  height: auto;
  display: block;
}

/* Titles */
.modal-title {
  font-family: "GT America Extended Bold";
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin: 18px 0 12px 0;
}

/* Export buttons */
.export-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Base button */
.export-btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 14px;
  font-family: "GT America Extended Regular";
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;

  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);

  backdrop-filter: blur(12px);

  cursor: pointer;
  transition: 
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

/* Primary (pink highlight) */
.export-btn.primary {
  background: rgba(207, 0, 76, 0.12);
  border: 1px solid rgba(207, 0, 76, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 16px;

  color: #f5f3f1;
  letter-spacing: 0.08em;

  box-shadow:
    0 0 22px rgba(207, 0, 76, 0.18),
    inset 0 0 8px rgba(207, 0, 76, 0.12);
}
.export-btn.primary:hover {
  background: rgba(207, 0, 76, 0.18);
}

/* Disabled (muted frosted) */
.export-btn.disabled {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.32);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  cursor: default;
  pointer-events: none;
  box-shadow: none;
}

/* ===========================
   SHARE ROW (updated)
   =========================== */

.share-row {
  margin: 12px auto 0 auto;
  width: 100%;
}

.share-input-wrapper {
  position: relative;
  width: 100%;
}

/* Updated input field */
#shareIdField {
  width: 100%;
  padding: 12px 50px 12px 16px;  /* space on right for copy icon */
  font-family: "GT America Extended Regular";
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0.01em;        /* smoother, more premium */
  height: 48px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  color: #f5f3f1;
  backdrop-filter: blur(10px);

  outline: none;
}

/* Copy icon INSIDE the input */
.copy-inside {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);

  width: 34px;
  height: 34px;
  border-radius: 10px;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(14px);

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.copy-inside svg {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.85);
}

.copy-inside:hover {
  background: rgba(207, 0, 76, 0.18);
  border-color: rgba(207, 0, 76, 0.45);
}


/* ===========================
   SOCIAL ICON BAR
   =========================== */

.share-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 14px 0 0 0;    /* refined spacing */
  width: 100%;
}

/* Base icon styling */
.share-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    opacity 0.22s ease,
    transform 0.22s ease;
}

.share-icon svg {
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.85);
}

.share-icon svg path {
  fill: currentColor !important;
}

/* Hover (enabled) */
.share-icon:not(.disabled):hover {
  background: rgba(207, 0, 76, 0.25);
  border-color: rgba(207, 0, 76, 0.55);
  transform: translateY(-2px);
}

/* Disabled look */
.share-icon.disabled {
  opacity: 0.35;
  filter: grayscale(1);
  cursor: not-allowed;
}

/* Neon glow */
.share-icon:not(.disabled):hover::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(207, 0, 76, 0.4);
  pointer-events: none;
}

#copyToast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000000;

  padding: 10px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 12px;
  backdrop-filter: blur(14px);

  font-size: 14px;
  color: #fff;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

#copyToast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-8px);
}

/* Subtitle beneath modal-title */
.info-subtitle {
  font-family: "GT America Extended Regular";
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: -6px;
  margin-bottom: 20px;
}

/* Body text */
.info-text p {
  font-family: "GT America Extended Regular";
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin: 0 0 18px 0;
}

.info-text strong {
  font-family: "GT America Extended Bold";
  color: #fff;
}

/* NEW: desktop-only line breaks */
.desktop-break {
  display: none;
}

/* Desktop + tablets */
@media (min-width: 601px) {
  .desktop-break {
    display: inline;
  }
}

/* Sections: SHARE / etc. */
.info-section {
  margin-top: 30px;
}

.info-section h3 {
  font-family: "GT America Extended Regular";
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: rgba(255,255,255,0.65);
  margin-top: 0;
  margin-bottom: 8px;
}

.info-section p {
  font-family: "GT America Extended Regular";
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

.info-section p:last-of-type {
  margin-top: 24px;
}

.info-link {
  color: rgba(255,255,255,0.95);
  text-decoration: underline;
}

/* Divider */
.info-divider {
  width: 100%;
  height: 1px;
  border: none;
  margin: 48px 0 22px 0;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(2px);
}

/* Footer */
.info-footer {
  text-align: center;
  opacity: 0.88;
}

.info-footer p {
  margin: 6px 0;
}

.info-signoff {
  font-family: "GT America Extended Regular";
  font-size: 12px;
  margin: 0 0 8px 0;
  color: rgba(255,255,255,0.88);
}

.info-meta {
  font-family: "GT America Extended Regular";
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.info-meta a {
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.info-meta a:hover {
  color: rgba(255,255,255,0.85);
}

/* Mobile-only break */
.mobile-break {
  display: none;
}


/* ---------------------------------------------- */
/* MOBILE STYLES */
/* ---------------------------------------------- */
@media (max-width: 600px) {

  .info-text p,
  .info-section p {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .info-subtitle {
    margin-top: -4px;
    margin-bottom: 16px;
  }

  .info-section {
    margin-top: 24px;
  }

  .info-section h3 {
    margin-bottom: 6px;
  }

  .info-section p:last-of-type {
    margin-top: 14px;
  }

  .info-divider {
    margin: 34px 0 16px 0;
  }

  .info-footer p {
    margin: 4px 0;
  }

  .info-signoff {
    font-size: 11.5px;
    margin-bottom: 6px;
  }

  .info-meta {
    font-size: 10.5px;
    line-height: 1.4;
  }

  .info-meta a {
    white-space: nowrap;
  }

  /* mobile-only footer break */
  .mobile-break {
    display: inline;
  }
}
