/* Tag List Block Container */
.tag-list-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px; /* horizontal gap between tags */
}

/* Tag List Block Icon */
.tag-list-icon {
  width: 24px;
  height: 24px;
  background: transparent url('../../../icons/tag-icon.svg') center center no-repeat;
  background-size: 24px 24px;
  display: inline-block;
  flex-shrink: 0;
}


/* Individual Tag Row */
.tag-list-tag-row {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

/* Tag Icon Placeholder */
.tag-list-tag-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background: transparent url('img/icons8-tag-96.png') 0 0 no-repeat padding-box;
  opacity: 1;
  background-color: #eee; /* fallback blank placeholder */
  border-radius: 50%;
  flex-shrink: 0;
  display: none;
}

/* Tag Link/Text */
.tag-list-tag {
  font: var(--font-16-24);
	font-weight: var(--font-weight-medium);
  letter-spacing: 0;
  color: var(--medium-teal);
  text-align: left;
  text-decoration: none;
  opacity: 1;
  padding: 0;
  background: none;
  border: none;
  transition: color 0.2s;
  cursor: pointer;
}

/* Tag Link Hover State */
.tag-list-tag:hover,
.tag-list-tag:focus {
  color: #005a5a;
}

/* Responsive: Hide tag-list-icon on mobile screens */
@media (width <= 767px) {
  .tag-list-icon {
    display: none;
  }
}