.st-v3-ownership {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.st-v3-ownership__card {
  position: relative;
  border-radius: 24px;
  padding: 20px;
  min-height: 352px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}

.st-v3-ownership__card:hover {
  transform: translateY(-2px);
  border-color: var(--st-v2-line-1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 20px 44px rgba(0,0,0,0.22),
    0 0 0 1px rgba(88,215,255,0.08);
}

.st-v3-ownership__card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.st-v3-ownership__media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 140px;
  background:
    radial-gradient(circle at 78% 18%, rgba(88,215,255,0.18), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

.st-v3-ownership__media img,
.st-v3-ownership__media video {
  width: 100%;
  height: 164px;
  object-fit: cover;
  transform: scale(1.02);
}

.st-v3-ownership__media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(7,17,26,0.28)),
    radial-gradient(circle at 22% 18%, rgba(88,215,255,0.16), transparent 28%);
}

.st-v3-ownership__card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.05;
  color: var(--st-v2-text-0);
}

.st-v3-ownership__card p {
  margin: 0;
  color: var(--st-v2-text-1);
  line-height: 1.55;
  font-size: 15px;
  max-width: 28ch;
}

.st-v3-ownership__card .st-v2-btn {
  margin-top: auto;
}

@media (max-width: 1200px) {
  .st-v3-ownership {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .st-v3-ownership {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .st-v3-ownership__card:hover {
    transform: none;
  }
}