.jboffers-module {
    max-width: 400px;
    margin: auto;
    font-family: Arial, sans-serif;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.jboffer-card {
    /* This transition is key for the fade effect */
    transition: opacity 0.5s ease-in-out;
}

.jboffer-image {
    width: 100%;
    height: auto;
    display: block;
}

.jboffer-content {
    padding: 16px;
}

.jboffer-title {
    margin-top: 0;
    font-size: 1.25em;
    color: #333;
}

.jboffer-description {
    font-size: 1em;
    color: #666;
    height: 60px; /* Fixed height for consistency */
    overflow: hidden;
}

.jboffer-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
}