.tag {
  display: inline-flex;
  flex-direction: row;
  gap: 1.5rem;

  justify-content: start;
  align-items: center;
}

.tag__image {
  width: 4rem;
  height: 4rem;
  aspect-ratio: 1/1;

  border-radius: 40px;
  background: #fff;
}

.tag__title {
  font-size: 1.25rem;
  font-family: "Mulish";
  font-weight: 800;
}

.tag__subtitle {
  font-size: 1rem;
  font-family: "Poppins";
  font-weight: 400;
}

@keyframes softGreenPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(102, 208, 164, 0.15);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(102, 208, 164, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(102, 208, 164, 0);
  }
}

@keyframes shine {
  0% {
    left: -50%;
  }
  100% {
    left: 120%;
  }
}

.tag--highlight {
  animation: softGreenPulse 3s ease-in-out infinite;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.tag--highlight::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-20deg);
  animation: shine 2.8s ease-in-out infinite;
  pointer-events: none;
}
