/* Tags */
.tags .main .tag-card {
  background: #fff;
  border-radius: 18px;
  padding: 15px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
}
.tags .main .tag-card .tag-count {
  background: #f4ebe7;
  border-radius: 50%;
  padding: 5px 12px;
  font-size: 0.85rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}
.tags .main .tag-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  background: var(--primary-color);
  color: var(--white-color);
}
.tags .main .tag-card:hover .tag-count {
  background: #fff;
  color: var(--primary-color);
}
.tags .main .item figure {
  margin-bottom: 0px;
  position: relative;
  overflow: hidden;
}
.tags .main .item figure img {
  transition: transform 0.3s;
}
.tags .main .item figure figcaption {
  text-align: center;
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 2rem 1rem;
  width: 90%;
  background-color: rgba(var(--secondary-color-rgb), 0.55);
  backdrop-filter: blur(10px);
}
.tags .main .item figure figcaption h3 {
  font-size: 1.1rem;
  color: var(--text-color);
}
.tags .main .item figure:hover img {
  transform: scale(1.05);
}
.tags .main .item .date-posted {
  position: absolute;
  background-color: var(--cta-color);
  top: 0px;
  right: 2rem;
  color: var(--white-color);
  text-align: center;
  padding: 1rem;
}/*# sourceMappingURL=tags.css.map */