.banner {
  position: relative;
  background-image: linear-gradient(to right, #ae752d, transparent 100%), url("../images/banner_rocha.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 23.914vh;
  display: flex;
}
.title{
  text-transform: uppercase;
  color: #f2f1ee;
  text-align: left;
  font-size: 7.609vh;
  font-family:"figtree", sans-serif;
  padding: 10.87vh 10.417vw 5.435vh;
}
.text{
  font-family:"figtree", sans-serif;
  padding: 3.261vh 10.417vw;
}

.subtitle{
  font-size: 4.891vh;
}
.body{
  padding-top: 3.261vh;
  font-size: 2.717vh;
}
.instagram-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 30px;
  margin-top: 40px;
  padding: 0 10.417vw;
}

.instagram-grid .post,
.instagram-grid .partner-card {
  width: 100%;
}

/* Esta regra força o post do Instagram a ocupar 100% */
.instagram-grid blockquote.instagram-media {
  /* Força o post a ser GRANDE (ignora os 540px) */
  max-width: 100% !important;
  min-width: 100% !important;
  width: 100% !important;
  
  /* Garante que as margens não atrapalhem */
  margin: 1px 0 !important; 
}


@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}