/* internal-linking.css — BitcoinMarket.net internal link components */
/* Dark theme: bg #0a0b0d, accent #f7931a (Bitcoin orange) */

/* Related guides section */
.related-guides {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: #111214;
  border: 1px solid #1e2025;
  border-left: 3px solid #f7931a;
  border-radius: 4px;
}

.related-guides h3 {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f7931a;
}

.related-guides ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-guides ul li {
  margin: 0.35rem 0;
}

.related-guides ul li a {
  color: #c8cdd6;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}

.related-guides ul li a:hover {
  color: #f7931a;
  text-decoration: underline;
}

/* Internal link badge/chip */
.internal-link-badge {
  display: inline-block;
  padding: 0.2em 0.6em;
  margin: 0 0.2em;
  background: #1a1c20;
  border: 1px solid #2a2d33;
  border-radius: 3px;
  font-size: 0.78rem;
  color: #f7931a;
  text-decoration: none;
  vertical-align: middle;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.internal-link-badge:hover {
  background: #f7931a;
  border-color: #f7931a;
  color: #0a0b0d;
}

/* "Also read" callout box */
.also-read {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 0.85rem 1.1rem;
  background: #0e1012;
  border: 1px solid #1e2025;
  border-radius: 4px;
  font-size: 0.88rem;
}

.also-read::before {
  content: "→";
  flex-shrink: 0;
  color: #f7931a;
  font-size: 1rem;
}

.also-read a {
  color: #d0d5de;
  text-decoration: none;
}

.also-read a:hover {
  color: #f7931a;
  text-decoration: underline;
}

.also-read .also-read-label {
  flex-shrink: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5a6070;
}
