:root {
  --tml-ink: #12343d;
  --tml-muted: #60777c;
  --tml-teal: #087d82;
  --tml-teal-dark: #0d434b;
  --tml-mint: #dff3ee;
  --tml-cream: #f7f6f0;
  --tml-white: #fff;
  --tml-line: #c9dfda;
}

.tml-member-app {
  min-height: 78vh;
  padding: clamp(28px, 5vw, 72px) 20px 80px;
  color: var(--tml-ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(210, 240, 234, 0.82), transparent 28rem),
    var(--tml-cream);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

.tml-member-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.tml-member-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.tml-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--tml-ink);
  text-decoration: none;
}

.tml-brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: var(--tml-white);
  background: var(--tml-teal);
  font: 800 24px/1 Georgia, serif;
}

.tml-brand strong,
.tml-brand small {
  display: block;
}

.tml-brand strong {
  font-size: 18px;
  letter-spacing: 0.03em;
}

.tml-brand small {
  margin-top: 3px;
  color: var(--tml-muted);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.tml-member-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tml-member-nav a,
.tml-text-link {
  color: var(--tml-teal);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.tml-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 38px;
  align-items: end;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 34px;
  color: #effffb;
  background: linear-gradient(135deg, #123f48 0%, #0b666b 100%);
  box-shadow: 0 24px 60px rgba(13, 67, 75, 0.14);
}

.tml-eyebrow {
  margin: 0 0 13px;
  color: #72d8cf;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.tml-hero h1,
.tml-entry-copy h1,
.tml-simple-card h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.tml-hero > div > p:last-child,
.tml-entry-copy > p:last-child,
.tml-simple-card > p {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 2;
}

.tml-access-badge {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.tml-access-badge span,
.tml-access-badge strong,
.tml-access-badge small {
  display: block;
}

.tml-access-badge span {
  font-size: 12px;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.tml-access-badge strong {
  margin: 6px 0 16px;
  font-size: 22px;
}

.tml-access-badge small {
  overflow: hidden;
  text-overflow: ellipsis;
}

.tml-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.tml-course-card {
  position: relative;
  min-height: 230px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--tml-line);
  border-radius: 26px;
  color: var(--tml-ink);
  background: var(--tml-white);
  box-shadow: 0 12px 32px rgba(18, 52, 61, 0.06);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.tml-course-card:hover,
.tml-course-card:focus-visible {
  border-color: var(--tml-teal);
  box-shadow: 0 18px 40px rgba(18, 52, 61, 0.12);
  transform: translateY(-3px);
}

.tml-card-number {
  color: var(--tml-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.tml-course-card h2 {
  margin: 28px 0 10px;
  font-size: clamp(22px, 3vw, 31px);
}

.tml-course-card p {
  margin: 0;
  color: var(--tml-muted);
  line-height: 1.85;
}

.tml-card-link {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: var(--tml-teal);
  font-weight: 800;
}

.tml-version {
  margin: 28px 0 0;
  color: var(--tml-muted);
  font-size: 12px;
  text-align: right;
}

.tml-entry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 30px;
  align-items: center;
  min-height: 570px;
  padding: clamp(30px, 6vw, 68px);
  border: 1px solid var(--tml-line);
  border-radius: 34px;
  background: var(--tml-white);
}

.tml-entry-copy .tml-eyebrow,
.tml-simple-card .tml-eyebrow {
  color: var(--tml-teal);
}

.tml-login-card,
.tml-simple-card {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--tml-line);
  border-radius: 28px;
  background: var(--tml-white);
  box-shadow: 0 18px 48px rgba(18, 52, 61, 0.08);
}

.tml-simple-card {
  width: min(820px, 100%);
  margin: 52px auto 0;
}

.tml-login-card label {
  display: block;
  margin-bottom: 7px;
  color: var(--tml-ink);
  font-weight: 800;
}

.tml-login-card input[type="text"],
.tml-login-card input[type="password"] {
  box-sizing: border-box;
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid var(--tml-line);
  border-radius: 12px;
  font-size: 16px;
}

.tml-login-card .login-remember label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.tml-login-card .button-primary,
.tml-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  color: var(--tml-white);
  background: var(--tml-teal);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.tml-login-card .login-submit .button-primary {
  width: 100%;
}

.tml-alert {
  margin-bottom: 20px;
  padding: 17px 18px;
  border-radius: 14px;
  color: #71440e;
  background: #fff2d9;
  line-height: 1.75;
}

.tml-purchase-success {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid #b9dfd4;
  border-radius: 16px;
  color: #174b4d;
  background: #edf9f5;
  line-height: 1.8;
}

.tml-purchase-success strong {
  color: var(--tml-teal);
  font-size: 18px;
}

.tml-help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.tml-denied {
  border-color: #efd9b8;
}

.tml-steps {
  display: grid;
  gap: 14px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
  counter-reset: tml-step;
}

.tml-steps li {
  position: relative;
  padding: 18px 18px 18px 62px;
  border-radius: 16px;
  background: #f0f8f5;
  counter-increment: tml-step;
}

.tml-steps li::before {
  position: absolute;
  top: 17px;
  left: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--tml-white);
  background: var(--tml-teal);
  content: counter(tml-step);
  font-weight: 900;
}

.tml-steps strong,
.tml-steps span {
  display: block;
}

.tml-steps span {
  margin-top: 5px;
  color: var(--tml-muted);
  line-height: 1.7;
}

.tml-guide {
  display: grid;
  gap: 22px;
  width: min(960px, 100%);
  margin: 0 auto;
}

.tml-guide-hero,
.tml-guide-section,
.tml-guide-tip {
  border: 1px solid var(--tml-line);
  border-radius: 28px;
  background: var(--tml-white);
  box-shadow: 0 18px 48px rgba(18, 52, 61, 0.08);
}

.tml-guide-hero {
  padding: clamp(34px, 6vw, 62px);
  color: #effffb;
  background: linear-gradient(135deg, #123f48 0%, #0b666b 100%);
}

.tml-guide-hero h1 {
  margin: 0;
  color: #effffb !important;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.tml-guide-hero > p:last-child {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.9;
}

.tml-guide-hero .tml-guide-hero-lead {
  max-width: 780px;
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.9;
  text-align: left;
}

.tml-guide-hero .tml-guide-hero-rule {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  margin: 24px 0 0;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  line-height: 1.65;
}

.tml-guide-hero-rule strong {
  color: #8be5dc;
}

.tml-guide-section {
  padding: clamp(28px, 5vw, 48px);
}

.tml-guide-kicker {
  margin: 0 0 8px;
  color: var(--tml-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.tml-guide-section h2,
.tml-guide-tip h2 {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.45;
}

.tml-guide-intro {
  margin: 12px 0 0;
  color: var(--tml-muted);
  line-height: 1.85;
}

.tml-video-entry {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin: 0 0 24px;
  padding: 24px;
  border: 1px solid var(--tml-line);
  border-radius: 18px;
  background: var(--tml-white);
}

.tml-video-entry p {
  flex: 1 1 280px;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.tml-video-entry strong,
.tml-video-entry p span {
  display: block;
}

.tml-guide-video {
  scroll-margin-top: 90px;
}

.tml-video-duration {
  display: inline-block;
  margin-left: 12px;
  color: var(--tml-muted);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.tml-guide-video .tml-video-button {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 24px;
  max-width: 100%;
  box-sizing: border-box;
}

.tml-video-button span {
  font-size: 14px;
  font-weight: 500;
}

.tml-guide-video .tml-video-note {
  margin: 14px 0 24px;
  color: var(--tml-muted);
  font-size: 14px;
  line-height: 1.8;
}

.tml-guide-video .tml-video-toc-title {
  margin: 0 0 12px;
  font-size: 20px;
}

.tml-guide-video .tml-video-chapters {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tml-guide-video .tml-video-chapters li {
  display: grid;
  grid-template-columns: 4.2em minmax(0, 1fr);
  gap: 8px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--tml-line);
  font-size: 16px;
  line-height: 1.7;
}

.tml-video-time {
  color: var(--tml-teal-dark);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.tml-video-entry a:focus-visible,
.tml-guide-video a:focus-visible {
  outline: 3px solid var(--tml-teal-dark);
  outline-offset: 4px;
}

.tml-guide-materials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.tml-guide-materials li {
  padding: 18px 20px;
  border: 1px solid var(--tml-line);
  border-radius: 17px;
  background: #fbfdfc;
}

.tml-guide-materials strong,
.tml-guide-materials span,
.tml-guide-plus strong,
.tml-guide-plus span,
.tml-guide-boundary strong,
.tml-guide-boundary span {
  display: block;
}

.tml-guide-materials strong {
  font-size: 16px;
}

.tml-guide-materials span {
  margin-top: 5px;
  color: var(--tml-muted);
  font-size: 14px;
  line-height: 1.7;
}

.tml-guide-plus,
.tml-guide-boundary {
  margin: 14px 0 0;
  padding: 17px 19px;
  border-radius: 16px;
  background: #eaf7f3;
}

.tml-guide-plus strong,
.tml-guide-boundary strong {
  color: var(--tml-teal);
  font-size: 14px;
}

.tml-guide-plus span,
.tml-guide-boundary span {
  margin-top: 4px;
  color: var(--tml-muted);
  font-size: 14px;
  line-height: 1.75;
}

.tml-guide-flow {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  counter-reset: tml-guide-step;
}

.tml-guide-flow li {
  position: relative;
  padding: 20px 20px 20px 68px;
  border-radius: 18px;
  background: #f0f8f5;
  counter-increment: tml-guide-step;
}

.tml-guide-flow li::before {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--tml-white);
  background: var(--tml-teal);
  content: counter(tml-guide-step);
  font-weight: 900;
}

.tml-guide-flow strong,
.tml-guide-flow span {
  display: block;
}

.tml-guide-flow span {
  margin-top: 6px;
  color: var(--tml-muted);
  line-height: 1.75;
}

.tml-guide-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.tml-guide-methods section {
  padding: 24px;
  border: 1px solid var(--tml-line);
  border-radius: 20px;
  background: #fbfdfc;
}

.tml-guide-methods span {
  color: var(--tml-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.tml-guide-methods h3 {
  margin: 14px 0 9px;
  font-size: 21px;
}

.tml-guide-methods p {
  margin: 0;
  color: var(--tml-muted);
  line-height: 1.8;
}

.tml-guide-roles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.tml-guide-roles section {
  padding: 22px;
  border: 1px solid var(--tml-line);
  border-radius: 19px;
  background: #fbfdfc;
}

.tml-guide-roles span {
  color: var(--tml-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.tml-guide-roles h3 {
  margin: 9px 0 7px;
  font-size: 19px;
}

.tml-guide-roles p {
  margin: 0;
  color: var(--tml-muted);
  line-height: 1.75;
}

.tml-guide-tip {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: clamp(28px, 5vw, 48px);
  background: #eaf7f3;
}

.tml-guide-tip-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 20px;
  color: var(--tml-white);
  background: var(--tml-teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.tml-guide-tip p,
.tml-guide-tip ul {
  line-height: 1.85;
}

.tml-guide-tip p {
  margin: 12px 0 0;
}

.tml-guide-tip ul {
  margin: 16px 0 0;
  padding-left: 1.35em;
}

.tml-guide-tip li + li {
  margin-top: 7px;
}

.tml-guide-tip .tml-guide-tip-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--tml-line);
  color: var(--tml-teal-dark);
  font-weight: 800;
}

.tml-guide-reading-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.tml-guide-reading-links a {
  display: block;
  padding: 20px;
  border: 1px solid var(--tml-line);
  border-radius: 18px;
  color: var(--tml-ink);
  background: #fbfdfc;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.tml-guide-reading-links a:hover,
.tml-guide-reading-links a:focus-visible {
  border-color: var(--tml-teal);
  transform: translateY(-2px);
}

.tml-guide-reading-links strong,
.tml-guide-reading-links span {
  display: block;
}

.tml-guide-reading-links span {
  margin-top: 7px;
  color: var(--tml-muted);
  font-size: 14px;
  line-height: 1.7;
}

.tml-account-list {
  margin: 30px 0;
}

.tml-account-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--tml-line);
}

.tml-account-list dt {
  color: var(--tml-muted);
}

.tml-account-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.tml-account-list dd strong {
  color: var(--tml-teal);
}

.tml-ready-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}

.tml-ready-row span,
.tml-ready-row strong {
  padding: 8px 12px;
  border-radius: 999px;
  background: #edf4f2;
}

.tml-ready-row strong {
  color: var(--tml-teal);
  background: var(--tml-mint);
}

.tml-async-root {
  min-height: 520px;
}

.tml-loading {
  display: flex;
  min-height: 420px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--tml-muted);
}

.tml-loading span {
  width: 24px;
  height: 24px;
  border: 3px solid var(--tml-line);
  border-top-color: var(--tml-teal);
  border-radius: 50%;
  animation: tml-spin 700ms linear infinite;
}

@keyframes tml-spin {
  to {
    transform: rotate(360deg);
  }
}

.tml-study-hero,
.tml-hub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 30px;
  color: #effffb;
  background: linear-gradient(135deg, #123f48 0%, #0b666b 100%);
  box-shadow: 0 24px 60px rgba(13, 67, 75, 0.14);
}

.tml-study-hero h1,
.tml-hub-hero h1,
.tml-index-panel h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.tml-study-hero p:not(.tml-eyebrow),
.tml-hub-hero p:not(.tml-eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  line-height: 1.9;
}

.tml-study-actions {
  display: flex;
  min-width: 230px;
  flex-direction: column;
  gap: 12px;
}

.tml-study-actions .tml-button {
  color: var(--tml-teal-dark);
  background: #e8fff8;
}

.tml-outline-link {
  color: #d6f8f1;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.tml-branch-nav {
  display: grid;
  grid-template-columns: repeat(var(--tml-branch-count, 6), minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 0;
}

.tml-branch-nav a {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid var(--tml-line);
  border-radius: 14px;
  color: var(--tml-ink);
  background: var(--tml-white);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.tml-branch-nav a:hover,
.tml-branch-nav a:focus-visible {
  border-color: var(--tml-teal);
  color: var(--tml-teal);
}

.tml-study-tools {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) minmax(260px, 0.75fr);
  gap: 20px;
  align-items: center;
  margin: 30px 0 0;
  padding: 22px 24px;
  border: 1px solid var(--tml-line);
  border-radius: 20px;
  background: var(--tml-white);
}

.tml-progress-copy strong,
.tml-progress-copy span,
.tml-study-search span {
  display: block;
}

.tml-progress-copy strong {
  font-size: 18px;
}

.tml-progress-copy span {
  margin-top: 3px;
  color: var(--tml-muted);
  font-size: 11px;
}

.tml-progress-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2eeeb;
}

.tml-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--tml-teal), #56c8bc);
  transition: width 180ms ease;
}

.tml-study-search span {
  margin-bottom: 7px;
  color: var(--tml-muted);
  font-size: 11px;
  font-weight: 800;
}

.tml-study-search input,
.tml-index-panel input[type="search"] {
  box-sizing: border-box;
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--tml-line);
  border-radius: 12px;
  color: var(--tml-ink);
  background: #fbfdfc;
  font: inherit;
}

.tml-study-search input:focus,
.tml-index-panel input[type="search"]:focus {
  border-color: var(--tml-teal);
  outline: 3px solid rgba(8, 125, 130, 0.12);
}

.tml-study-section {
  padding-top: 58px;
  scroll-margin-top: 30px;
}

.tml-section-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 26px;
}

.tml-section-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: var(--tml-white);
  background: var(--tml-teal);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.tml-section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 39px);
}

.tml-section-heading p {
  max-width: 700px;
  margin: 8px 0 0;
  color: var(--tml-muted);
  line-height: 1.8;
}

.tml-soft-button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--tml-line);
  border-radius: 12px;
  color: var(--tml-teal-dark);
  background: #edf6f3;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.tml-group-title {
  margin: 34px 0 14px;
  color: var(--tml-teal-dark);
  font-size: 19px;
}

.tml-recall-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tml-recall-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--tml-line);
  border-radius: 22px;
  background: var(--tml-white);
  box-shadow: 0 12px 28px rgba(18, 52, 61, 0.05);
}

.tml-recall-card.is-open {
  border-color: #8bc5bc;
}

.tml-recall-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tml-scope {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  color: var(--tml-teal);
  background: var(--tml-mint);
  font-size: 12px;
  font-weight: 900;
}

.tml-recall-top small {
  color: #8a9b9f;
  font-weight: 800;
}

.tml-recall-card h4 {
  margin: 26px 0 24px;
  font-size: 20px;
  line-height: 1.65;
}

.tml-answer-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  color: var(--tml-muted);
  font-size: 13px;
  font-weight: 800;
}

.tml-answer-content {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--tml-line);
}

.tml-numbered-answer {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tml-numbered-answer li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 8px;
  line-height: 1.8;
}

.tml-answer-number {
  color: var(--tml-teal);
  font-weight: 900;
}

.tml-card-note,
.tml-card-example {
  margin: 18px 0 0;
  padding: 14px 15px;
  border-radius: 13px;
  color: var(--tml-muted);
  background: #f0f7f5;
  line-height: 1.75;
}

.tml-card-note strong,
.tml-card-example strong,
.tml-card-refs > span {
  display: block;
  margin-bottom: 4px;
  color: var(--tml-teal-dark);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.tml-card-refs {
  display: grid;
  gap: 7px;
  margin-top: 18px;
}

.tml-card-refs a {
  color: var(--tml-teal);
  font-size: 12px;
  line-height: 1.6;
}

.tml-card-bottom {
  margin: 20px -24px -24px;
  padding: 16px 24px;
  border-top: 1px solid var(--tml-line);
  border-radius: 0 0 22px 22px;
  background: #fbfdfc;
}

.tml-check-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  cursor: pointer;
}

.tml-check-label input {
  width: 20px;
  height: 20px;
  accent-color: var(--tml-teal);
}

.tml-pending-label {
  color: var(--tml-muted);
  font-size: 12px;
}

.tml-index-panel {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--tml-line);
  border-radius: 28px;
  background: var(--tml-white);
  box-shadow: 0 18px 48px rgba(18, 52, 61, 0.08);
}

.tml-index-panel > p:not(.tml-eyebrow):not(.tml-index-summary) {
  margin: 16px 0 24px;
  color: var(--tml-muted);
  line-height: 1.8;
}

.tml-index-panel input[type="search"] {
  min-height: 54px;
  font-size: 16px;
}

.tml-index-summary {
  margin: 20px 0 10px;
  color: var(--tml-muted);
  font-size: 13px;
  font-weight: 800;
}

.tml-index-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tml-index-result {
  display: grid;
  gap: 5px;
  padding: 17px 18px;
  border: 1px solid var(--tml-line);
  border-radius: 15px;
  color: var(--tml-ink);
  background: #fbfdfc;
  text-decoration: none;
}

.tml-index-result:hover,
.tml-index-result:focus-visible {
  border-color: var(--tml-teal);
}

.tml-index-result span {
  color: var(--tml-muted);
  font-size: 12px;
}

.tml-index-result small {
  color: var(--tml-teal);
  font-weight: 800;
}

.tml-route-index {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 0 80px;
  background: #fffef9;
}

/* The quick index is a self-contained workspace. Remove only the surrounding
   theme chrome on this route so it matches the approved full-width preview. */
body.tml-quick-index-route #wrapper,
body.tml-quick-index-route #wrapper-in,
body.tml-quick-index-route #content-w,
body:has(.tml-route-index) #wrapper,
body:has(.tml-route-index) #wrapper-in,
body:has(.tml-route-index) #content-w {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.tml-quick-index-route #wrapper-in > header,
body.tml-quick-index-route #wrapper-in > footer,
body.tml-quick-index-route #st-header-cardlink-wrapper,
body:has(.tml-route-index) #wrapper-in > header,
body:has(.tml-route-index) #wrapper-in > footer,
body:has(.tml-route-index) #st-header-cardlink-wrapper {
  display: none !important;
}

.tml-route-index .tml-member-wrap {
  width: 100%;
  max-width: none;
}

.tml-index-member-header {
  display: none;
}

.tml-quick-index {
  --quick-ink: #123a42;
  --quick-deep: #123f46;
  --quick-green: #087e82;
  --quick-mint: #e7f5f1;
  --quick-line: #c7ddd8;
  min-height: 100vh;
  color: var(--quick-ink);
  background: #fffef9;
}

.tml-quick-index-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 58px;
  padding: 0 30px;
  border-bottom: 1px solid #d7e6e2;
  background: rgba(255, 254, 249, 0.95);
  backdrop-filter: blur(14px);
}

.tml-quick-index-header a,
.tml-quick-link-groups a,
.tml-quick-branch-index a,
.tml-quick-pdf-index a,
.tml-quick-index-footer a {
  color: var(--quick-ink);
  text-decoration: none;
}

.tml-quick-index-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
}

.tml-quick-index-brand-mark {
  color: var(--quick-green);
  font-size: 18px;
  line-height: 1;
}

.tml-quick-index-header nav {
  display: flex;
  gap: 22px;
}

.tml-quick-index-header nav a {
  color: #567378;
  font-size: 11px;
  font-weight: 850;
}

.tml-quick-index-map-link {
  justify-self: end;
  color: #557378 !important;
  font-size: 12px;
  font-weight: 800;
}

.tml-quick-index-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 62px 30px 26px;
}

.tml-quick-index-top p {
  margin: 0 0 8px;
  color: var(--quick-green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.tml-quick-index-top h1 {
  margin: 0;
  color: var(--quick-ink);
  font-size: clamp(30px, 5vw, 54px);
  letter-spacing: -0.055em;
}

.tml-quick-combined-pdf {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--quick-deep);
  font-size: 12px;
  font-weight: 900;
}

.tml-quick-top-actions {
  display: flex;
  flex: none;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.tml-quick-ai-launcher-button {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  margin: 0;
  padding: 12px 17px;
  border: 1px solid #8fbab4;
  border-radius: 999px;
  color: var(--quick-green);
  background: #fff;
  box-shadow: none;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  cursor: pointer;
}

.tml-quick-ai-launcher-button:hover,
.tml-quick-ai-launcher-button:focus-visible {
  border-color: var(--quick-green);
  color: #fff;
  background: var(--quick-green);
}

.tml-ai-launcher-dialog {
  width: min(680px, calc(100% - 32px));
  max-width: none;
  max-height: min(760px, calc(100% - 32px));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 22px;
  color: var(--quick-ink);
  background: transparent;
  box-shadow: 0 32px 90px rgba(8, 45, 49, 0.32);
}

.tml-ai-launcher-dialog::backdrop {
  background: rgba(9, 42, 46, 0.52);
  backdrop-filter: blur(3px);
}

.tml-ai-launcher-card {
  padding: 26px;
  border: 1px solid #c7ddd8;
  border-radius: 22px;
  background: #fffef9;
}

.tml-ai-launcher-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}

.tml-ai-launcher-heading p {
  margin: 0 0 5px;
  color: var(--quick-green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.tml-ai-launcher-heading h2 {
  margin: 0;
  color: var(--quick-ink);
  font-size: 25px;
  letter-spacing: -0.035em;
}

.tml-ai-launcher-close {
  min-height: 0;
  margin: 0;
  padding: 8px 11px;
  border: 1px solid #c7ddd8;
  border-radius: 9px;
  color: #587276;
  background: #fff;
  box-shadow: none;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
}

.tml-ai-launcher-intro {
  margin: 14px 0 20px;
  color: #607b7e;
  font-size: 12px;
  line-height: 1.8;
}

.tml-ai-launcher-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tml-ai-launcher-field {
  display: grid;
  gap: 7px;
}

.tml-ai-launcher-field > span,
.tml-ai-launcher-modes legend {
  color: #587276;
  font-size: 11px;
  font-weight: 850;
}

.tml-ai-launcher-field select {
  width: 100%;
  min-height: 46px;
  margin: 0;
  padding: 0 38px 0 13px;
  border: 1px solid #bad1cc;
  border-radius: 11px;
  color: var(--quick-ink);
  background-color: #fff;
  box-shadow: none;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
}

.tml-ai-launcher-field select:focus {
  border-color: var(--quick-green);
  outline: 2px solid rgba(8, 126, 130, 0.18);
  outline-offset: 1px;
}

.tml-ai-launcher-field select:disabled {
  color: #87999b;
  background: #f1f5f3;
}

.tml-ai-launcher-modes {
  min-width: 0;
  margin: 18px 0 0;
  padding: 0;
  border: 0;
}

.tml-ai-launcher-modes > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 7px;
}

.tml-ai-launcher-mode {
  min-height: 0;
  margin: 0;
  padding: 9px 12px;
  border: 1px solid #c7ddd8;
  border-radius: 9px;
  color: #46686c;
  background: #fff;
  box-shadow: none;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
}

.tml-ai-launcher-mode[aria-pressed="true"] {
  border-color: #77b9b4;
  color: var(--quick-green);
  background: var(--quick-mint);
}

.tml-ai-launcher-summary {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: 11px;
  color: #486b6f;
  background: #edf7f4;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.65;
}

.tml-ai-launcher-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tml-ai-launcher-primary,
.tml-ai-launcher-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 0;
  padding: 11px 15px;
  border-radius: 10px;
  box-shadow: none;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.4;
  text-decoration: none !important;
  cursor: pointer;
}

.tml-ai-launcher-primary {
  border: 1px solid var(--quick-green);
  color: #fff !important;
  background: var(--quick-green);
}

.tml-ai-launcher-secondary {
  border: 1px solid #bad1cc;
  color: #45666a;
  background: #fff;
}

.tml-ai-launcher-primary[aria-disabled="true"],
.tml-ai-launcher-secondary:disabled {
  border-color: #cedad7;
  color: #8a9a9b !important;
  background: #edf1f0;
  cursor: not-allowed;
}

.tml-ai-launcher-status {
  min-height: 18px;
  margin: 9px 0 0;
  color: var(--quick-green);
  font-size: 10px;
  font-weight: 750;
}

.tml-quick-search {
  position: relative;
  z-index: 10;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 30px 18px;
}

.tml-quick-search > label {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid #8fbab4;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 11px 30px rgba(25, 77, 80, 0.07);
}

.tml-quick-search-icon {
  color: var(--quick-green);
  font-size: 24px;
  line-height: 1;
}

.tml-quick-search input {
  min-width: 0;
  min-height: 0;
  padding: 15px 0;
  border: 0;
  outline: 0;
  color: var(--quick-ink);
  background: transparent;
  box-shadow: none;
  font: inherit;
  font-size: 14px;
}

.tml-quick-search input:focus {
  border: 0;
  outline: 0;
  box-shadow: none;
}

.tml-quick-search-count {
  color: #78908e;
  font-size: 10px;
  font-weight: 850;
}

.tml-quick-search-results {
  position: absolute;
  z-index: 30;
  top: 59px;
  right: 30px;
  left: 30px;
  max-height: min(500px, 60vh);
  overflow: auto;
  padding: 8px;
  border: 1px solid #a9cac4;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(10, 52, 54, 0.24);
}

.tml-quick-search-results[hidden] {
  display: none;
}

.tml-quick-search-results a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  border-bottom: 1px solid #edf3f1;
}

.tml-quick-search-results a:hover,
.tml-quick-search-results a:focus-visible {
  border-radius: 9px;
  background: var(--quick-mint);
}

.tml-quick-search-results strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tml-quick-search-results span,
.tml-quick-search-results small,
.tml-quick-search-results p {
  color: #70888b;
  font-size: 9px;
  font-weight: 750;
}

.tml-quick-search-results p {
  margin: 0;
  padding: 12px;
  text-align: center;
}

.tml-quick-link-groups {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 30px 54px;
}

.tml-quick-link-groups article {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 15px 0;
  border-top: 1px solid var(--quick-line);
}

.tml-quick-link-groups article:last-child {
  border-bottom: 1px solid var(--quick-line);
}

.tml-quick-link-groups h2 {
  margin: 3px 0 0;
  color: #577276;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.tml-quick-link-groups article > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tml-quick-link-groups a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 10px;
  border: 1px solid #c7ddd8;
  border-radius: 8px;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
}

.tml-quick-link-groups a:hover,
.tml-quick-link-groups a:focus-visible,
.tml-quick-branch-index a:hover,
.tml-quick-branch-index a:focus-visible,
.tml-quick-pdf-index a:hover,
.tml-quick-pdf-index a:focus-visible {
  color: var(--quick-green);
}

.tml-quick-branch-index {
  padding: 54px max(30px, calc((100vw - 1120px) / 2));
  color: #fff;
  background: var(--quick-deep);
}

.tml-quick-branch-category + .tml-quick-branch-category {
  margin-top: 38px;
}

.tml-quick-branch-category > h2 {
  margin: 0 0 12px;
  color: #9fe1d6;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.tml-quick-branch-category > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.tml-quick-branch-category details {
  border: 1px solid #416d70;
  border-radius: 10px;
  background: #173f46;
}

.tml-quick-branch-category summary {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 13px;
  cursor: pointer;
  list-style: none;
  color: #edf8f5;
  font-size: 11px;
  font-weight: 800;
}

.tml-quick-branch-category summary::-webkit-details-marker {
  display: none;
}

.tml-quick-branch-category summary small {
  color: #77c4ba;
  font-size: 9px;
}

.tml-quick-branch-category nav {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0 10px 10px;
}

.tml-quick-branch-category nav a {
  padding: 5px 7px;
  border-radius: 6px;
  color: #d5e9e5;
  background: #0f3339;
  font-size: 9px;
  line-height: 1.4;
}

.tml-quick-branch-category nav .tml-quick-page-top-link {
  color: #0b7478;
  background: #dff4ef;
  font-weight: 900;
}

.tml-quick-pdf-index {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 30px;
}

.tml-quick-pdf-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--quick-line);
}

.tml-quick-pdf-heading h2 {
  margin: 0;
  font-size: 22px;
}

.tml-quick-pdf-heading a {
  color: var(--quick-green);
  font-size: 11px;
  font-weight: 900;
}

.tml-quick-pdf-links {
  columns: 3 260px;
  column-gap: 34px;
  padding-top: 12px;
}

.tml-quick-pdf-links a {
  display: block;
  break-inside: avoid;
  padding: 7px 0;
  border-bottom: 1px dotted #d3e2df;
  font-size: 10px;
  line-height: 1.55;
}

.tml-quick-index-footer {
  display: flex;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 30px 40px;
  border-top: 1px solid var(--quick-line);
  color: #78908e;
  font-size: 10px;
}

.tml-quick-index-footer a {
  color: var(--quick-green);
  font-weight: 900;
}

.tml-hub-section {
  padding-top: 44px;
}

.tml-hub-section h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 34px);
}

.tml-library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tml-library-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--tml-line);
  border-radius: 20px;
  color: var(--tml-ink);
  background: var(--tml-white);
  box-shadow: 0 10px 28px rgba(18, 52, 61, 0.05);
  text-decoration: none;
}

.tml-library-card:hover,
.tml-library-card:focus-visible {
  border-color: var(--tml-teal);
  box-shadow: 0 15px 34px rgba(18, 52, 61, 0.1);
}

.tml-library-card strong {
  font-size: 19px;
  line-height: 1.55;
}

.tml-library-card span {
  margin-top: 8px;
  color: var(--tml-muted);
  font-size: 13px;
  line-height: 1.7;
}

.tml-library-card small {
  margin-top: auto;
  padding-top: 18px;
  color: var(--tml-teal);
  font-weight: 800;
}

.tml-load-error,
.tml-empty-state,
.tml-noscript {
  padding: 24px;
  border: 1px solid #efd9b8;
  border-radius: 18px;
  color: #71440e;
  background: #fff8ea;
}

.tml-load-error {
  width: min(680px, 100%);
  margin: 80px auto;
}

.tml-load-error p {
  margin: 8px 0 20px;
}

@media (max-width: 760px) {
  .tml-member-app.tml-route-index {
    padding-inline: 0;
  }

  .tml-quick-index-header {
    grid-template-columns: 1fr auto;
    min-height: 52px;
    padding: 0 16px;
  }

  .tml-quick-index-header nav {
    display: none;
  }

  .tml-quick-index-map-link {
    font-size: 10px;
  }

  .tml-quick-index-top {
    flex-direction: column;
    align-items: start;
    gap: 18px;
    padding: 40px 18px 20px;
  }

  .tml-quick-index-top h1 {
    font-size: 32px;
  }

  .tml-quick-combined-pdf {
    padding: 10px 12px;
    font-size: 10px;
  }

  .tml-quick-top-actions {
    justify-content: flex-start;
    max-width: none;
  }

  .tml-quick-ai-launcher-button {
    padding: 9px 11px;
    font-size: 10px;
  }

  .tml-ai-launcher-card {
    padding: 20px 16px;
  }

  .tml-ai-launcher-fields {
    grid-template-columns: 1fr;
  }

  .tml-ai-launcher-primary {
    width: 100%;
  }

  .tml-quick-search {
    padding: 0 18px 14px;
  }

  .tml-quick-search-results {
    right: 18px;
    left: 18px;
  }

  .tml-quick-search-results a {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .tml-quick-search-results small {
    display: none;
  }

  .tml-quick-search-results span {
    max-width: 112px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .tml-quick-link-groups {
    padding: 8px 18px 42px;
  }

  .tml-quick-link-groups article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tml-quick-link-groups a {
    font-size: 10px;
  }

  .tml-quick-branch-index {
    padding: 42px 18px;
  }

  .tml-quick-branch-category > div {
    grid-template-columns: 1fr;
  }

  .tml-quick-pdf-index {
    padding: 44px 18px;
  }

  .tml-quick-pdf-links {
    columns: 1;
  }

  .tml-quick-index-footer {
    margin: 0 18px;
    padding-right: 0;
    padding-left: 0;
  }

  .tml-member-app {
    padding-inline: 14px;
  }

  .tml-member-header,
  .tml-entry-layout {
    align-items: stretch;
  }

  .tml-member-header {
    flex-direction: column;
  }

  .tml-member-nav {
    width: 100%;
    justify-content: space-between;
  }

  .tml-hero,
  .tml-entry-layout,
  .tml-card-grid,
  .tml-guide-methods,
  .tml-guide-materials,
  .tml-guide-roles,
  .tml-guide-reading-links,
  .tml-guide-tip,
  .tml-study-hero,
  .tml-hub-hero,
  .tml-study-tools,
  .tml-section-heading,
  .tml-recall-grid,
  .tml-index-results,
  .tml-library-grid {
    grid-template-columns: 1fr;
  }

  .tml-branch-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tml-study-actions {
    min-width: 0;
  }

  .tml-section-heading .tml-soft-button {
    width: 100%;
  }

  .tml-hero {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .tml-card-grid {
    gap: 13px;
  }

  .tml-course-card {
    min-height: 210px;
    padding: 24px;
  }

  .tml-entry-layout,
  .tml-login-card,
  .tml-simple-card,
  .tml-guide-hero,
  .tml-guide-section,
  .tml-guide-tip {
    padding: 25px 20px;
    border-radius: 22px;
  }

  .tml-guide-tip-mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .tml-account-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tml-course-card {
    transition: none;
  }

  .tml-loading span {
    animation: none;
  }
}
