/* ====== Tour Page Styles ====== */

/* Tour Overview Section */
.tour-overview {
  background: #ffffff;
  padding: 50px 16px;
}

.tour-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tour-section-title {
  font-size: 24px !important;
  font-weight: 700;
  color: #000000;
  margin: 0 0 16px;
  letter-spacing: 0.48px;
  text-align: center;
  line-height: 1.4;
}

.tour-intro {
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  margin: 0 0 32px;
  letter-spacing: 0.28px;
  text-align: center;
}

/* Tour Info Table */
.tour-info-table {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tour-info-row {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 5px;
}

.tour-info-label {
  background: #173d37;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

.tour-info-value {
  background: #f3f3f3;
  color: #000000;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

/* Tour Highlights Title */
.tour-highlights-title {
  background: #ffffff;
  padding: 30px 16px;
}

/* Tour Highlights */
.tour-highlight {
  background: #ffffff;
  padding: 50px 16px;
}

.tour-highlight-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 586px 1fr;
  gap: 81px;
  align-items: center;
}

/* Reverse layout for 02 */
.tour-highlight-reverse .tour-highlight-container {
  grid-template-columns: 1fr 586px;
}

.tour-highlight-reverse .highlight-content {
  order: 1;
}

.tour-highlight-reverse .highlight-images {
  order: 2;
}

/* Highlight Images */
.highlight-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 586px;
}

.highlight-images picture {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f3f3;
}

.highlight-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Highlight Content */
.highlight-content {
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: 504px;
}

.highlight-number {
  font-size: 61px;
  font-weight: 700;
  color: #000000;
  line-height: 1;
  margin: 0;
}

.highlight-title {
  font-size: 18px;
  font-weight: 700;
  color: #9c1d52;
  line-height: 1.4;
  margin: 0;
}

.highlight-description {
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  margin: 0;
}

/* Important Information */
.important-info {
  background: #ffffff;
  padding: 110px 16px;
}

.info-sections {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 32px;
}

.info-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-header {
  background: #f3f3f3;
  padding: 8px 24px;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  line-height: 1.4;
  min-height: 51px;
  display: flex;
  align-items: center;
}

.info-list {
  list-style: disc;
  padding-left: 36px;
  margin: 0;
}

.info-list li {
  font-size: 14px;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 0;
}

.info-list li:not(:last-child) {
  margin-bottom: 0;
}

/* ====== Responsive Design ====== */

@media (max-width: 768px) {
  /* Tour Overview */
  .tour-overview {
    padding: 40px 16px;
  }
  
  .tour-section-title {
    font-size: 24px !important;
    text-align: center;
  }
  
  .tour-intro {
    font-size: 13px;
    text-align: center;
  }
  
  /* Tour Info Table - Stack on mobile */
  .tour-info-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .tour-info-label {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 4px 4px 0 0;
  }
  
  .tour-info-value {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 0 0 4px 4px;
    margin-bottom: 5px;
  }
  
  /* Tour Highlights Title */
  .tour-highlights-title {
    padding: 0px 16px;
  }
  
  /* Tour Highlights - Stack on mobile */
  .tour-highlight {
    padding: 40px 16px;
  }
  
  .tour-highlight-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .tour-highlight-reverse .tour-highlight-container {
    grid-template-columns: 1fr;
  }
  
  .tour-highlight-reverse .highlight-content {
    order: 2;
  }
  
  .tour-highlight-reverse .highlight-images {
    order: 1;
  }
  
  .highlight-images {
    max-width: 100%;
    gap: 6px;
  }
  
  .highlight-images picture {
    aspect-ratio: 16 / 9;
  }
  
  .highlight-number {
    font-size: 48px;
  }
  
  .highlight-title {
    font-size: 16px;
  }
  
  .highlight-description {
    font-size: 13px;
  }
  
  /* Important Information */
  .important-info {
    padding: 60px 16px;
  }
  
  .info-sections {
    gap: 40px;
  }
  
  .info-header {
    font-size: 18px;
    padding: 8px 16px;
  }
  
  .info-list {
    padding-left: 24px;
  }
  
  .info-list li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .highlight-images picture {
    aspect-ratio: 16 / 9;
  }
  
  .highlight-number {
    font-size: 42px;
  }
  
  .info-header {
    font-size: 18px;
  }
  
  .info-list li {
    font-size: 14px;
  }
}
