/* Social embeds: Facebook iframe + Twitch */

.social-embed-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 36px;
}

.social-card {
  width: 540px;
  max-width: 100%;
  box-sizing: border-box;
  padding: 20px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 215, 0, 0.28);
  overflow: visible;
}

.social-card h3 {
  margin: 0 0 18px;
  text-align: center;
  color: #f4d46a;
}

.facebook-feed-box,
.twitch-feed-box {
  width: 500px;
  max-width: 100%;
  min-height: 700px;
  margin: 0 auto;
  overflow: visible;
}

.facebook-feed-box iframe,
.twitch-feed-box iframe {
  width: 500px;
  max-width: 100%;
  height: 700px;
  border: 0;
  border-radius: 12px;
  display: block;
}

.content-placeholder {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  display: block !important;
}

@media (max-width: 600px) {
  .social-card {
    padding: 12px;
  }

  .facebook-feed-box,
  .facebook-feed-box iframe,
  .twitch-feed-box,
  .twitch-feed-box iframe {
    width: 100% !important;
  }
}
