.places-page{
  background: var(--bg);
}

.places-page{
  background-image:
    url("../brown-watercolor-leaf-background-aesthetic-autumn-season.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* istemezsen sil */
}

.places-wrap{
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 140px 0 100px;
  display: grid;
  gap: 90px;
}

.place-card{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}


.place-gallery{
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.place-gallery img{
  width: 360px;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  scroll-snap-align: start;
  flex-shrink: 0;
}


.place-text h2{
  margin: 0 0 12px;
  font-family: jelly, system-ui, sans-serif;
  font-size: 30px;
  color: var(--sage);
}

.place-text p{
  margin: 0;
  font-family: oswald, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(60,60,60,0.75);
  max-width: 320px;
}

/* Scroll bar gizle (foto kaymaya devam eder) */
.place-gallery{
  scrollbar-width: none;
}
.place-gallery::-webkit-scrollbar{
  display: none;
}

/* Mobil */
@media (max-width: 900px){
  .place-card{
    grid-template-columns: 1fr;
  }

  .place-text p{
    max-width: none;
  }

  .place-gallery img{
    width: 280px;
    height: 200px;
  }
}