.voting{
    background: linear-gradient(90deg, rgb(225, 59, 132) 0%, rgb(225, 59, 132) 21.3985%, rgb(234, 53, 78) 42.2123%, rgb(238, 98, 80) 99.2343%);
    padding: 1rem;
    color:#fff;
    border-radius: 1rem;
    font-weight: 500;
}
.insta-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 1rem;
  justify-content: center;
  padding-top: .7rem;
}
.insta-post {
  width: 100%;
  max-width: 400px;
  background: #fafafa;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex-grow: 1;
}
.insta-post img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.profile{
   max-width: 65%;
   width:max-content;
   display: flex;
   gap: 1rem;
   font-weight: 600;
   overflow: hidden;
}
.caption {
  padding: 0.8em 1rem;
  font-size: 0.9rem;
  background: #fff;
  border-top: 1px solid #eee;
}
.insta-header,.profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}
.insta-header .profile img {
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.view {
  background-color: #00a6ff;
  padding: 0.5rem;
  color: #ffff;
  border-radius: 8px;
  font-weight: 600;
  max-width: 30%;
  width:min-content;
}
.insta-header a,.caption, .insta-header b,.caption b{
   font-size: .6rem;
} 
.insta-btns a:hover, .insta-btns a:hover svg{
    color:#00a6ff;
    fill:#00a6ff;
    stroke:none;
}
.insta-btns .share-btn, .insta-btns a svg {
  width: 1rem;
  background-color: transparent;
  fill: #000;
  border: none;
  stroke:#000;
}
.insta-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem;
  background-color: #fff;
}
.insta-btns a{
    display: flex;
    align-items: center;
}
@media (min-width: 600px) {
  .insta-post {
    flex: 0 1 calc(50% - 1rem);
  }
}
@media (min-width: 900px) {
  .insta-post {
    flex: 0 1 calc(33.333% - 1rem);
  }
}