/* File: assets/related_posts.css */
.wv-related-posts {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.wv-rp-title {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}
.wv-rp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.wv-rp-item {
    display: flex;
    flex-direction: column;
}
.wv-rp-thumb {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 16/10;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.wv-rp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.wv-rp-thumb:hover img {
    transform: scale(1.05);
}
.wv-rp-item-title {
    font-size: 15px;
    line-height: 1.4;
    margin: 0 0 5px;
    font-weight: 600;
}
.wv-rp-item-title a {
    text-decoration: none;
    color: inherit;
}
.wv-rp-item-title a:hover {
    color: #006AFF;
}
.wv-rp-meta {
    font-size: 12px;
    color: #888;
}
.wv-rp-thumb .no-thumb {
    font-size: 30px;
}