.log-head,
.log-row {
  grid-template-columns: 62px minmax(190px, 1fr) minmax(105px, 15%);
}

.org-logo {
  align-self: center;
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.org-logo-link {
  align-self: center;
  display: block;
  width: 52px;
  height: 52px;
}

.org-logo-link:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.org-logo--placeholder {
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--soft);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.education-stat {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: help;
}

.education-stat img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.quick-stats div:nth-child(3) {
  position: relative;
  min-height: 78px;
  padding-right: 82px;
}

.quick-stats div:nth-child(3) .education-stat {
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
}

.quick-stats div:nth-child(3) .education-stat img {
  width: 58px;
  height: 58px;
}

.education-tooltip {
  position: absolute;
  z-index: 5;
  bottom: calc(100% + 8px);
  left: 0;
  width: max-content;
  max-width: 250px;
  border: 1px solid var(--ink);
  padding: 7px 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  opacity: 0;
  pointer-events: none;
  transform: translateY(3px);
  transition: opacity .12s ease, transform .12s ease;
}

.education-stat:hover .education-tooltip,
.education-stat:focus .education-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.education-stat:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

@media (max-width: 800px) {
  .log-row {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .org-logo {
    grid-row: 1 / span 2;
    width: 44px;
    height: 44px;
  }

  .log-row > div,
  .log-row > p {
    grid-column: 2;
  }
}
