.locations-content{
  max-width:900px;
  text-align:center;
}

.locations-content h2{
  font-size:30px;
  margin-bottom:20px;
  font-family:'Playfair Display', serif;

  background:linear-gradient(45deg,#d4af37,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.locations-content p{
  color:#aaa;
  margin-bottom:12px;
}

/* GRID */
.locations-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

/* CARD */
.location-card{
  padding:30px 20px;
  text-align:center;

  border-radius:16px;
  text-decoration:none;

  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);

  transition:0.3s;
}

/* TEXT */
.location-card h3{
  color:#d4af37;
  font-size:18px;
}

/* HOVER */
.location-card:hover{
  transform:translateY(-5px);
  border-color:rgba(212,175,55,0.3);
  box-shadow:0 10px 30px rgba(0,0,0,0.6);
}
@media(max-width:768px){
  .locations-grid{
    grid-template-columns:1fr 1fr;
  }
}