/**
 * Compact OTC Pro bundle callout — paywalls, login, register, modals.
 * Scoped under .tc-otc-inline-callout.
 */
.tc-otc-inline-callout {
  box-sizing: border-box;
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(13, 148, 136, 0.35);
  background: linear-gradient(
    145deg,
    rgba(236, 253, 245, 0.98) 0%,
    rgba(240, 253, 250, 0.92) 50%,
    rgba(255, 255, 255, 0.96) 100%
  );
  box-shadow: 0 6px 22px rgba(13, 148, 136, 0.1);
  font-size: 0.92rem;
  line-height: 1.5;
  color: #0f172a;
  text-align: left;
}

.tc-otc-inline-callout * {
  box-sizing: border-box;
}

.tc-otc-inline-callout__title {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f766e;
  letter-spacing: -0.02em;
}

.tc-otc-inline-callout__prices {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: #134e4a;
}

.tc-otc-inline-callout__copy {
  margin: 0 0 0.65rem;
  color: #334155;
  font-size: 0.88rem;
}

.tc-otc-inline-callout__default {
  margin: 0 0 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.84rem;
  color: #475569;
}

.tc-otc-inline-callout__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.tc-otc-inline-callout__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: filter 0.15s ease, box-shadow 0.15s ease;
}

.tc-otc-inline-callout__btn--primary {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(13, 148, 136, 0.3);
}

.tc-otc-inline-callout__btn--primary:hover {
  filter: brightness(1.05);
  color: #fff !important;
}

.tc-otc-inline-callout__btn--ghost {
  background: #fff;
  color: #2563eb !important;
  border: 2px solid rgba(37, 99, 235, 0.35);
}

.tc-otc-inline-callout__btn--ghost:hover {
  background: rgba(239, 246, 255, 0.95);
}

.tc-otc-inline-callout__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0d9488 !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tc-otc-inline-callout__link:hover {
  color: #0f766e !important;
}
