/* 포스트 카드 링크 스타일 - 박스 전체 클릭 가능 */
.post-list a {
    text-decoration: none !important;
    color: inherit !important;
    display: block !important;
}

/* 메인 페이지 포스트 카드 호버 효과 */
.post-list a:hover .post-card-clickable {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
    background: var(--tertiary) !important;
}

.post-list a:active .post-card-clickable {
    transform: translateY(-1px);
}

.post-card-clickable {
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

/* 카테고리 섹션 간격 */
.category-section {
    margin: 50px 0 !important;
    padding: 25px !important;
}

/* 포스트 엔트리 간격 */
.post-entry {
    margin: 20px 0 !important;
    padding: 20px !important;
}

/* 일반 목록 페이지 포스트 간격 */
article.post-entry {
    margin-bottom: 30px !important;
    padding: 25px !important;
}
