.enhanced-rss-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.enhanced-rss-item {
	display: flex;
	flex-direction: row;
	gap: 1em;
	margin-bottom: 0.5em;
	min-height: 100px;
}

.enhanced-rss-image {
	min-width: 125px;
	max-width: 125px;
	min-height: 100px;
	max-height: 100px;
	overflow: hidden;
    position: relative;
}

.enhanced-rss-image::before {
    content: '';
    display: block;
    width: 125px;
    height: 100px;
    background-color: #f0f0f0;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.enhanced-rss-image img {
	width: 125px;
    height: 100px;
	object-fit: cover;
    border-radius: 10px;
    display: block;
    position: relative;
    z-index: 2;
}

.enhanced-rss-content {
    flex: 1;
    min-width: 0;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.enhanced-rss-title {
    margin-top: 2px;
    font-size: 1.1em;
    line-height: 1.3;
    min-height: 1.43em;
    font-display: swap;
}

.enhanced-rss-title a {
    text-decoration: none;
    color: inherit;
}

.enhanced-rss-title a:hover {
    color: #0073aa;
    text-decoration: underline;
}


.enhanced-rss-meta {
    margin-bottom: 0.5em;
    font-size: 0.9em;
    color: #666;
    min-height: 1.33em;
    line-height: 1.33;
}

.enhanced-rss-date,
.enhanced-rss-author {
    margin-right: 1em;
}

.enhanced-rss-excerpt {
    font-size: 0.95em;
    line-height: 1.5;
    color: #333;
    overflow-wrap: break-word;
    hyphens: auto;
}


/* Editor specific styles - editor-style.css */
.enhanced-rss-preview {
    padding: 1em;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

.enhanced-rss-placeholder .components-placeholder {
    min-height: 200px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .enhanced-rss-item {
        border-bottom-color: #333;
    }
    
    .enhanced-rss-meta {
        color: #ccc;
    }
    
    .enhanced-rss-excerpt {
        color: #ddd;
    }
    
    .enhanced-rss-title a:hover {
        color: #4a9eff;
    }
}