.tabMenu ul {
  display: flex;
  margin-bottom: 4rem;
  border-bottom: 2px solid #333;
}
.tabMenu li {
  text-align: center;
  width: calc(100% / 3);
  font-size: var(--fz18);
  padding: 1rem 2rem;
  cursor: pointer;
}
.tabMenu .active {
  border-bottom: 2px solid #2c2c2c;
}
.tabContent {
  display: none;
}
.tabContent.active {
  display: block;
}
/* single page */
.worksSingle {
  padding-bottom: 12rem;
}
.worksSingle .worksInterviewBox {
  margin-bottom: 6rem;
  border: 1px solid #2c2c2c;
  padding: 3rem;
  box-sizing: border-box;
}
.worksSingle .worksInterview {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.worksSingle .interviewPhoto {
  flex: 1;
  text-align: center;
}
.worksSingle .interviewPhoto {
  flex: 1;
  text-align: center;
}
.worksSingle .interviewPhoto .clinicName {
  font-weight: 600;
  font-size: var(--fz18);
  margin-top: 1rem;
}
/* .worksSingle .interviewPhoto .doctorName {
} */

.worksSingle .doctorPhoto {
  overflow: hidden;
  display: flex;
  align-items: center;
  max-height: 250px;
  height: 100%;
}

.worksSingle .interviewText {
  flex: 1.5;
}
.worksSingle .interviewText .subTitle {
  font-weight: 600;
  font-size: var(--fz20);
}
.worksSingle .doctorPhoto img {
  display: flex;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.interviewBtnBox {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
.floorplanArea {
  margin: 0 auto 6rem;
  border: 1px solid #2c2c2c;
  padding: 3rem;
  box-sizing: border-box;
  display: flex;
  gap: 4rem;
}
.floorplanImgBox {
  width: 100%;
}

.floorplanImgBox img {
  width: 100%;
  height: 100%;
}

.floorplanImgBox {
  position: relative;
  cursor: pointer;
}

.floorplanImgBox .hoverOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* 어두운 배경 */
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.floorplanImgBox:hover .hoverOverlay {
  opacity: 1;
}

.zoomIcon {
  font-size: 3rem;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.floorplanImgBox .hoverOverlay img {
  max-width: 30px;
  max-height: 30px;
  width: 100%;
  height: 100%;
}
/* .floorplanTextBox {
} */
.floorplanTextDl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 2rem;
}
.floorplanTextDl dt {
  margin-bottom: 0.5rem;
  width: 140px;
  background-color: #2c2c2c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  box-sizing: border-box;
}
.floorplanTextDl dd {
  margin-bottom: 0.5rem;
  width: calc(100% - 140px - 2rem);
  font-size: var(--fz18);
}
@media screen and (max-width: 820px) {
  .floorplanArea {
    flex-direction: column;
  }
  .worksSingle .worksInterview {
    flex-direction: column;
    align-items: center;
  }
}
.categoryListArea h2 {
  border-bottom: 1px solid #2c2c2c;
  font-size: var(--fz24);
  font-weight: 600;
  margin-bottom: 2rem;
}
.categoryListArea:nth-of-type(1) {
  /* margin-bottom: 6rem; */
  margin-bottom: 4rem;
}
@media screen and (max-width: 640px) {
  .worksSingle .worksInterviewBox,
  .floorplanArea {
    padding: 1.2rem;
  }
  .worksSingle .interviewPhoto {
    width: 100%;
  }
  .floorplanTextDl dt {
    width: 110px;
  }
  .floorplanTextDl dd {
    width: calc(100% - 110px - 2rem);
  }
}
