/* style.css */
.rp-related-posts {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.rp-related-posts-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.rp-related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.rp-related-post {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.rp-related-post:hover {
    transform: translateY(-5px);
}

.rp-related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.rp-related-post h4 {
    padding: 10px;
    font-size: 16px;
    margin: 0;
}

.rp-related-post h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rp-related-post h4 a:hover {
    color: #0066cc;
}

@media (max-width: 768px) {
    .rp-related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .rp-related-posts-grid {
        grid-template-columns: 1fr;
    }
}