.card-image__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.65);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  backdrop-filter: blur(12px) saturate(1.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .card-image__tag,
.project-card:focus-within .card-image__tag {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.card-image__tag-company,
.card-image__tag-sep,
.card-image__tag-year {
  color: inherit;
}

.card-image__tag-company {
  color: #1a1a1a;
  font-weight: 500;
}

.card-image__tag-sep {
  color: #6b6b6b;
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
}

.card-image__tag-year {
  color: #4a4a4a;
  font-weight: 400;
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .card-image__tag {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(0, 0, 0, 0.06);
  }

  .project-card:hover .card-image__tag,
  .project-card:focus-within .card-image__tag {
    background: rgba(255, 255, 255, 0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-image__tag {
    transition: none;
  }

  .project-card:hover .card-image__tag,
  .project-card:focus-within .card-image__tag {
    transform: none;
  }
}
