.ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.venture-card {
  display: block;
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 28px;
  min-height: 320px;
  transition: all 0.35s ease;
}

.venture-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,169,106,0.6);
}

.venture-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.venture-top span {
  color: var(--gold);
  font-size: 13px;
}

.venture-top small {
  color: #aaa;
  font-size: 12px;
}

.venture-card h3 {
  font-size: 32px;
  margin: 0 0 14px;
  letter-spacing: -0.03em;
}

.venture-card p {
  color: #cfcfcf;
  margin-bottom: 50px;
}

.venture-progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.venture-progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}

.venture-progress-bar span {
  display: block;
  height: 100%;
  background: var(--gold);
  border-radius: 999px;
}

@media (max-width: 1100px) {
  .ventures-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .ventures-grid {
    grid-template-columns: 1fr;
  }

  .venture-card {
    min-height: auto;
    padding: 24px;
  }

  .venture-card h3 {
    font-size: 28px;
  }
}