:root {
  --le-brand: #2563eb;
  --le-text: #182235;
  --le-muted: #5f6b7a;
  --le-border: #e5e7eb;
  --le-surface: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color: var(--le-text);
  font-family: Inter, "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.le-sessionbar {
  position: fixed;
  z-index: 9998;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px;
  background: rgba(17, 24, 39, .92);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .22);
}

.le-sessionbar a,
.le-sessionbar button {
  min-height: 34px;
  padding: 8px 12px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
}

.le-template,
.le-page-body {
  width: 100%;
}

.le-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.le-block {
  position: absolute;
  max-width: 90vw;
}

.le-text {
  white-space: pre-wrap;
}

.le-image {
  display: block;
  height: auto;
  object-fit: cover;
}

.le-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 760px) {
  .le-sessionbar {
    right: 10px;
    left: 10px;
    bottom: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .le-block {
    max-width: calc(100vw - 24px);
  }
}
