.jnyCard .jnyCardImg .jnyCardOverlay {
  transition: all 0.5s ease-in-out;
}

.journeyPage .contentBox {
  padding-top: 48px;
  padding-bottom: 80px;
}
@media (max-width: 1180px) {
  .journeyPage .contentBox {
    padding: 40px 0 60px;
  }
}
@media (max-width: 768px) {
  .journeyPage .contentBox {
    padding: 20px 0 40px;
  }
}

.jnyGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
  padding-top: 60px;
}
@media (max-width: 1180px) {
  .jnyGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 20px;
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .jnyGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}
@media (max-width: 480px) {
  .jnyGrid {
    grid-template-columns: 1fr;
  }
}

.jnyCard {
  display: flex;
  flex-direction: column;
}
.jnyCard .jnyCardImg {
  position: relative;
  overflow: hidden;
  background-color: rgb(238.8181818182, 230.7272727273, 217.7818181818);
  display: block;
}
.jnyCard .jnyCardImg a {
  display: block;
  width: 100%;
  height: 100%;
}
.jnyCard .jnyCardImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.jnyCard .jnyCardImg .jnyCardOverlay {
  position: absolute;
  inset: 0;
  background-color: rgba(42, 27, 10, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.jnyCard .jnyCardImg .jnyCardOverlay span {
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.25em;
  color: #fff;
  padding: 10px 22px;
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
@media (min-width: 1181px) {
  .jnyCard .jnyCardImg:hover .jnyCardOverlay {
    opacity: 1;
  }
}
.jnyCard .jnyCardTxt {
  flex: 1;
  padding: 16px 0 0;
}
.jnyCard .jnyCardCategory {
  display: inline-block;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: #674938;
  margin-bottom: 8px;
}
.jnyCard .jnyCardTitle {
  font-family: "Noto Serif TC", serif;
  font-size: 22px;
  font-weight: 600;
  color: #362B20;
  letter-spacing: 1.5px;
  line-height: 1.4;
  margin: 0 0 8px;
}
.jnyCard .jnyCardTitle a {
  color: inherit;
  transition: color 0.25s;
}
@media (min-width: 1181px) {
  .jnyCard .jnyCardTitle a:hover {
    color: #8B7355;
  }
}
.jnyCard .jnyCardDesc {
  color: #434343;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 15px;
  letter-spacing: 0.4px;
  line-height: 1.8;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.journeyInsPage .sideDataArea.journey {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid #E3D9CA;
}
.journeyInsPage .sideDataArea.journey .sideDataList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .journeyInsPage .sideDataArea.journey .sideDataList {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.journeyInsPage .sideDataArea.journey .sideDataItem .Img {
  display: block;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 12px;
}
.journeyInsPage .sideDataArea.journey .sideDataItem .Img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s;
}
@media (min-width: 1181px) {
  .journeyInsPage .sideDataArea.journey .sideDataItem .Img:hover img {
    transform: scale(1.04);
  }
}
.journeyInsPage .sideDataArea.journey .sideDataItem .Txt .title {
  font-family: "Noto Serif TC", serif;
  font-size: 15px;
  font-weight: 400;
  color: #2A1B0A;
  letter-spacing: 2px;
  line-height: 1.5;
  margin: 0 0 6px;
}
.journeyInsPage .sideDataArea.journey .sideDataItem .Txt .title a {
  color: inherit;
}
@media (min-width: 1181px) {
  .journeyInsPage .sideDataArea.journey .sideDataItem .Txt .title a:hover {
    color: #8B7355;
  }
}
.journeyInsPage .sideDataArea.journey .sideDataItem .Txt .text {
  font-size: 13px;
  color: #7B6852;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}