/* 목록 점(·)이 안쪽으로 들어오게 하는 필수 구조 */
.related-posts-list {
    padding-left: 20px;
    list-style-type: disc;
}

/* 제목과 버튼을 양옆으로 찢어주는 구조 */
.related-post-item div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 버튼 사이의 간격 */
.order-buttons {
    display: flex;
    gap: 4px; 
    margin-left: 10px;
}

/* 관련 글 블록 안에 있는 모든 링크의 밑줄을 강제로 해제 */
.related-posts-list li a {
    color: var(--wp--style--color--link, #0073aa);
    text-decoration: none;
}
.related-posts-list li a:hover {
    text-decoration: underline;
}