/* Dark Theme Compact Style */
.rnl-container {
    max-width: 100%;
    margin: 20px 0;
    background: #1a1a2e;
    border-radius: 16px;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.rnl-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rnl-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    background: #16213e;
    border: 1px solid #2d3561;
    border-radius: 12px;
    transition: all 0.2s;
}

.rnl-item:hover {
    background: #1a1a3e;
    border-color: #e94560;
    transform: translateX(4px);
}

.rnl-image {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    background: #0f3460;
}

.rnl-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rnl-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rnl-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.rnl-source-badge {
    font-size: 10px;
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 20px;
}

.rnl-cat {
    font-size: 10px;
    font-weight: bold;
    background: #e94560;
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
}

.rnl-date {
    font-size: 10px;
    color: #6c6c8a;
}

.rnl-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.rnl-title a {
    color: #e8e8e8;
    text-decoration: none;
}

.rnl-title a:hover {
    color: #e94560;
}

.rnl-excerpt {
    font-size: 12px;
    color: #a0a0a0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rnl-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #6c6c8a;
}

.rnl-footer a {
    color: #e94560;
    text-decoration: none;
    font-weight: 500;
}

.rnl-empty {
    text-align: center;
    padding: 60px;
    background: #16213e;
    border-radius: 16px;
    color: #a0a0a0;
}

.rnl-loader {
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    color: #a0a0a0;
}

.rnl-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid #2d3561;
    border-top-color: #e94560;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .rnl-image { width: 75px; height: 75px; }
    .rnl-title { font-size: 13px; }
}

/* Infinite Scroll Loader */
.rnl-loader {
    text-align: center;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #a0a0a0;
    font-size: 13px;
}

.rnl-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid #2d3561;
    border-top-color: #e94560;
    border-radius: 50%;
    animation: rnl-spin 0.7s linear infinite;
}

@keyframes rnl-spin {
    to { transform: rotate(360deg); }
}

/* Scroll trigger invisible */
.rnl-scroll-trigger {
    height: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Load More Button */
.rnl-load-more {
    background: #16213e;
    border: 1px solid #2d3561;
    padding: 10px 28px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #e8e8e8;
    cursor: pointer;
    transition: all 0.2s;
}

.rnl-load-more:hover {
    background: #e94560;
    border-color: #e94560;
    color: white;
}