/* BASE */
*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#000;
  color:#fff;
  overflow-x:hidden;
}

/* PAGE */
.page{
  max-width:1250px;
  margin:auto;
  padding:48px 24px 80px;
}

.page-title{
  text-align:center;
  font-size:48px;
  margin:0 0 18px;
  letter-spacing:2px;
}

.page-intro{
  max-width:850px;
  margin:0 auto 42px;
  text-align:center;
  color:#cfcfcf;
  line-height:1.6;
  font-size:18px;
}

/* TOUR GRID */
.tour-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(310px, 1fr));
  gap:28px;
}

/* TOUR CARD */
.tour-card{
  min-height:100%;
  display:flex;
  flex-direction:column;
  background:linear-gradient(180deg, #151515, #060606);
  border:1px solid #333;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 0 18px #000;
  transition:.25s;
}

.tour-card:hover{
  transform:translateY(-4px);
  border-color:#555;
  box-shadow:0 0 24px rgba(255,0,0,.18);
}

.tour-image-wrap{
  width:100%;
  background:#050505;
  border-bottom:1px solid #202020;
}

.tour-image-wrap img{
  width:100%;
  height:305px;
  display:block;
  object-fit:contain;
  background:#050505;
}

.tour-content{
  flex:1;
  display:flex;
  flex-direction:column;
  padding:22px 22px 20px;
}

.tour-content h2{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.2;
}

.tour-date{
  color:#ff3333;
  font-size:18px;
  font-weight:900;
  margin-bottom:6px;
}

.tour-location{
  color:#fff;
  font-size:15px;
  letter-spacing:.3px;
  margin-bottom:18px;
}

.tour-content p{
  color:#ddd;
  line-height:1.5;
  margin:0 0 22px;
}

/* ACTION */
.tour-action{
  margin-top:auto;
  padding-top:18px;
  border-top:1px solid #2b2b2b;
}

.tour-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:145px;
  padding:10px 22px;
  background:transparent;
  color:#fff;
  border:1px solid #666;
  border-radius:4px;
  text-decoration:none;
  text-transform:uppercase;
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
  transition:.25s;
}

.tour-link span{
  font-size:16px;
  line-height:1;
}

.tour-link:hover{
  border-color:#d10000;
  background:#d10000;
  color:#fff;
  box-shadow:0 0 12px rgba(255,0,0,.35);
}

/* FOOTER */
footer{
  width:100%;
  text-align:center;
  padding:26px 0;
  border-top:1px solid #222;
  color:#aaa;
  font-size:14px;
  background:#050505;
}

/* RESPONSIVE */
@media(max-width:700px){
  .page{
    padding:36px 16px 70px;
  }

  .page-title{
    font-size:36px;
  }

  .tour-image-wrap img{
    height:250px;
  }
}
