
.rpi-box {
    border: 1px dashed #e63946;
    padding: 6px;
    margin: 16px 0;
    background: #fff;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.rpi-box:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

.rpi-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none !important;
}

.rpi-thumb img {
    width: 180px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    border-radius: 4px;
    background: #f7f7f7;
}

.rpi-title {
    font-size: 15px;
    line-height: 1.45;
    color: #111;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 480px) {
    .rpi-thumb img {
        width: 160px;
        max-height: 105px;
    }
    .rpi-title {
        font-size: 14px;
    }
}
