.rp-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.rp-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
}
.rp-image {
    flex: 0 0 150px;
}
.rp-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}
.rp-content {
    flex: 1;
}
.rp-title {
    margin: 0 0 10px;
    font-size: 1.25rem;
}
.rp-title a {
    color: inherit;
    text-decoration: none;
}
.rp-title a:hover {
    color: #AC8EED;
}
.rp-excerpt p {
    margin: 0 0 10px;
    color: #54595F;
}
.rp-read-more {
    color: #8B61C2;
    text-decoration: none;
    font-weight: bold;
}
.rp-read-more:hover {
    color: #AC8EED;
}