/* ── Co-Signed By The Greats (shared) ── */
.sog-cosigned {
  padding: 0 24px 56px;
  background: var(--gradient-hero);
}

.sog-cosigned--in-hero {
  padding: 48px 0 0;
  background: transparent;
}

.sog-cosigned-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.sog-cosigned-header {
  margin-bottom: 24px;
}

.sog-cosigned-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffd875 0%, var(--accent) 55%, #b8e4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sog-cosigned-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 120, 0.28);
  box-shadow:
    0 0 0 1px rgba(146, 210, 255, 0.12),
    0 0 28px rgba(255, 200, 80, 0.14),
    0 0 56px rgba(146, 210, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sog-cosigned-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(146, 210, 255, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.sog-cosigned-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  border-radius: var(--radius-md);
}

.sog-cosigned-callout {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sog-cosigned-badge {
  display: inline-flex;
  align-items: flex-start;
  align-self: flex-start;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.45;
  color: #ffe9a8;
  background: linear-gradient(135deg, rgba(255, 200, 80, 0.14) 0%, rgba(146, 210, 255, 0.1) 100%);
  border: 1px solid rgba(255, 215, 120, 0.35);
  border-radius: var(--radius-sm);
  box-shadow: 0 0 20px rgba(255, 200, 80, 0.12);
}

@media (max-width: 900px) {
  .sog-cosigned-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .sog-cosigned-callout {
    align-items: flex-start;
  }
}
