/* Eqvor News Latest - Compact News Section */
.brxe-eqvor-news-latest {
    background: #101828;;
    border-radius: 20px;
    padding: 16px;
    color: #ffffff;
}

/* Header */
.eqvor-news-latest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.eqvor-news-latest-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.eqvor-news-latest-see-more {
    color: #4a9eff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}



/* News Items */
.eqvor-news-latest-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.eqvor-news-latest-item {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
}

.eqvor-news-latest-period {
    color: #888888;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.eqvor-news-latest-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}
.eqvor-news-latest-content .news-link-wrapper .news-exit-popup{
    right: 20px;
}
.eqvor-news-latest-item-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

.eqvor-news-latest-arrow {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUuNjAxNTYgMi44MDA3OEw5LjEwMTU2IDcuMDAwNzhMNS42MDE1NiAxMS4yMDA4IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #374151;
    border-radius: 4px;
    display: block;
    width: 24px;
    height: 24px;
}

/* Separator */
.eqvor-news-latest-separator {
    height: 1px;
    background: #333333;
    margin: 0;
}

/* Empty State */
.eqvor-news-latest-empty {
    color: #888888;
    font-size: 14px;
    text-align: center;
    padding: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .eqvor-news-latest {
        padding: 20px;
        margin: 16px 0;
    }

    .eqvor-news-latest-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .eqvor-news-latest-title {
        font-size: 16px;
    }

    .eqvor-news-latest-item-title {
        font-size: 15px;
    }

    .eqvor-news-latest-arrow {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
}

