
.vb-rp-container {
    margin-top: 40px;
}

.vb-rp-title {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.vb-rp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.vb-rp-card {
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vb-rp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.vb-rp-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.vb-rp-card-content {
    padding: 10px;
}

.vb-rp-card h4 {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

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