.view-toggle-label {
  cursor: pointer;
  display: inline-block;
  padding-left: 32px;
  background: left center / 14px no-repeat url('../../../assets/images/radio.svg');
  transition: background-color 0.3s ease;
}

input[type="radio"]:checked+.view-toggle-label {
  background-image: url('../../../assets/images/radio-checked.svg');
}


input[type="radio"][name="view-style"] {
  /* Visually hide the input but keep it accessible for screen readers and keyboard navigation */
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  padding: 0;
  border: 0;
}


/*===============================================
// theme specific styles
===============================================*/

/* List item */

.list-view-item {
  .card-body {
    padding-top: 0;

    .tags-links:first-of-type {
      margin-left: -0.5rem;
      /* compensate for the tags padding-x */
    }
  }
}