.images {
  display: grid;
  grid-template-rows: repeat(auto-fit, minmax(70px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  width: 100%;
  max-width: 944px;
  padding: 0 1rem;
  margin: 30px auto;
}

.images img {
  height: 70px;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.6s ease,
    transform 1s ease;
}

.images img.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.images img:hover {
  transform: scale(1.1);
  filter:
    drop-shadow(0 0 4px #444444)
    drop-shadow(0 0 10px #575757)
    drop-shadow(0 0 20px #8c8c8c);
}

.skill-card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 500px;

  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

.skill-card.show {
  align-self: center;
  opacity: 1;
  transform: translateY(0);
}

.skill-bar {
  flex: 1;
  height: 10px;
  background: #2e2e2e;
  border-radius: 5px;
  overflow: hidden;
  filter:
    drop-shadow(0 0 1px #444444)
    drop-shadow(0 0 1px #575757)
    drop-shadow(0 0 1px #8c8c8c);
}

.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #8c8c8c, var(--text));
  width: 0;
  transition: width 0.6s ease;
}

.skill-level {
  font-size: 14px;
  min-width: 40px;
  text-align: right;
}

@media (max-width: 480px) {
  .images img {
    height: 50px;
  }

  .skill-card {
    gap: 10px;
  }
}
