.ogp-card {
  display: flex;
  align-items: stretch;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  margin: 6px 0;
  max-width: 600px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.ogp-card:hover {
  border-color: #aaa;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: inherit;
}

.ogp-card__image {
  flex: 0 0 96px;
  width: 96px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f0f0f0;
}

.ogp-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 12px;
  min-width: 0;
  gap: 2px;
}

.ogp-card__title {
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ogp-card__site {
  font-size: 0.75em;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 480px) {
  .ogp-card__image {
    flex: 0 0 64px;
    width: 64px;
  }
}
