.temples-map{
  width:100%;
  height:420px;
  border-radius:var(--radius);
  margin-bottom:48px;
  box-shadow:0 28px 90px rgba(0,0,0,.12);
  border:1px solid rgba(0,0,0,.1);
}

.temples-list{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:18px;
  margin-bottom:60px;
}

.temple-card{
  display:block;
  padding:26px 22px;
  border-radius:var(--radius);
  text-decoration:none;
  color:inherit;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 60px rgba(0,0,0,.06);
  transition:transform .25s ease, box-shadow .25s ease;
}

.temple-card:hover{
  transform:translateY(-4px);
  box-shadow:0 26px 90px rgba(0,0,0,.1);
}

.temple-card h3{
  font-family:"Crimson Text", serif;
  font-size:22px;
  margin:0 0 6px;
}

.temple-city{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.6;
}

.temple-card p{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.6;
}

.temples-cta{
  text-align:center;
}

.temples-cta p{
  margin-bottom:14px;
  color:var(--muted);
}

/* ===============================
   TEMPLE CARDS
=============================== */

.temple-card{
  display:block;
  border-radius:var(--radius);
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  background:var(--paper);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 60px rgba(0,0,0,.06);
  transition:
	transform .3s ease,
	box-shadow .3s ease;
}

.temple-card:hover{
  transform:translateY(-4px);
  box-shadow:0 28px 90px rgba(0,0,0,.12);
}

/* Imagen */
.temple-card-media{
  height:140px;
  background-size:cover;
  background-position:center;
  filter:saturate(.9);
  position:relative;
}

.temple-card-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
	to bottom,
	rgba(0,0,0,.15),
	rgba(0,0,0,.35)
  );
}

/* Cuerpo */
.temple-card-body{
  padding:20px 18px 22px;
}

.temple-card h3{
  font-family:"Crimson Text", serif;
  font-size:22px;
  margin:0 0 6px;
}

.temple-city{
  display:block;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:10px;
}

.temple-card p{
  margin:0;
  font-size:14px;
  line-height:1.6;
  color:rgba(0,0,0,.62);
}

/* Responsive */
@media (max-width: 980px){
  .temples-list{
	grid-template-columns: 1fr;
  }
}

.temples-filter{
  display:flex;
  gap:10px;
  margin-bottom:22px;
  flex-wrap:wrap;
}

.filter-btn{
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  cursor:pointer;
  transition:.2s ease;
}

.filter-btn:hover{
  border-color:#c9a35d;
}

.filter-btn.is-active{
  background:#c9a35d;
  color:#fff;
  border-color:#c9a35d;
}