/* 파일명: _0_core/includes/includes.css */
/* 설명: 헤더와 푸터에만 적용되는 세부/덮어쓰기 스타일 */

/* Auth Menu: 로그인/유저 정보 영역 디테일 */
.auth-menu li { 
    font-size: 14px; 
    white-space: nowrap; 
}

/* User Info: 프로필 이미지 + 닉네임 + '님'  */
.user-info { 
    color: #6b7280; 
    padding-right: 18px; /* 세로줄 오른쪽 간격 확보 */
    margin-right: 4px; /* 다음 메뉴(마이페이지)와의 간격 */
    display: flex; 
    align-items: center; 
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.user-info strong { 
    color: #111827; 
    font-weight: 700; 
}

/* Header Profile Image: 크기 및 디자인 고정 */
.header-profile-img { 
    width: 32px; 
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px;
    aspect-ratio: 1 / 1;
    border-radius: 50%; 
    object-fit: cover; 
    display: block;
    flex-shrink: 0;
    border: 1px solid #e5e7eb; 
    background-color: #f3f4f6; 
}
/* 파일명: _0_core/includes/includes.css */
/* 설명: 헤더 로고 이미지 스타일 */

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo-img {
    display: block;
    width: auto;
    height: 42px;
    object-fit: contain;
}
