.rrspin-rss {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 95%;
    margin: 0 auto;
    margin-top: 2em;
}

.rrspin-rss-item {
    box-sizing: border-box;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.rrspin-rss-item img {
    width: 100%;
    height: 200px !important;
    /* Set a fixed height */
    object-fit: cover;
    /* Ensure the image covers the area and maintains aspect ratio */
    margin-bottom: 10px;
    border: 1px solid #ddd !important;
    padding: 10px;
}

.rrspin-rss-item h2 {
    font-size: 1.6em !important;
    margin-bottom: 10px;
    color: #C64E2A;
    font-weight: bold;
    flex: 0 0 73px;
    /* Fixed height for title */
    overflow: hidden;
    /* Hide overflow if the title is too long */
}

.rrspin-rss-item h2 a {
    color: #C64E2A;
    text-decoration: none;
}

.rrspin-rss-item p {
    margin-bottom: 10px;
    flex: 1 0 100px;
    /* Fixed height for description */
    overflow: hidden;
    /* Hide overflow if the description is too long */
}

.rrspin-rss-item .read-more {
    text-decoration: none;
    color: white;
    font-weight: bold;
    background-color: #C64E2A;
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: 10px;
    display: inline-block;
    align-self: flex-start;
    /* Align the button to the start */
}

/* Responsive layout */
@media (min-width: 991px) {
    .rrspin-rss-item {
        flex: 1 1 calc(33.333% - 20px);
        /* Three items side by side for xl screens */
    }
}

@media (max-width: 991px) {
    .rrspin-rss-item {
        flex: 1 1 100%;
    }

    .rrspin-rss { 
        max-width: 70%;
    }
}

@media (max-width: 600px) {
    .rrspin-rss {
        max-width: 90%;
    }
}