@charset "utf-8";

body { overflow-x: hidden; }

#header { width: 100%;  margin: auto;
    position: relative; overflow: hidden; height: 100vh; min-height: 500px;
    box-sizing: border-box; padding-bottom: 6rem;
}

#slideBox {    /*슬라이드용 리스트 박스*/
    width: 300%;   /*3장 슬라이드의 폭(헤더 폭*3)*/
    display: flex;    /*각 슬라이드를 가로 방향으로 배치*/
} 
.slide {      /*각 슬라이드 리스트*/
    width: 33.33%;     /*3등분 폭*/
}

.hslideImage { width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;}    /*슬라이드 이미지*/

#titleBox {    /*타이틀 박스*/
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;  text-align: center;
}


.title { display: none; }       /*전체 타이틀 숨긴 후*/
.title:first-child { display: block;}      /*첫 번째 타이틀 보이기*/


.title1 { font-size: 2.5rem; color: #fff; font-family: 'BMDOHYEON'; font-weight: 500;
    color: #fff; animation: title 0.5s 0.5s both;
}
.title2 { color: #CFFF04; margin: 1rem 0; font-size: 1.2rem; font-family: 'NEXON Lv1 Gothic OTF';
    animation: title 0.5s 0.7s both;
}
.read { background: #FF3CAC; border: none; font-family: 'CookieRun-Regular'; font-weight: normal;
    color: #fff; padding: 12px 24px; font-size: 1.2rem;
    border-radius: 3px; cursor: pointer; transition: 0.3s; box-shadow: 0 0 15px rgba(255, 60, 172, 0.6);
    animation: button 0.5s 1s both;
}
.read:hover { background: #2B86C5; box-shadow: 0 0 20px #2B86C5;}

@keyframes title {
    from { transform: translateY(30px); opacity: 0;}
    to { transform: translateY(0); opacity: 1;}
}
@keyframes button {
    from { opacity: 0;}    to { opacity: 1;}
}


.slideButton {      /*슬라이드 버튼 공통*/
    position: absolute; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: #fff;
    font-size: 3rem; text-shadow: 0 0 5px rgba(255,255,255,.7);
    opacity: .5; cursor: pointer; transition: 0.3s; z-index: 10;
}
.slideButton:hover { opacity: 1;}
.slideLeft { left: 1rem; }     /*왼쪽 버튼 위치*/
.slideRight { right: 1rem;}    /*오른쪽 버튼 위치*/


#pagination {      /*하단 페이지네이션*/
    position: absolute; bottom: 3.5rem; left: 50%;
    transform: translateX(-50%);  gap: 0.3rem; z-index: 5;
    display: flex;
}
.page {
    background: #fff;
    width: 5vw; height: 0.5vw; border-radius: 2px;
    opacity: 0.5; transition: 0.3s;
}
.page:first-child {
    opacity: 1; width: 10vw;
}

.active {     /*버튼 하이라이트용*/
    opacity: 1; transform:scale(2); 
    pointer-events: none; 
}



/* 헤더 하단 웨이브 오브젝트 */
.custom-shape-divider-bottom-1752453502 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    max-height: 100px; z-index: 1;
}

.custom-shape-divider-bottom-1752453502 svg {
    display: block;
    width: 100%; height: auto; max-height: 100px;
}

.custom-shape-divider-bottom-1752453502 .shape-fill {
    fill: #000;
}

.full {     /*풀스크린용 스타일*/
    min-height: 100vh; height: auto;
    position: relative; overflow: hidden;
}


/* Into SEOHA 섹션 스타일----------------------------------------------------------------------- */

#Intro {padding: 10vh 5vw;  /* 상하 패딩 줄임 */}
#SEOHA {padding: 0;  /* 상하 패딩 줄임 */}

#Intro .smallTitle { font-size: 1.5rem; color: #cccccc; margin-top: 1rem;
margin-bottom: 1rem; font-family: 'NEXON Lv1 Gothic OTF';}

#Intro .mainTitle { font-size: 4vw; font-weight: normal; line-height: 1.4;
margin: 0; color: #ffffff; font-family: 'CookieRun-Regular'; }

#Intro h1 span { color: #C084FC; font-weight: bold; font-family: 'CookieRun-Regular';}

#SEOHA .sectionTitle { color: #e0dba7; font-size: 3vw; margin-bottom: 1rem; }
#SEOHA .subTitle { font-size: 1.2rem; color: #cccccc; }

.subTitle {     /*표지 작은 제목*/
    font-size: 1.5rem;
    font-weight: normal;
}

/* Animista 기반 + 사용자 정의 */

.hidden {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease-out;
}

.animate-left {
  animation: slideInLeft 0.8s forwards;
}

.animate-right {
  animation: slideInRight 0.8s forwards;
}

.animate-fade {
  animation: fadeIn 1s forwards;
  animation-delay: 0.6s;
}

/* keyframes */
@keyframes slideInLeft {
  0% {
    transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

/* 기본 정렬 */
.aboutContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30rem;
  padding: 25vh 5vw;
  flex-wrap: wrap;
}

.left {
  flex: 0 0 auto;
}
.profileWrapper {
  width: 180px ; 
  height: 240px ;
  border-radius: 50% 60%;
  overflow: hidden;
  background-color: #004eff;
}
.profileImage {
  width: 100%  ;
  height: 100%  ;
  object-fit: cover;
}

/* 오른쪽 텍스트 */
.right {
  max-width: 600px;
  color: #fff;
}
.name { color: #FFFFFF; font-family: 'BMDOHYEON';
  font-size: 2.5rem ; font-weight: 500;
  margin: 1rem 0;
}
.label { font-family: 'NEXON Lv1 Gothic OTF';
  font-size: 1rem ;
  margin-bottom: 0.5rem;
  color: #AAAAAA;
}
.experience {
  margin-top: 1.5rem;
}
.expBlock {
  margin-bottom: 1.5rem;
}
.years {
  color: #81a1ff;
  font-weight: 700;
}
.exp {
  font-size: 1.2rem ;
  font-weight: bold;
  color: #fff;
  margin: 0.5rem 0;
}
.expList {
  padding-left: 1rem ;
  list-style: disc;
  color: #ccc;
  font-size: 0.95rem;
}

/* --- 애니메이션 --- */
/*  둥둥 떠오름 애니메이션 */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.left .profileWrapper {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.5s ease;
}
.left.active .profileWrapper {
  animation: float 3s ease-in-out infinite;
  opacity: 1;
  transform: translateY(0);
}

/*  텍스트 애니메이션 */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.right .label,
.right .name,
.right .years,
.right .exp,
.right .expList {
  opacity: 0;
  transform: translateX(-30px);
}

/* 순차적 애니메이션 */
.right.active .label {
  animation: slideInRight 0.8s forwards 0.1s, blink 1.5s infinite 2s;
}
.right.active .name {
  animation: slideInRight 0.8s forwards 0.3s;
}
.right.active span.years {
  animation: slideInRight 0.8s forwards 0.5s;
}
.right.active h3.exp {
  animation: slideInRight 0.8s forwards 0.7s;
}
.right.active ul.expList {
  animation: slideInRight 0.8s forwards 0.9s;
}
/*  반짝임 효과 */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}



/* PORTFOLIO 섹션 스타일----------------------------------------------------------------------- */

.portfolioSection {
  padding: 2rem;
}

.previewTitle {
  padding-top: 2vh;
  font-family: 'NEXON Lv1 Gothic OTF';
  font-size: 1.4rem;
  color: #ffffff; 
  margin: 10px 0 20px 0;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center; /* 가운데 정렬 */
}


.pfControls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1rem; /* 버튼 아래 공간 넉넉하게 */
  padding: 0 10px;
  flex-wrap: wrap; /* 좁은 화면에서 버튼이 아래로 내려가도록 */
}

.pfControls button {
  background-color: #e53935; /* 진한 레드 */
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 3px 5px rgba(229, 57, 53, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  user-select: none;
  min-width: 0px;
  text-align: center;
}

.pfControls button:hover {
  background-color: #d32f2f;
  box-shadow: 0 5px 8px rgba(211, 47, 47, 0.6);
  transform: translateY(-2px);
}

.pfControls button:active {
  background-color: #b71c1c;
  box-shadow: 0 2px 4px rgba(183, 28, 28, 0.7);
  transform: translateY(0);
}

.pfControls button:focus {
  outline: 2px solid #f44336;
  outline-offset: 2px;
}


.pfContainer { overflow: hidden; max-width: 1000px; margin: 0 auto; }
.pfSlider { display: flex; gap: 1.5rem; transition: transform 0.5s ease; }
.pfSlide { flex: 0 0 calc((100% - 6rem) / 5); cursor: pointer; overflow: hidden;
  border-radius: 8px; /* 둥근 모서리 유지 */}

.pfSlide img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px; 
  transition: transform 0.3s ease;
}
.pfSlide:hover img {
  transform: scale(1.05); 
}

/* 모달 */
.pfModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 2vh 2vw;
}

.modalContent {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 1rem;
  box-sizing: border-box;
  pointer-events: none;
}

.close {
  position: absolute;
  top: 2vh;
  right: 4vw;
  font-size: clamp(1.5rem, 4vw, 3rem);
  opacity: 0.7;
  color: #ffffff;
  transition: .3s;
  cursor: pointer;
  z-index: 1001;
}

.close:hover {
  opacity: 1; color: #b71c1c;
}

/*PORTFOLIO Works--------------------------------------------------------------*/

/* 기본 이미지 그리드 */

#contest, #Experience, #Motion, #Challenge, #Freeform {
  background-color: #111;
}

#contest h2, #Experience h2, #Motion h2, #Challenge h2, #Freeform h2{
  padding-top: 10vh; font-family: 'NEXON Lv1 Gothic OTF';
  font-size: 2rem;
  color: #ffffff;
  margin: 10px 0 30px 0;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;

  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

/* 힙한 밑줄 효과 */
#contest h2::after {
  content: '';
  position: absolute;
  left: 55%;
  bottom: 0;
  transform: translateX(-50%);
  width: 20vw;
  border-bottom: 4px solid #ff3cac;
  border-radius: 2px;
}

#Experience h2::after {
  content: '';
  position: absolute;
  left: 55%;
  bottom: 0;
  transform: translateX(-50%);
  width: 20vw;
  border-bottom: 4px solid #FF8C42;
  border-radius: 2px;
}

#Motion h2::after {
  content: '';
  position: absolute;
  left: 55%;
  bottom: 0;
  transform: translateX(-50%);
  width: 20vw;
  border-bottom: 4px solid #00E0FF;
  border-radius: 2px;
}

#Challenge h2::after {
  content: '';
  position: absolute;
  left: 55%;
  bottom: 0;
  transform: translateX(-50%);
  width: 20vw;
  border-bottom: 4px solid #FF3B30; 
  border-radius: 2px;
}

#Freeform h2::after {
  content: '';
  position: absolute;
  left: 55%;
  bottom: 0;
  transform: translateX(-50%);
  width: 20vw;
  border-bottom: 4px solid #7CFFCB;
  border-radius: 2px;
}


.image-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 기본: 5개 */
  gap: 16px;
  justify-items: center;
  padding: 20px 0;
}

.image-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;        /* 정사각형 비율 */
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.05);
}


/* 모달 전체 영역 */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  animation: fadeIn 0.4s ease-out;
}

/* 모달 콘텐츠 */
.modal-content {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 1000px;
  margin: auto;          
  top: 50%;           
  transform: translateY(-50%);  
  padding: 30px;
  border-radius: 12px;
  position: absolute; 
  left: 0; right: 0; 
}



/* 슬라이더 래퍼 */

.modal-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.modal-slider {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.modal-slider img {
  width: 100%;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 10px;
  max-height: 70vh;
}



/* 좌우 버튼 */
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: #fff;
  border: none;
  padding: 8px 16px;
  cursor: pointer; transition: .3s;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.modal-nav:hover { background: #000000; color: #ffffff;}

.modal-nav.prev { left: 10px; }
.modal-nav.next { right: 10px; }

/* 닫기 버튼 */
.closeBtn {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  background: rgba(206, 180, 180, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); z-index: 99999;
}

.closeBtn:hover {
  background: rgba(255, 0, 0, 0.7);
  transform: scale(1.1);
  color: #fff;
}

.modal-slide-index {
  text-align: center;
  margin-top: 12px;
  user-select: none;
  transition: .3s;
}

.modal-slide-index .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal-slide-index .dot.active {
  background-color: #ff6600;
}



        #listBox {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 1400px;
}

.list img.thumb {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
  object-fit: cover;
}

.list img.thumb:hover {
  transform: scale(1.03);
}




        #modal {     /*모달창 전체*/
            position: fixed; top: 0; bottom: 0; left: 0; right: 0; z-index: 9998;
            background: rgba(0,0,0,0.7);
            display: none;      /*안 보이는 상태로 시작(섬네일 이미지로 오픈)*/
        }
        #modalBox {
        position: relative;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        border-radius: 1rem;
        background: #fff;
        padding: 10px;
        z-index: 9999;
      }

      #modalBox.portrait {
        max-width: 400px;
      }

      #modalBox.landscape {
        max-width: 800px;
      }
        #mVideo { width: 100%; display: block; margin-bottom: 10px;}
        #listBox {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* 각 썸네일 아이템 */
.list {
  overflow: hidden;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.list:hover {
  transform: scale(1.03);
}

/* 이미지 썸네일 */
.list img.thumb {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
}

.list:hover img.thumb {
  transform: scale(1.05);
}

/* 모달 내부 박스 */
#modalBox {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 900px;
  border-radius: 1rem;
  background: #fff;
  padding: 1rem;
  z-index: 9999;
}

/* 닫기 버튼 */
.closeBtn {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 2rem;
  color: #000;
  cursor: pointer;
}


/* 공통 애니메이션 */
@keyframes slideUp {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { background: rgba(0, 0, 0, 0); }
  to   { background: rgba(0, 0, 0, 0.85); }
}





/* 디바이스 크기별 반응형 처리 */
@media screen and (max-width: 1200px) {
  .image-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pfSlide {
    flex: 0 0 calc((100% - 4rem) / 4); /* 4개씩 */
  }
}

@media screen and (max-width: 1024px) {
  #listBox {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
  }

  #modalBox {
    max-width: 700px;
    padding: 0.8rem;
  }

  .modal-slider img {
    width: calc(33.33% - 16px);
  }

  #slideBox {
    height: 90vh;
  }
  #titleBox {
    top: 50%;
    left: 50%;
    width: 90%;
  }
  .title1 {
    font-size: 2.2rem;
  }
  .title2 {
    font-size: 1rem;
  }
  button.read {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
  .slideButton {
    font-size: 2rem;
    padding: 0.4rem 0.6rem;
  }

}

@media screen and (max-width: 992px) {
  .image-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pfSlide {
    flex: 0 0 calc((100% - 3rem) / 3); /* 3개씩 */
  }
}

@media screen and (max-width: 850px) {
  #listBox1, #listBox2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #thumbBox, #listBox2 {
    grid-template-columns: repeat(3, 1fr);
    width: 95%;
    margin: auto;
  }

  .title1 { font-size: 2rem; }
  .slideImage {
    width: 200%;
    transform: translateX(-25%);
  }
}

@media screen and (max-width: 800px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .profile-wrapper {
    width: 220px;
    height: 300px;
    border-radius: 50% / 60%;
  }

  .right {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .modal-slider img {
    width: calc(50% - 16px);
  }

  .image-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pfControls button {
    padding: 6px 10px;
    font-size: 13px;
    min-width: 80px;
  }

  
}

@media screen and (max-width: 600px) {

  
  #header {
    margin-top: 10vh;
    height: 60vh; 
    min-height: unset; /* 필요시 최소 높이 해제 */
  }

  #slideBox {
    height: 60vh;
  }
  #titleBox {
    top: 30%;
    left: 50%;
    width: 94%;
  }
  .title1 {
    font-size: 1.6rem;
  }
  .title2 {
    font-size: 0.9rem;
  }

  .slideButton {
    top: 50%; /* 50% 위치 */
    transform: translateY(-50%); /* 버튼 높이의 절반만큼 위로 이동 */
  }

  button.read {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
  #pagination {
    bottom: 38rem;
    gap: 0.5rem; 
  }
  .page {
    width: 10px;
    height: 10px;
  }
  .slideButton {
    font-size: 1.5rem;
    padding: 0.3rem 0.5rem;
  }

  .page { width: 12vw; height: 1vw; }
  .page:first-child { width: 25vw; }

  .slideButton { font-size: 2rem; z-index: 15; }

  .custom-shape-divider-bottom-1752453502,
  .custom-shape-divider-bottom-1752453502 svg {
    max-height: 50px;
  }

   #listBox {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px; /* 여백 최소화 */
    width: 100%;
  }

  .list {
    padding: 0;
    margin: 0;
  }

  .list img.thumb {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  #Intro {padding: 10vh 5vw;}
  .right { padding: 0 5vw; }
  .name { font-size: 1.5rem; }
  .exp { font-size: 1rem; }
  .expList { font-size: 0.8rem; }

  
.profileWrapper {
  width: 150px ; 
  height: 210px ;
  border-radius: 50% 60%;
  overflow: hidden;
  background-color: #004eff;
}
.profileImage {
  width: 100%  ;
  height: 100%  ;
  object-fit: cover;
}


}

@media screen and (max-width: 480px) {

  

  
  .smallTitle {
  font-size: 1.2rem !important;
  }

  .left {
    margin-bottom: 3rem;  /* 아래쪽 마진 추가 */
  }
  

  .modal-slider img {
    width: 100%;
  }

  #listBox {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }

  .list, .list img.thumb {
    border-radius: 0.5rem;
  }

  #modalBox {
    width: 95%;
    max-width: none;
    border-radius: 0.5rem;
    padding: 0.5rem;
  }

  #modalBox video {
    border-radius: 0.5rem;
    width: 100%;
    height: auto;
  }

  .closeBtn {
    top: 8px;
    right: 12px;
    font-size: 1.5rem;
  }

  .slideImage {
    width: 300%;
    transform: translateX(-33%);
  }

  #titleBox {
    top: 50%;
  }

  #pagination {
    left: 55%;
  }

  #Intro, #SEOHA {
    padding: 5vh 4vw;
    text-align: center;
  }


  .aboutContainer {
    flex-direction: column;
    gap: 2rem;
    padding: 0 5vw;
    text-align: center;
  }

  .profileWrapper {
    width: 140px;
    height: 180px;
    margin: 15vh auto;
  }

  .name { font-size: 1.5rem; }
  .label { margin-top: 2rem; font-size: 0.7rem; }
  .years { font-size: 0.6rem; }
  .exp { font-size: 0.8rem; }

  .expList {
    font-size: 0.6rem;
    padding-left: 1.2rem;
    padding-bottom: 3rem;
    text-align: left;
  }

  .right {
    max-width: 100%;
  }

  .right .label,
  .right .name,
  .right .years,
  .right .exp,
  .right .expList,
  .left .profileWrapper {
    transform: none;
    opacity: 1;
    animation: none;
  }

  .pfControls button {
    font-size: 12px;
    padding: 6px 10px;
    min-width: 60px;
  }

  .image-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px; /* 간격을 줄이면 좁은 화면에서도 더 잘 들어맞아요 */
  }

  .image-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .pfControls {
    gap: 8px;
  }

  .pfControls button {
    padding: 5px 8px;
    font-size: 12px;
    min-width: 50px;
  }

  .pfContainer {
    max-width: 100%;
    padding: 0 1rem;
  }
}
