.tp-ventures-page .tp-ventures-hero { padding-top: 40px; }

.tp-venture-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.tp-venture-detail-media {
  border-radius: var(--tp-radius);
  overflow: hidden;
  box-shadow: var(--tp-shadow-lg);
}
.tp-venture-detail-media img { width: 100%; display: block; }

.tp-venture-detail-content h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--tp-text-primary);
}
.tp-venture-detail-content p {
  font-size: 16px;
  color: var(--tp-text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.tp-venture-detail-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.tp-venture-detail-stat {
  text-align: center;
}
.tp-venture-detail-stat strong { display: block; font-size: 24px; font-weight: 800; }
.tp-venture-detail-stat span { font-size: 13px; color: var(--tp-text-muted); }

@media (max-width: 768px) {
  .tp-venture-detail { grid-template-columns: 1fr; }
}
