/* Container */
.com-tags-tag__category {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Individual list items */
.com-tags-tag__category .list-group-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  transition: box-shadow 0.2s ease;
}

.com-tags-tag__category .list-group-item:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Headings and links */
.com-tags-tag__category h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.com-tags-tag__category a {
  text-decoration: none;
  color: #004080;
}

.com-tags-tag__category a:hover {
  text-decoration: underline;
}

/* Images */
.com-tags-tag__category img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-top: 0.5rem;
  object-fit: cover;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .com-tags-tag__category {
    grid-template-columns: 1fr;
  }
}
