.linklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: .45rem;

  width: 560px;
  max-width: 560px;

  margin: .5rem 0 1.5rem;
  padding: 0;

  list-style: none;
}

.linkitem {
  width: 100%;

  display: flex;
  align-items: center;

  gap: .6rem;
  padding: .4rem .6rem;

  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
}

.linkitem__logo {
  flex: 0 0 45px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.linkitem__logo img {
  width: 65%;
  height: auto;
  display: block;
}

.linkitem__text a,
.linkitem__text a:link,
.linkitem__text a:visited,
.linkitem__text a:active {
  color: #000;
  font-size: .8rem;
  font-weight: bold;
  text-decoration: none;
}

.linkitem__text a:hover {
  color: red;
  text-decoration: underline;
}