/* ── Footer ── */
.site-footer {
  background-color: #fafafa;
  padding: 64px 0 48px;
  position: relative;
  bottom: 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* Nav grid */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-col {
  flex: 1 1 128px;
  min-width: 128px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col-heading {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #25292f;
  line-height: 20px;
}

.footer-col-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-links li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col-links a {
  font-size: 14px;
  font-weight: 600;
  color: #717680 !important;
  text-decoration: none;
  line-height: 24px;
  transition: color 0.15s;
}

.footer-col-links a:hover {
  color: #750ef7 !important;
}

/* "New" badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  background: #ffffff;
  border: 1px solid #d5d7da;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #414651;
  line-height: 18px;
  box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid #e9eaeb;
}

.footer-logo img {
  display: block;
  height: 32px;
  width: auto;
}

.footer-copy {
  margin: 0;
  font-size: 16px;
  color: #717680;
  line-height: 24px;
}

.editor-desktop .site-header,
.editor-desktop div#root {
  width: calc(100% - 60px);
  left: 60px;
}
.editor-desktop .site-footer,
.editor-desktop main.main-container {
  width: calc(100% - 60px);
  left: 60px;
  position: relative;
}
.editor-desktop #sign-in-examples .user-account-menu {
  display: none !important;
}
.editor-mobile .site-header,
.editor-mobile .site-footer,
.editor-mobile div#root,
.editor-mobile main.main-container {
  width: 100%;
  left: 0;
}

/* Tablet (max 1024px) */
@media (max-width: 1024px) {
  .footer-inner {
    gap: 48px;
  }

  .footer-col {
    flex: 1 1 160px;
  }
}

/* Mobile large (max 768px) */
@media (max-width: 768px) {
  .site-footer {
    padding: 48px 0 36px;
  }

  .footer-inner {
    padding: 0 20px;
    gap: 40px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  .footer-col {
    flex: unset;
    min-width: unset;
  }

  .footer-col-links a {
    font-size: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 24px;
  }

  .footer-copy {
    font-size: 14px;
  }
}

/* Mobile small (max 480px) */
@media (max-width: 480px) {
  .site-footer {
    padding: 36px 0 28px;
  }

  .footer-inner {
    padding: 0 16px;
    gap: 32px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .footer-col-heading {
    font-size: 13px;
  }

  .footer-col-links {
    gap: 10px;
  }

  .footer-col-links a {
    font-size: 14px;
  }

  .footer-logo img {
    width: 140px;
  }

  .footer-copy {
    font-size: 13px;
  }
}
.ex-blog-toast {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  max-width: 400px;
  padding: 14px 18px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  z-index: 99999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: exBlogToastFadeIn 0.3s ease;
  text-align: center;
}

/* Success */
.ex-blog-toast.success {
  background: #16a34a;
}

/* Error */
.ex-blog-toast.error {
  background: #dc2626;
}

/* Info */
.ex-blog-toast.info {
  background: #2563eb;
}

/* Warning */
.ex-blog-toast.warning {
  background: #f59e0b;
  color: #111;
}

@keyframes exBlogToastFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
