.ic-rss-content {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    width: 100%;
}

.ic-rss-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.ic-rss-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    width: 100%;
}

.ic-rss-item {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.ic-rss-link {
    text-decoration: none;
    display: block;
}

.ic-rss-image {
    width: 100%;
    height: 150px; /* Fixed height for landscape format */
    object-fit: cover; /* Crop to fit */
    object-position: center; /* Center the image */
    margin-bottom: 10px;
    transition: opacity 0.3s;
}

.ic-rss-image:hover {
    opacity: 0.8;
}

.ic-rss-title {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    color: #0073aa;
    text-decoration: none;
}

.ic-rss-title:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .ic-rss-grid {
        flex-direction: column;
        gap: 30px;
    }

    .ic-rss-item {
        width: 100%;
    }

    .ic-rss-image {
        height: 200px; /* Slightly larger on mobile for better visibility */
    }
}