.embedded-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.embedded-card {
  background: var(--card-bg, #111);
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.embedded-card img,
.embedded-card video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.embedded-card video {
  background: #000;
}

.embedded-caption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.85;
}
