.event-highlight {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 720px;
  margin-bottom: 60px;
}

.event-highlight.mobile {
  display: none;
}

.event-highlight .center {
  position: relative;
  width: 20px;
  height: 100%;
  min-height: 720px;
  background: #c2172e;
  border-radius: 20px;
  margin: 0 auto;
}

.event-highlight .center::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #FFFFFF;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.event-highlight .list {
  position: absolute;
  width: 50%;
  z-index: 1;
  padding-left: 120px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}

.event-highlight .list.left {
  left: 0;
  top: 0%;
  padding-right: 120px;
  padding-left: 0px;
}

.event-highlight .list.left .box:nth-child(3) {
  margin-top: 40px;
}

.event-highlight .list.right {
  right: 0;
  top: 5%;
}

.event-highlight .list.right .box:nth-child(3) {
  margin-top: 70px;
}

.event-highlight .list .txt {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Oswald", sans-serif;
}

.event-highlight .list .txt .img {
  position: relative;
  width: 100%;
  max-width: 72px;
  border-radius: 50%;
}

.event-highlight .list .txt .img img {
  width: 100%;
  max-width: 72px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: contain;
  cursor: pointer;
}

.event-highlight .list .txt .img:hover img {
  animation: floatAndScale .5s ease-in-out;
}

.event-highlight .list.left .txt {
  flex-direction: row-reverse;
}

.event-highlight .list h2 {
  width: 100%;
  position: relative;
  font-size: 2rem;
  color: #232323;
  text-align: left;
  line-height: normal;
}

.event-highlight .list h2 span.trad {
  font-weight: 900;
  font-size: 1.8rem;
  font-family: 'Noto Sans TC', sans-serif;
}

.event-highlight .list p {
  width: 100%;
  color: #555555;
  font-weight: 400;
  line-height: 1.4;
  font-size: .875rem;
}

.event-highlight .list.left h2,
.event-highlight .list.left p {
  text-align: right;
}

.event-highlight .list p.dot {
  position: absolute;
  width: 100px;
  height: 3px;
  background: #232323;
  left: -120px;
  top: 50%;
}

.event-highlight .list.left p.dot {
  left: auto;
  right: -120px;
}

.event-highlight .list p.dot::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  background: #232323;
  border: 2px solid #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.event-highlight .list.left p.dot::before {
  right: -6px;
  left: auto;
}

.event-highlight .list.left .photo {
  display: flex;
  justify-content: flex-end;
}

.event-highlight .list.right .photo {
  display: flex;
  justify-content: flex-start;
}

.info-txt .btm-info {
  width: 100%;
  max-width: 1280px;
  display: grid;
  justify-content: center;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  margin: 0 auto;
}

.info-txt .btm-info img {
  width: 100%;
  padding: 20px 0;
  border: 1px solid #000;
}

.info-txt .btm-info .separator span {
  font-size: .75rem;
}

.info-txt .btm-info ul.dot {
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr;
  gap: 2px;
}

@media(max-width:960px) {
  .event-highlight {
    min-height: 1000px;
  }

  .event-highlight.pc {
    display: none;
  }

  .event-highlight.mobile {
    display: block;
  }

  .event-highlight .list {
    width: 100%;
    position: relative;
    gap: 48px;
    padding-left: 60px;
  }

  .event-highlight .list p.dot {
    width: 30px;
    left: -40px;
  }

  .event-highlight .list h2 {
    font-size: 1.6rem;
  }

  .event-highlight .center {
    position: absolute;
    top: 0;
    left: 10px;
    margin: 0;
  }

  .event-highlight .list.left .box:nth-child(3) {
    margin-top: 0px;
  }

  .event-highlight .list.right .box:nth-child(3) {
    margin-top: 0px;
  }

  .info-txt .btm-info {
    max-width: 100%;
    gap: 24px 12px;
    grid-template-columns: 1fr;
  }
}

/* 燈箱導航按鈕樣式 */
.lightbox .prev-btn,
.lightbox .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  display: none;
}

.lightbox .prev-btn:hover,
.lightbox .next-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.lightbox .prev-btn {
  left: 20px;
}

.lightbox .next-btn {
  right: 20px;
}

.lightbox .image-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  display: none;
}

@media(max-width:768px) {

  .info-txt .btm-info ul.dot {
    grid-template-columns: 1fr;
  }

  .info-txt .btm-info img {
    max-width: 100%;
  }

  .lightbox .prev-btn,
  .lightbox .next-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .lightbox .prev-btn {
    left: 10px;
  }
  
  .lightbox .next-btn {
    right: 10px;
  }
}