.post-more-btn {
    position: relative;
    z-index: 10; /* 부모인 .post-item(cursor: pointer)보다 위에 위치 */
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: none !important;
    border: none !important;
    padding: 0 0 0 10px;
    cursor: pointer;
    color: #666666;
    transition: opacity 0.2s;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.post-more-btn:active {
    opacity: 0.4;
    scale: 0.95; /* 살짝 눌리는 느낌 추가 */
}

.post-more-btn .material-icons {
    pointer-events: none; /* 클릭 이벤트가 버튼으로 전달되도록 보장 */
    font-size: 24px !important; /* 아이콘 크기도 살짝 키움 */
}
