
.rr-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.rr-post {
    display: flex;
    flex-direction: column;
    border: none;
    padding: 0;
}
.rr-post img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.rr-post h3 {
    font-size: 18px;
    margin: 15px 0 10px;
    font-weight: 600;
    color: #aa1c51;
}
.rr-post p {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}
.rr-post a {
    text-decoration: none;
    color: inherit;
}
