/* ── ConvertNow Related Tools ── cnt-related.css ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.crt {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  padding: 40px 0 24px;
}

/* ── Header row ── */
.crt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}

.crt-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.crt-viewall {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1.5px solid currentColor;
  opacity: 0.7;
  transition: opacity 0.15s, background 0.15s;
  white-space: nowrap;
}
.crt-viewall:hover {
  opacity: 1;
  background: currentColor;
}

/* ── Pills container ── */
.crt-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Base pill ── */
.crt-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.18s ease,
              filter 0.15s ease;
  /* color and background set via inline style in JS */
}

a.crt-pill:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  filter: brightness(0.93);
}

a.crt-pill:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Coming soon pill */
.crt-pill--soon {
  color: #6b7280;
  background: #f3f4f6;
  border: 1.5px solid #e5e7eb;
  cursor: default;
  font-weight: 500;
}
.crt-pill--soon:hover {
  transform: none;
  box-shadow: none;
  filter: none;
}

/* Hidden pills (show more) */
.crt-pill--hidden {
  display: none;
}

/* ── Pill icon ── */
.crt-pill-icon {
  font-size: 15px;
  line-height: 1;
  flex-shrink: 0;
}

/* ── Soon badge ── */
.crt-soon-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
  background: #e5e7eb;
  border-radius: 8px;
  padding: 2px 6px;
  margin-left: 2px;
}

/* ── Show more button ── */
.crt-more {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 30px;
  border: 2px dashed;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, border-style 0.15s, transform 0.15s;
  opacity: 0.65;
}
.crt-more:hover {
  opacity: 1;
  border-style: solid;
  transform: translateY(-1px);
  background: rgba(0,0,0,0.03);
}
.crt-more::after {
  content: '↓';
  font-size: 13px;
}