/* 게시글 목록 스타일 */
.post-view-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.post-view-list a {
    padding: 5px 0;
    text-decoration: none;
    display: block;
}

.post-view-list a:hover .post-view-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateX(4px);
}

.post-view-list a:hover .post-view-title,
.post-view-list a:hover .post-view-card-body {
    color: white !important;
}

.post-view-card {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f8f9fa;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-view-card > img, .post-view-card > video {
    width: 70px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
    display: block; /* 인라인 요소 특성 제거 */
}

.post-view-card-body {
    flex: 1;
    text-align: left;
    white-space: nowrap; /* 줄 바꿈 방지 */
    overflow: hidden; /* 넘치는 텍스트 숨김 */
    text-overflow: ellipsis; /* 말줄임표 (...) 표시 */
}

.post-view-title {
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
    transition: color 0.3s ease;
}

.post-view-card-title {
    color: #007bff;
}

@media screen and (max-width: 768px) {

    .post-view-card {
        padding: 5px;
    }

    .post-view-title {
        font-size: 14px;
    }

    .post-view-card span, .post-view-card div {
        font-size: 12px;
    }

    .post-view-card > img, .post-view-card > video {
        width: 60px;
        margin-right: 5px;
        display: block; /* 인라인 요소 특성 제거 */
    }

}