.tile {
  height: 100px;
  max-width: 100%;
  border: 1px solid var(--divider, #dfdfe1);
  background: #fff;

  padding: 12px 16px;
  align-items: center;
  gap: 20px;
  display: flex;
  flex-direction: row;
}

.tile:hover {
  transform: scale(1.02);
}

.tile-image {
  width: 72px;
  height: 76px;
}

.tile-image img {
  width: 72px;
  height: 76px;
  object-fit: cover;
}

.tile-content {
  flex-grow: 1;
}

.tile-content h2 {
  margin: 0;
  color: var(--text-primary, var(--text-primary, #363a45));
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 19.2px; /* 120% */
}

.tile-arrow a {
  font-size: 20px;
  text-decoration: none;
  color: #007bff;
  transition: color 0.3s ease;
}

.tile-arrow a:hover {
  color: #0056b3;
}
