/* 로그인했을 때 LOGIN 버튼 숨기기 */ body.logged-in .hide-if-logged-in { display: none !important; }  /* 로그인 안 했을 때 MY PAGE 버튼 숨기기 */ body:not(.logged-in) .show-if-logged-in { display: none !important; }
/* 1. 레이아웃: 스크롤이 가능하도록 relative 설정 */
.sloist-center-wrapper {
    position: relative;
    margin-top: 12vh;
    margin-bottom: 100px;
    text-align: center;
    width: 100%;
    z-index: 10;
    overflow: hidden;
}

/* 2. 로고 스타일: 질서와 여백 */
.sloist-logo {
    font-family: "Noto Serif KR", "Times New Roman", serif;
    font-size: 42px;
    font-weight: 200;
    letter-spacing: 12px;
    color: #111;
    margin: 0 0 45px 12px;
    opacity: 0.9;
    cursor: default;
    user-select: none;
}

/* 3. 검색창: 모바일 확대 방지 및 시각적 정화 */
.sloist-search-box input {
    width: 260px;
    border: none;
    border-bottom: 1px solid #f2f2f2;
    background: transparent;
    text-align: center;
    font-size: 16px !important; /* 확대 방지용 */
    transform: scale(0.625); /* 10px로 보이게 축소 */
    transform-origin: center;
    letter-spacing: 4px;
    color: #000;
    font-weight: 200;
    outline: none;
    padding: 12px 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.4;
    -webkit-appearance: none;
    border-radius: 0;
}

.sloist-search-box input:focus, 
.sloist-search-box input:hover {
    opacity: 1;
    width: 300px;
    border-bottom-color: #000;
}

.sloist-search-box input::placeholder {
    color: #d0d0d0;
    font-weight: 300;
}
/* 슬로이스트: 마이페이지 링크 클릭 방해 요소 완전 박멸 */
.favorites-list li {
    position: relative !important;
    pointer-events: auto !important; /* 리스트 영역 클릭 허용 */
}

.favorites-list li a {
    display: block !important;
    position: absolute !important; /* 사진과 제목 위를 완전히 덮음 */
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 9999 !important; /* 최상단 레이어로 배치 */
    text-indent: -9999px; /* 글자는 숨기고 영역만 클릭 가능하게 함 */
}

/* 플러그인이 생성하는 모든 버튼과 폼을 클릭 불가능하게 만듦 */
.favorites-list button, 
.favorites-list form,
.simplefavorites-remove-button {
    display: none !important;
    pointer-events: none !important;
}