/* MTL Claims Layer */

.mtl-claim-sentence {
  background: transparent;
  border-bottom: 2px dashed rgba(245, 158, 11, 0.4);
  color: inherit;
  padding: 0 2px;
  border-radius: 2px;
  transition: background 0.15s ease, color 0.15s ease;
}

body.mtl-claims-active .mtl-claim-sentence {
  background: rgba(245, 158, 11, 0.12);
  border-bottom: 2px solid rgba(245, 158, 11, 0.7);
}

.mtl-claim-sentence.active {
  background: rgba(245, 158, 11, 0.28) !important;
  color: #fff;
  border-bottom-color: #f59e0b;
}

.mtl-claim-block {
  display: none;
  margin: 0.5rem 0 1.5rem;
  padding: 0.75rem 1rem;
  background: rgba(245, 158, 11, 0.06);
  border-left: 3px solid rgba(245, 158, 11, 0.5);
  border-radius: 0 8px 8px 0;
}

body.mtl-claims-active .mtl-claim-block {
  display: block;
}

.mtl-claim-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 158, 11, 0.8);
  margin-bottom: 0.5rem;
}

.mtl-claim-chip {
  display: inline-block;
  margin: 0 0.35rem 0.35rem 0;
  padding: 0.35rem 0.7rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #d1d5db;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  line-height: 1.4;
  border-radius: 999px;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s ease;
}

.mtl-claim-chip:hover {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.6);
  color: #fff;
}

.mtl-claim-paragraph {
  position: relative;
}
