.instagram-column {
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
  margin: auto;
  font-family: 'Poppins', sans-serif;
}

.insta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  text-decoration: none;
  color: inherit;
}

.insta-profile {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.insta-info {
  flex: 1;
  margin-left: 10px;
}

.insta-post {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: block;
}

.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.insta-post:hover img {
  transform: scale(1.08);
}

.post-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: .85rem;
  opacity: 0;
  transition: .3s ease;
}

.insta-post:hover .post-hover {
  opacity: 1;
}