.rp54-wrapper {
    background: #fff;
    border: 1px solid #ccc;
    padding: 16px;
    border-radius: 10px;
    margin: 24px 0;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.rp54-heading {
    font-size: 18px;
    font-weight: bold;
    color: #d00;
    border-bottom: 2px solid #d00;
    margin-bottom: 16px;
    padding-bottom: 6px;
}

.rp54-post {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: #000;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 14px;
    transition: box-shadow 0.2s ease-in-out;
}

.rp54-post:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.rp54-post img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 12px;
    flex-shrink: 0;
}

.rp54-post span {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    color: #111;
    display: block;
}

/* ✅ Mobile: Keep image on left and title on right */
@media screen and (max-width: 600px) {
    .rp54-post {
        flex-direction: row;
        text-align: left;
    }

    .rp54-post img {
        width: 90px;
        height: 65px;
        margin-right: 10px;
    }

    .rp54-post span {
        font-size: 15px;
    }
}