.social-media-wrapper {
  display: flex;
  align-items: stretch; 
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.social-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  
  flex: 1;
  min-width: 320px; 
  max-width: 500px;
  height: auto; 
  overflow: hidden;
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.instagram-card {
  border-top: 5px solid #E1306C;
}

.tiktok-card {
  border-top: 5px solid #000000;
}

.instagram-media, .tiktok-embed {
  margin: 0 auto !important;
  width: 100% !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.tiktok-card .tiktok-embed {
    min-height: 550px; 
}