.sns-section {
  background: #fff;
  padding: 3rem 1rem;
  text-align: left;
  overflow: hidden;
}

.sns-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
 
}

.sns-marquee {
  overflow: hidden;
  width: 100%;
  height: 60vh;
  position: relative;
}

.sns-track {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}
.sns-track img {
  height: 60vh;
  width: auto;
  flex-shrink: 0;
  object-fit: cover;
}
.follow-instagram {
  position: relative;
  text-align: center;
  margin-top: 2rem;
}

.follow-instagram a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  
  font-size: 1rem;
  color: #111;
  text-decoration: none;
  background: linear-gradient(135deg, #fddede, #f9cfd2);
  border-radius: 999px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 5px #fdf4f5;
  transition: transform 0.3s ease;
}

.follow-instagram a:hover {
  transform: scale(1.05);
}

.follow-instagram i {
  font-size: 1.1rem;
}
/* Separated Photo Block */
.follow-photo {
  height: 80vh;
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 2rem;
  box-sizing: border-box;
}

.follow-photo img {
  height: 100%;
  width: 50%;
  object-fit: contain; /* 👈 this avoids cropping */

}
