/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/


    .sub-people {
      border: 1px solid #f0f0f0;
      box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
      padding: 20px;
    }

    .sub-people .top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #f0f0f0;
      padding-bottom: 10px;
      margin-bottom: 10px;
    }

    .sub-people .bottom {
      color: #666;
    }

    .sub-people .txt1 {
      font-weight: bold;
    }

    .sub-people .txt2 {
      font-size: 14px;
      color: #666;
    }

    .sub-people .txt3 {
      font-size: 14px;
    }

    .sub-people .txt4 {
      margin-top: 10px;
    }

    .sub-people .profile-img {
      width: 70px;
      height: 70px;
      border-radius: 50%; /* 원 모양으로 이미지 표시 */
      overflow: hidden; /* 이미지 넘치는 부분 숨김 */
      margin-top: 10px;
    }

    .sub-people .profile-img img {
      width: 100%;
      height: auto;
      display: block;
    }