.linkedin-card-v2 {
  display: flex;
  max-width: 820px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform .12s ease, box-shadow .12s ease;
}
.linkedin-card-v2:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.linkedin-card-image {
  width: 40%;
  min-height: 140px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.linkedin-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 60%;
}
.linkedin-card-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
}
.linkedin-card-desc {
  margin: 0;
  font-size: 14px;
  color: #444;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.linkedin-card-footer {
  margin-top: auto;
  font-size: 13px;
  color: #0a66c2;
  font-weight: 600;
}
.linkedin-card-v2.error { color: #b00020; padding: 8px; }
.linkedin-card-v2.vertical {
  flex-direction: column;
  background: #ffffff;
  text-align: center;
}
.linkedin-card-image-vertical img {
  width: 100%;
  height: auto;
  display: block;
}
.linkedin-card-body-vertical {
  padding: 16px;
}
@media (max-width: 600px) {
  .linkedin-card-v2 { flex-direction: column; }
  .linkedin-card-image { width: 100%; min-height: 160px; }
  .linkedin-card-body { width: 100%; }
}
