
/* 나의 소개 페이지 커스텀 디자인 */
.custom-intro-section { max-width: 900px; margin: 30px auto; }
.intro-item { display: flex; align-items: center; margin-bottom: 60px; flex-wrap: wrap; }
@media (max-width: 768px) { .intro-item { flex-direction: column; text-align: center; } }
.img-container { flex: 0 0 220px; margin-right: 40px; display: flex; justify-content: center; }
.img-container img { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; box-shadow: 0 8px 16px rgba(0,0,0,0.1); }
.text-container { flex: 1; min-width: 300px; }
@media (max-width: 768px) {
  .text-container { margin-top: 25px; }
  .img-container { margin-right: 0; }
  .text-container ul { text-align: left; display: inline-block; }
}
.text-container h2 { font-size: 1.8rem; margin-bottom: 10px; font-weight: bold; }
.text-container h3 { font-size: 1.3rem; margin-bottom: 10px; color: #444; }
.text-container p { font-size: 1.05rem; line-height: 1.6; }

img {

  -webkit-touch-callout: none; /* 스마트폰에서 사진 꾹 누르면 뜨는 저장 메뉴 막기 */

  -webkit-user-select: none;   /* 모바일 텍스트 및 영역 선택 막기 */

  user-select: none;           /* PC 텍스트 및 영역 선택 막기 */

  pointer-events: none;        /* 마우스 클릭, 우클릭, 드래그 등을 아예 투명 취급해서 무시함 */

}
