.news-feed-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.news-feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
}

.news-feed-title {
    font-size: 0.85rem;
    font-weight: 900;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-feed-title::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

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

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-size: 0.7rem;
    font-family: 'Inter', sans-serif;
    color: #94a3b8;
    white-space: nowrap;
    padding-top: 4px;
    width: 75px;
}

.news-badge {
    font-size: 9px;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 4px;
    color: #fff;
    text-transform: uppercase;
    flex-shrink: 0;
    margin-top: 2px;
}

.badge-kaiaku { background: #ef4444; }
.badge-kaizen { background: #10b981; }
.badge-update { background: #3b82f6; }
.badge-info { background: #64748b; }

.news-content {
    font-size: 0.85rem;
    color: #334155;
    line-height: 1.5;
    text-decoration: none;
    font-weight: 500;
}


@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
        gap: 4px;
    }
    .news-date {
        width: auto;
    }
}
