
.ventures-section{
  --ventures-bg:#0e0e10;
  --ventures-card:#171717;
  --ventures-border:rgba(255,255,255,.08);
  --ventures-text:#f4f4f2;
  --ventures-muted:rgba(255,255,255,.68);
  --ventures-shadow:0 24px 60px rgba(0,0,0,.18);
  --ventures-radius:22px;
  width:100%;
}
.ventures-topbar{
  display:flex;
  justify-content:flex-end;
  margin-bottom:22px;
}
.ventures-filter-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.ventures-filter{
  appearance:none;
  border:1px solid #d9d9d9;
  background:#fff;
  color:#111;
  border-radius:999px;
  padding:10px 16px;
  font-size:12px;
  line-height:1;
  letter-spacing:.12em;
  text-transform:uppercase;
  cursor:pointer;
  transition:all .25s ease;
}
.ventures-filter:hover,
.ventures-filter.is-active{
  background:#111;
  color:#fff;
  border-color:#111;
}
.ventures-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
  align-items:stretch;
}
.ventures-card{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:16px;
  padding:14px;
  border-radius:26px;
  text-decoration:none;
  color:var(--ventures-text);
  background:linear-gradient(180deg,#121212 0%, #0d0d0d 100%);
  border:1px solid var(--ventures-border);
  box-shadow:var(--ventures-shadow);
  overflow:hidden;
  transform:translateY(0);
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  min-height:360px;
}
.ventures-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 80px rgba(0,0,0,.24);
  border-color:rgba(255,255,255,.14);
}
.ventures-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border-radius:18px;
  background:linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.06);
  padding:18px 18px;
}
.ventures-card-heading{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  min-width:0;
}
.ventures-card-title,
.ventures-card-type{
  font-size:17px;
  line-height:1.1;
}
.ventures-card-title{
  font-weight:700;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:100%;
}
.ventures-card-dot{
  color:rgba(255,255,255,.4);
  font-size:12px;
  transform:translateY(-1px);
}
.ventures-card-type{
  color:var(--ventures-muted);
  font-weight:400;
}
.ventures-card-arrow{
  width:54px;
  height:54px;
  border-radius:50%;
  flex:0 0 54px;
  display:grid;
  place-items:center;
  color:#fff;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  transition:transform .35s ease, background .35s ease;
}
.ventures-card:hover .ventures-card-arrow{
  transform:translateX(2px);
  background:rgba(255,255,255,.09);
}
.ventures-card-arrow svg{
  width:22px;
  height:22px;
}
.ventures-card-media{
  position:relative;
  flex:1;
  min-height:240px;
  border-radius:20px;
  overflow:hidden;
  background:linear-gradient(135deg,#dadada,#8b8f96);
}
.ventures-card-image,
.ventures-card-fallback{
  width:100%;
  height:100%;
  display:block;
}
.ventures-card-image{
  object-fit:cover;
  transform:scale(1);
  transition:transform .7s ease;
}
.ventures-card:hover .ventures-card-image{
  transform:scale(1.04);
}
.ventures-card-fallback{
  background:radial-gradient(circle at 25% 20%, #f2f2f2 0%, #bdbdbd 35%, #383c43 100%);
}
.ventures-card-shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.26)),
    radial-gradient(circle at center, rgba(0,0,0,.08) 0%, rgba(0,0,0,.24) 70%);
}
.ventures-card-logo-wrap{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  padding:30px;
}
.ventures-card-logo{
  max-width:min(48%, 220px);
  max-height:120px;
  width:auto;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 10px 28px rgba(0,0,0,.18));
  transform:translateY(0) scale(1);
  transition:transform .5s ease;
}
.ventures-card:hover .ventures-card-logo{
  transform:translateY(-2px) scale(1.03);
}
.ventures-card-text-logo{
  font-size:clamp(28px,4vw,58px);
  line-height:1;
  color:#fff;
  font-weight:800;
  letter-spacing:-.06em;
  text-align:center;
  text-shadow:0 8px 24px rgba(0,0,0,.2);
}
.ventures-card.is-tall{ min-height:440px; }
.ventures-card.is-wide .ventures-card-media{ min-height:300px; }
.ventures-card.is-hidden{ display:none !important; }
@media (max-width: 1024px){
  .ventures-grid{ grid-template-columns:1fr 1fr; }
  .ventures-card-title, .ventures-card-type{ font-size:15px; }
}
@media (max-width: 767px){
  .ventures-topbar{ justify-content:flex-start; }
  .ventures-grid{ grid-template-columns:1fr; }
  .ventures-card{ min-height:330px; }
  .ventures-card.is-tall{ min-height:360px; }
  .ventures-card-arrow{ width:46px; height:46px; flex-basis:46px; }
}
