/* Container for ad */
.rpa-ad {
    margin: 15px 0;
    padding: 10px;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    background: #fff;  /* optional background */
}

/* Image styling */
.rpa-ad img {
    width: 100px;           /* rectangular width */
    height: 60px;           /* rectangular height */
    object-fit: cover;      /* image properly fit in rectangle */
    border-radius: 4px;     /* optional rounded corners */
    margin-right: 10px;
}

/* Link styling */
.rpa-ad a {
    text-decoration: none !important;  /* underline removed */
    color: red !important;             /* red color text */
    font-weight: bold;
}

/* Hover effect */
.rpa-ad:hover {
    background: #f9f9f9; /* subtle hover background */
}
