.ui-home .ui-application-card {
  height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 12px;
  border: 1px solid #e1e7e9;
  border-radius: var(--ui-radius-card);
  background: var(--ui-color-white);
  box-shadow: var(--ui-shadow-card);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ui-home .ui-application-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ui-shadow-card-hover);
}

.ui-home .ui-application-logo-frame {
  display: grid;
  width: 100%;
  height: 40px;
  margin-bottom: 8px;
  flex: 0 0 40px;
  place-items: center;
}

.ui-home .ui-application-logo {
  display: block;
  width: auto;
  max-width: 112px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}

.ui-home .ui-application-initial {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 7px;
  color: var(--ui-color-white);
  background: var(--ui-color-teal-dark);
  font-weight: var(--ui-font-weight-bold);
}

.ui-home .ui-application-card strong {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  color: var(--ui-color-heading);
  font-size: 15px;
  line-height: 1.25;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ui-home .ui-application-card small {
  margin-top: 3px;
  color: var(--ui-color-muted);
  font-size: 11px;
}
