.items {
  align-items: center;
  border-bottom: 1px solid var(--cyan-100);
  display: flex;
  min-height: 50px;
  padding: 0.5rem 2rem;
  position: relative;
  width: 100%;
  transition: all 0.1s ease-in-out;
}

.items:last-child {
  border-bottom: none;
}

@media (min-width: 992px) {
  .items:hover {
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: 0px 0px 30px rgba(var(--black-rgb), 0.16);
    transform: scale(1.025);
    z-index: 1;
  }
}

.items img {
  image-rendering: auto;
  filter: contrast(1.05);
}
