.innovando-rss-section {
    margin-bottom: 40px;
}

.innovando-rss-heading {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 10px;
}

.innovando-rss-item {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, .75), rgba(255, 255, 255, .55));
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 4px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    backdrop-filter: saturate(140%) blur(8px);
    -webkit-backdrop-filter: saturate(140%) blur(8px);
    transform: translateY(14px);
    transition: opacity .45s ease, transform .45s ease, box-shadow .3s ease;
}

.innovando-rss-item::before,
.innovando-rss-item::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    pointer-events: none;
    z-index: 9999;
}

.innovando-rss-item::before {
    top: 0;
    background: #89ba17;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.innovando-rss-item::after {
    bottom: 0;
    background: #58585a;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.innovando-rss-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.innovando-rss-image {
    width: 100%;
    overflow: hidden;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.innovando-rss-image img {
    object-fit: cover;
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    display: block;
}

.innovando-rss-image a{
    width: 100%;
}

.innovando-rss-item:hover .innovando-rss-image img {
    transform: scale(1.05);
}

.innovando-rss-content {
    padding: 16px;
}

.innovando-rss-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
}

.innovando-rss-title a {
    color: #89ba17 !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 800;
}

.innovando-rss-title a:hover {
    color: #89ba17;
}

.innovando-rss-excerpt {
    font-size: .88rem;
    opacity: .9;
    border-top: 1px dashed rgba(0, 0, 0, .1);
    padding-top: .65rem;
    line-height: 1.75;
}

.innovando-rss-readmore {
    display: inline-block;
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.innovando-rss-readmore:hover {
    color: #005177;
}

.innovando-rss-image .rss-thumb-bg{
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.innovando-rss-image-default{
    padding: 10px;
    height: auto !important;
}

.innovando-rss-image.innovando-rss-image-default .rss-thumb-bg{
    background-size: contain !important;
}

@media (max-width: 1024px) {
    /* .innovando-rss-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    } */
}

/* Responsive */
@media (max-width: 768px) {
    /* .innovando-rss-grid {
        grid-template-columns:repeat(1, 1fr) !important;
    } */

    .innovando-rss-heading {
        font-size: 24px;
    }

    .innovando-rss-content {
        padding: 15px;
    }
}

