/* business-dashboard.css */

/* Column clamp (keeps left column narrow and tidy) */
.post-list-table td.post-info {
  width: 220px;
  max-width: 220px;
  text-align: center;
  vertical-align: top;
}

/* Image: keep proportions, cap height at 100px */
.post-list-table td.post-info img.ll-thumb {
  display: block;
  max-width: 100%;
  max-height: 100px;  
  height: auto;
  width: auto;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: contain; /* no cropping */
}

/* Title below image */
.post-list-table td.post-info .ll-title {
  display: block;
  margin-top: 8px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  text-align: center;
  color: #111;
  word-break: break-word;
  text-decoration: none !important;
}

/* Hide “Business / Expires” lines in dashboard list */
.post-list-table td.post-info .ll-type,
.post-list-table td.post-info .ll-badges {
  display: none !important;
}

/* Middle column width & spacing */
.post-list-table.ll-post-list td.post-meta {
  width: 40%;
  vertical-align: top;
}
.post-list-table.ll-post-list td.post-meta .ll-news-meta { margin-bottom: 0; }
.post-list-table.ll-post-list td.post-meta .ll-recurrence { font-weight: 400; } /* non-bold */
.post-list-table.ll-post-list td.post-meta .ll-when-venue strong { font-weight: 700; } /* venue bold */
