/* News Feed Styles */
.news-container {
    border-radius: 30px;
    background: #121031;
    padding: 30px 40px;
}

.news-item {
    border-radius: 14px;
    background: #262442;
    padding: 24px 0;
    margin-bottom: 18px;
}

.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}

.news-body {
    padding-left: 24px;
    padding-right: 24px;
}

a[target]:not(.btn).cta-button,
div.cta-button {
    padding: 3px 88px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    line-height: 33px;
    margin-top: 0;
}

.news-broker-logo {
    height: 48px;
    object-fit: contain;
    margin-right: 16px;
    border-radius: 8px;
    padding: 4px;
}

.news-meta {
    flex: 1;
}

.news-broker-name {
    font-weight: 700;
    color: #fff;
    font-size: 18px;
    margin-bottom: 4px;
}

.news-date {
    color: #63FFDA;
    font-size: 14px;
    font-weight: 700;
    line-height: 33px;
    margin-bottom: 3px;
}

.news-content {
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
}

.news-content a {
    color: #69e4bb;
    text-decoration: underline;
}

.news-content p:last-child {
    margin-bottom: 0;
}

.news-type-badge {
    background: rgba(105, 228, 187, 0.1);
    color: #69e4bb;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: auto;
}

.trustbox {
    margin-left: 0px;
}


.news-container h1 {
    font-size: 21px;
    font-weight: 700;
}

.news-container .highlight2 {
    color: var(--link);
}

.news-container p.description-desktop {
    color: var(--medium);
    margin: 10px auto;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 30px;
}


@media (max-width: 768px) {
    .news-container {
        border-radius: 20px;
        padding: 30px 16px;
    }
    .news-item {
        padding: 20px 0px;
    }

    .news-header {
        flex-wrap: wrap;
    }

    a[target]:not(.btn).cta-button, div.cta-button {
        padding: 3px 18px;

    }
}