.wp-link-card {
  display: inline-flex;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.wp-link-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.wp-link-card .card-header {
  display: flex;
  align-items: center;
}
.wp-link-card .site-icon {
  width: 32px;
  height: 32px;
  margin: 5px;
}
.wp-link-card .card-title {
  font-size: 18px;
  font-weight: bold;
}
