.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 24px;
}

.news-content {
    flex: 1;
}

.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.platform-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.platform-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--secondary);
}

.platform-name {
    font-weight: 600;
    font-size: 14px;
}

.news-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.badge-bonus {
    background-color: #ECFDF5;
    color: #059669;
}

.badge-update {
    background-color: #EFF6FF;
    color: #2563EB;
}

.news-date {
    font-size: 13px;
    color: var(--muted-foreground);
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--foreground);
}

.news-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 20px;
}

.news-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    padding: 0px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: none;
    margin: 0 !important;
    width: 20% !important;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
    width: 20% !important;
}

.btn-outline:hover {
    background-color: var(--secondary);
}

/* Responsive tweak for list layout */
@media (max-width: 768px) {
    .news-card {
        flex-direction: column;
    }

    .btn-primary, .btn-outline {
        width: 100% !important;
    }
}
