/* ------- content --------- */

.social-card {

  overflow: hidden;
}

.social-iframe {
  position: relative;
  width: 100%;
  padding-top: 177%; 
}

.social-iframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.social-content-section {
  padding: 0px 20px 80px;
  text-align: center;
}

.social-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #111;
}

.social-title {
  font-size: 28px;
  font-weight: 700;
  color: #6f3cff;
  /* margin-bottom: 50px; */
  padding: 55px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.social-icons img {
  width: 51px;
  height: 51px;
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.social-card {
  position: relative;
  /* border-radius: 24px; */
  overflow: hidden;
  /* box-shadow: 0 30px 60px rgba(0,0,0,.25); */
}

.social-card img {
  width: 100%;
  display: block;
}

.play-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 60px;
  color: #fff;
  background: rgba(0,0,0,.25);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .social-cards {
    grid-template-columns: 1fr;
    gap: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .postid-251 .social-content-section{
    /* padding: 100% 20px 80px; */
  }
}

.social-card iframe{
    height: 620px;
}