.ticket {
  padding-top: 35px;
  position: relative;
}
.ticket::after {
  content: "";
  display: block;
  width: 1280px;
  margin: 0 auto;
  border-bottom: 8px solid #f0f4f4;
}
.layout {
  position: relative;
}
.ticket_header {
  padding-bottom: 20px;
  position: relative;
}
.ticket_header_title {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.ticket_header_text {
  padding-top: 15px;
  font-size: 18px;
  font-weight: 400;
  color: rgba(18, 18, 18, 0.5);
  text-align: center;
}

.ticket_header_category {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.ticket_button_list {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.ticket_button_list li {
}
.ticket_button_list li button {
  height: 44px;
  border-radius: 22px;
  padding: 0 20px;

  border: 1px solid #e5e5e5;
  background-color: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 500;

  cursor: pointer;
}

.ticket_focus {
  background-color: #333 !important;
  color: #fff !important;
  border: 1px solid #333 !important;
  font-weight: 600 !important;
}

.tour_slide_wrap {
  position: relative;
}
.ticket_slide {
  display: flex;
  gap: 20px;
}
.ticket_slide_item {
  display: block;
  width: 100%;
  border-radius: 11px;
}
.ticket_image {
  position: relative;
  max-height: 400px;
  height: 31.25vw;
  border-radius: 11px;
  overflow: hidden;
}
.ticket_image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04)),
    linear-gradient(180deg, transparent 68.5%, rgba(0, 0, 0, 0.6));
}

.ticket_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ticket_rank {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 70px;
  color: #fff;
  font-weight: 700;
  z-index: 10;
}

.ticket_info {
  height: 28%;
  min-height: 154px;

  padding: 15px 20px;
}
.ticket_item_title {
  font-size: 18px;
  color: #111;
  font-weight: 700;
  line-height: 1.6;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.ticket_place {
  font-size: 16px;
  color: #666;
  font-weight: 400;
  padding: 2px 0;

  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ticket_day {
  font-size: 14px;
  color: #999;
  font-weight: 400;
}
.ticket_option {
  display: flex;
  gap: 5px;
  padding: 7px 0;
}
.ticket_option span {
  font-size: 11px;
  font-weight: 400;
}
.ticket_red {
  border: 1px solid #ef3e43;
  color: #ef3e43;
  padding: 5px;
  border-radius: 2px;
}
.ticket_blue {
  border: 1px solid #4a95ff;
  color: #4a95ff;
  padding: 5px;
  border-radius: 2px;
}

.ticket_slide_prev {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e5e5;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.13);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 100;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 24px;
}

.ticket_slide_prev img {
  transform: rotate(180deg);
}

.ticket_slide_next {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e5e5;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.13);
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 100;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transform: translateX(50%) translateY(-50%);
  border-radius: 24px;
}
.ticket_footer {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  position: relative;
  margin-bottom: 70px;
}
.ticket_more_bt {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  padding: 0px 40px;

  border: 1px solid #e5e5e5;

  height: 56px;
  background-color: #fff;

  font-size: 16px;
  font-weight: 700;
  color: #333;
  border-radius: 23px;
}

/* 반응형 */
@media all and (max-width: 1280px) {
  .ticket_image {
    position: relative;
  }
  .ticket_slide_prev {
    position: absolute;
    top: 50%;
    left: 50px;
  }
  .ticket_slide_next {
    position: absolute;
    top: 50%;
    right: 50px;
  }
}
@media all and (max-width: 1080px) {
}
@media all and (max-width: 1024px) {
  .ticket {
    padding-top: 20px;
    border-top: 8px solid #f0f4f4;
  }
  .ticket_header {
    padding-bottom: 15px;
  }
  .ticket_header_title {
    font-size: 20px;
  }
  .ticket_header_text {
    padding-top: 0;
    font-size: 15px;
  }
  .ticket_header_category {
    margin-bottom: 20px;
    white-space: nowrap;
  }

  .ticket_category_list li button {
    height: 34px;
  }
  .ticket_info {
    padding: 10px;
  }
  .ticket_item_title {
    font-size: 15px;
    font-weight: 400;
  }
  .ticket_more_bt {
    width: 100%;
    border-radius: 4px;
    height: 48px;
  }
  .ticket_footer {
    padding-top: 0;
    margin-bottom: 20px;
  }
  .ticket_slide_prev,
  .ticket_slide_next {
    display: none;
  }
}
@media all and (max-width: 960px) {
}
@media all and (max-width: 760px) {
}
