/* ====================卡片區==================== */
.card{
  display: flex;
  margin: 24px auto;
  padding: 16px;
  border-radius: 10px;
}
.card-left{
  /* width: 45%; */
  flex: 0 0 40%;
  position: relative;
}
.day{
  position: absolute;
  top: -30px;
  left: -30px;

  /* display: inline; */
  padding: 4px;
  background-color: #29627d;
  color: #fff;
  font-size: 24px;
  font-weight: bold;

  z-index: 1;
}
.day::after{
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  border: 2px solid #29627d;
  z-index: -1;
}

.card-left img{
  width: 100%;
  height: auto;
}
.card-right{
  padding: 0 18px;
}
.travelTitle {
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 16px;
}
.salefocuss{
  font-size: 16px;
  padding-bottom: 16px;
}
.salefocuss div{
  display: flex;
  align-items: flex-start;
}
.salefocuss div::before{
  content: '';
  width: 6px;
  height: 6px;
  background: #666;
  margin-right: 6px;
  flex-shrink: 0;
  margin-top: 8px;
}
.price-container{
  display: flex;
  justify-content: end;
  align-items: flex-end;
  padding-bottom: 16px;
}
.price{
  color: #29627d;
  font-size: 32px;
  font-weight: bold;
  padding: 0 8px;
}
@media screen and (max-width: 768px){
  .card{
    flex-direction: column;
  }
  .card-left{
    width: 100%;
  }
  .card-left img{
    width: 100%;
  }
  .day{
    top: -24px;
    left: -24px;  
  }
  .card-right{
    padding: 0;
  }

  .travelTitle{
    font-size: 24px;
    padding: 16px 0;
  }
}
/* ====================日期按鈕==================== */
.date-buttons{
  /* margin-top: 10px; */
  margin-top: 20px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.date-btn{
  padding: 4px 8px;
  border: 1px solid #29627d;
  background: #fff;
  color: #29627d;
  cursor: pointer;
  /* font-size: 12px; */
  font-size: 16px;
}

.date-btn:hover{
  background: #29627d;
  color: #fff;
}

@media screen and (max-width: 768px){
  .date-btn{
    font-size: 14px;
  }
}



