#marketingContainer {
  width:100%;
  margin-top:100px;
}

.photoTeam_wrap {
  width:100%;
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
  gap:90px;
}
.photoTeam_wrap .one {
  width:45%;
}
.photoTeam_wrap .two {
  width:55%;
  display:flex;
  gap:32px;
  flex-wrap:wrap;
}

.photoTeam_wrap .one h1 {
  font-size:42px;
  font-weight: 700;
  text-align:left;
}

.photoTeam_wrap .two p {
  width:100%;
  word-break: keep-all;
  line-height: 2;
  font-size: 18px;
}

.photo_comBox {
  width:100%;
  height:auto;
  padding:32px;
  border-radius: 20px; 
  background-color:var(--color-f8);
  border:dotted 2px var(--color-e8);
  margin-top:24px;
  color:#767676;
  line-height: 2;
  word-break: keep-all;
}


.photoStudio,
.showhostContainer {
  margin-top:140px;
}
.photoStudio h5,
.showhostContainer h5 {
  width:100%;
  margin-bottom: 16px;
  font-size:20px;
  font-weight: 500;
}

.photoSwiper {
  width: 100%;
  height: auto;
}

.photoSwiper .swiper-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 12px;
}

.photoSwiper .swiper-slide div {
  width:24%;
  height:230px;
  border-radius: 20px;
  overflow:hidden;
}
.photoSwiper .swiper-slide div img {
  width:100%;
  height: 100%;
  object-fit: cover;
}
.photoSwiper-pagination {
  width:100%;
  text-align: center;
  margin-top:24px;
  transition:.3s;
}
.photoSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.photoSwiper .swiper-pagination-bullet-active {
  background-color:var(--color-main);
  width:20px;
  border-radius: 90px;
}

/* Navigation buttons */
.photoSwiper .swiper-button-next,
.photoSwiper .swiper-button-prev {
  color: var(--color-main);
  font-weight: bold;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s;
}
.photoSwiper .swiper-button-next:after,
.photoSwiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: 900;
}
.photoSwiper .swiper-button-next:hover,
.photoSwiper .swiper-button-prev:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


/* overlay */
.marketingOverlay {
  width:100%;
  height:100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  position: fixed;
  left:0;
  top:0;
  z-index:60;

  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
.studioPhoto.view {
  opacity: 1;
  visibility: visible;
}
.marketingOverlay > img {
  position: absolute;
  top:10%;
  right:10%;
}
.marketingOverlay .photoImg {
  width:30%;
  height:760px;
  background-color: aliceblue;
  border-radius: 20px;
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  overflow:hidden;
}
.marketingOverlay .photoImg img {
  width:100%;
  height:100%;
  object-fit: cover;
}
.photoClose,
.photoSwiper img {
  cursor: pointer;
}

.showhost_nameBtn {
  width:100%;
  display:flex;
  justify-content: flex-start;
  gap:16px;
  margin-bottom:52px;
}
.showhost_nameBtn button {
  color:var(--color-76);
  background-color: var(--color-f8);
  border: solid 1px var(--color-e8);
  border-radius: 90px;
  padding:12px 20px;
  outline:none;
  font-size:18px;
  font-weight: 500;
  transition: .3s;
  cursor: pointer;
}
.showhost_nameBtn button.active {
  color:var(--color-main);
  background-color: white;
  border: solid  1px var(--color-main);
}

.showhost_info {
  width: 100%;
  display: none;
  justify-content: space-between;
  align-items: flex-start;
  gap:100px;

  /* opacity: 0;
  visibility: hidden;
  height:0; display:block, position:absolute 안하고 겹치게 카테고리 정보 보여주기 */
}
.showhost_info.active {
  display:flex;
  /* opacity: 1;
  visibility: visible;
  height:auto;  */
}
.showhost_info .left {
  width:40%;
  top:32px;
  position: sticky;
}
.showhost_info .right {
  width:60%;
}

.showhost_info .left img {
  border-radius: 20px;
  width:100%;
}
.showhost_info .shadow {
  margin-top:-30px;
  width:100%;
}

.right {
  display:flex;
  justify-content: flex-start;
  flex-wrap:wrap;
  gap:100px;
}
.right .name,
.right .history  {
  width:100%;
  display:flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap:20px;
}
.right .name p:first-of-type,
.right .history p:first-of-type,
.media p {
  width:150px;
  font-size:20px;
  color:var(--color-main);
  font-weight: 700;
}
.right .name p:last-of-type {
  font-size:32px;
  font-weight: 700;
  line-height: 1.2;
}

.right .history ul li:not(:first-child) {
  margin-top:12px;
}
.right .history ul li {
  position: relative;
  padding-left:16px;
}
.right .history ul li::before {
  content: "";
  position: absolute;
  width:3px;
  height:3px;
  background-color: var(--color-76);
  left:0;
  top:50%;
  transform: translateY(-50%);
  border-radius: 20px;
}


.media video {
  border-radius: 20px;
}
.media p {
  padding-bottom:24px;
}

/* Tablet (769px - 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #marketingContainer {
    margin-top: 80px !important;
  }

  .photoTeam_wrap {
    gap: 60px !important;
  }

  .photoTeam_wrap .one h1 {
    font-size: 36px !important;
  }

  .photoTeam_wrap .two p {
    font-size: 16px !important;
  }

  .photo_comBox {
    padding: 24px !important;
  }

  .photoStudio,
  .showhostContainer {
    margin-top: 100px !important;
  }

  .photoSwiper .swiper-slide div {
    width: 48% !important;
    height: 200px !important;
  }

  .showhost_info {
    gap: 60px !important;
  }

  .right {
    gap: 60px !important;
  }

  .right .name p:last-of-type {
    font-size: 28px !important;
  }

  .right .name p:first-of-type,
  .right .history p:first-of-type,
  .media p {
    font-size: 18px !important;
    width: 120px !important;
  }
}

/* Mobile (max-width: 768px) */
@media screen and (max-width: 768px) {
  #marketingContainer {
    margin-top: 60px !important;
  }

  .photoTeam_wrap {
    flex-direction: column !important;
    gap: 40px !important;
  }

  .photoTeam_wrap .one,
  .photoTeam_wrap .two {
    width: 100% !important;
  }

  .photoTeam_wrap .one h1 {
    font-size: 28px !important;
    text-align: center !important;
  }

  .photoTeam_wrap .two {
    gap: 20px !important;
  }

  .photoTeam_wrap .two p {
    font-size: 14px !important;
  }

  .photo_comBox {
    padding: 20px !important;
    font-size: 14px !important;
  }

  .photoStudio,
  .showhostContainer {
    margin-top: 80px !important;
  }

  .photoStudio h5,
  .showhostContainer h5 {
    font-size: 18px !important;
    text-align: center !important;
  }

  .photoSwiper .swiper-slide {
    gap: 12px !important;
  }

  .photoSwiper .swiper-slide div {
    width: 48% !important;
    height: 150px !important;
  }

  .photoSwiper .swiper-button-next,
  .photoSwiper .swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
  }

  .photoSwiper .swiper-button-next:after,
  .photoSwiper .swiper-button-prev:after {
    font-size: 14px !important;
  }

  .marketingOverlay .photoImg {
    width: 90% !important;
    height: 60% !important;
  }

  .showhost_nameBtn {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-bottom: 30px !important;
  }

  .showhost_nameBtn button {
    padding: 8px 16px !important;
    font-size: 14px !important;
  }

  .showhost_info {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .showhost_info .left,
  .showhost_info .right {
    width: 100% !important;
  }

  .showhost_info .left {
    position: static !important;
  }

  .right {
    gap: 40px !important;
  }

  .right .name,
  .right .history {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .right .name p:first-of-type,
  .right .history p:first-of-type,
  .media p {
    width: auto !important;
    font-size: 16px !important;
  }

  .right .name p:last-of-type {
    font-size: 24px !important;
  }

  .right .history ul li {
    font-size: 14px !important;
  }

  .media video {
    height: 250px !important;
  }
}

/* Small Mobile (max-width: 375px) */
@media screen and (max-width: 375px) {
  #marketingContainer {
    margin-top: 40px !important;
  }

  .photoTeam_wrap {
    gap: 30px !important;
  }

  .photoTeam_wrap .one h1 {
    font-size: 24px !important;
  }

  .photoTeam_wrap .two {
    gap: 16px !important;
  }

  .photoTeam_wrap .two p {
    font-size: 13px !important;
  }

  .photo_comBox {
    padding: 16px !important;
    font-size: 13px !important;
  }

  .photoStudio,
  .showhostContainer {
    margin-top: 60px !important;
  }

  .photoStudio h5,
  .showhostContainer h5 {
    font-size: 16px !important;
  }

  .photoSwiper .swiper-slide {
    gap: 8px !important;
  }

  .photoSwiper .swiper-slide div {
    width: 100% !important;
    height: 180px !important;
  }

  .photoSwiper .swiper-button-next,
  .photoSwiper .swiper-button-prev {
    width: 30px !important;
    height: 30px !important;
  }

  .photoSwiper .swiper-button-next:after,
  .photoSwiper .swiper-button-prev:after {
    font-size: 12px !important;
  }

  .marketingOverlay .photoImg {
    width: 95% !important;
    height: 50% !important;
  }

  .showhost_nameBtn {
    gap: 6px !important;
    margin-bottom: 25px !important;
  }

  .showhost_nameBtn button {
    padding: 6px 12px !important;
    font-size: 12px !important;
  }

  .showhost_info {
    gap: 20px !important;
  }

  .right {
    gap: 30px !important;
  }

  .right .name p:first-of-type,
  .right .history p:first-of-type,
  .media p {
    font-size: 14px !important;
  }

  .right .name p:last-of-type {
    font-size: 20px !important;
  }

  .right .history ul li {
    font-size: 12px !important;
  }

  .media video {
    height: 200px !important;
  }
}