/* ============================================
   Social Media Platform Post Pages
   (linkedin-posts.html / instagram-posts.html / facebook-posts.html)
   Reuses existing design tokens & .svc-offering-card patterns.
   ============================================ */

.post-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  display: flex;
  flex-direction: column;
}

.post-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.post-icon.li {
  background: #0a66c2;
}

.post-icon.ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.post-icon.fb {
  background: #1877f2;
}

.post-card p {
  flex: 1;
}

.post-card .btn {
  align-self: flex-start;
  margin-top: 1.25rem;
}
