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

.post-view-list a {
    padding: 5px;
}

.post-view-card {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none; /* 기본 밑줄 제거 */
    transition: transform 0.3s ease, box-shadow 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; /* 말줄임표 (...) 표시 */
}

.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; /* 인라인 요소 특성 제거 */
    }

}