/* Instagram feed — cherry-pick from evolve.framer.website home */
.insta-section{margin:48px 0 56px}
.insta-section__head{
  display:flex;flex-wrap:wrap;align-items:flex-end;justify-content:space-between;
  gap:12px 20px;margin-bottom:20px
}
.insta-section__head .kicker{
  font-size:.68rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  color:var(--green);margin-bottom:8px
}
.insta-section__head h2{
  font-family:'Syne',sans-serif;font-weight:800;font-size:clamp(1.35rem,3vw,1.75rem);
  letter-spacing:-.02em;line-height:1.1
}
.insta-section__head p{color:var(--muted);font-size:.9rem;max-width:420px;margin-top:8px}
.insta-follow{
  display:inline-flex;align-items:center;gap:6px;font-size:.78rem;font-weight:700;
  letter-spacing:.04em;color:var(--green);white-space:nowrap
}
.insta-follow:hover{text-decoration:underline}
.insta-grid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;
  width:100%
}
.insta-cell{
  position:relative;min-height:440px;border-radius:14px;overflow:hidden;
  border:1px solid var(--line);background:var(--surface, rgba(255,255,255,.03));
  box-shadow:0 16px 40px rgba(0,0,0,.25)
}
.insta-cell iframe{
  position:absolute;inset:0;width:100%;height:100%;border:0;
  background:transparent
}
@media(max-width:860px){
  .insta-grid{grid-template-columns:1fr;max-width:420px;margin:0 auto}
  .insta-cell{min-height:480px}
}
.insta-section--light .insta-cell{
  background:var(--card,#fff);
  box-shadow:0 12px 32px rgba(0,0,0,.06)
}
