/*
 * Theme Name:  Revision Child
 * Theme URI:   https://revision.codesupply.co/
 * Description: Revision Child Theme
 * Author:      Code Supply Co.
 * Author URI:  https://codesupply.co/
 * Template:    revision
 * Version:     1.0.0
 */

.cs-footer__nav > li > a {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* TAGS */
.cs-entry__tags a {
  height: auto;
}

.cs-entry__tags ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cs-entry__tags li {
  display: inline-flex;
}

.cs-entry__tags a[rel~="tag"] {
  display: inline-block;
  padding: 4px 14px;
  font-size: 14px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 500;
  border: 1.5px solid #29294B; /* Default for fallback */
  background: #fff;
  color: #29294B;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

[data-scheme="dark"] .cs-entry__tags a[rel~="tag"] {
  border-color: #ffffff;
  background: #222222;
  color: #fff;
}

[data-scheme="light"] .cs-entry__tags a[rel~="tag"] {
  border-color: #29294B;
  background: #ffffff;
  color: #29294B;
}