/* gv-learn-patch.css
   Supplemental styling for Learn content pages.
   Keeps the site's primary /styles.css unchanged. */

/* Make inline content links visibly link-like (without affecting nav/buttons) */
.article a{ text-decoration: underline; text-underline-offset: 3px; }
.article a:hover{ text-decoration-thickness: 2px; }

/* Optional: make link lists clearly clickable */
.article ul li a{ font-weight:700; }

/* Minimal helpers used by generated pages */
.article{
  background: var(--card, #fff);
  border: 1px solid var(--muted, #E6E6E6);
  border-radius: var(--radius, 18px);
  box-shadow: var(--shadow, 0 10px 30px rgba(0,0,0,.08));
  padding: 22px;
}
.meta{margin:0 0 14px;color:#555;font-size:13px}
.hr{height:1px;background:var(--muted,#E6E6E6);margin:18px 0}
.callout{
  margin:14px 0;
  border-radius:14px;
  border:1px solid rgba(212,175,55,.45);
  background:rgba(212,175,55,.12);
  padding:12px 14px;
  font-weight:650;
}
.lead{font-size:17px;margin:0 0 16px}
