/* News page styles */

.news-content-wrapper {
    background: #1a1d2e;
    border-radius: 1.25rem;
    padding: 2.5rem 3rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-md);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.news-content-wrapper .news-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
}

.news-content-wrapper .news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-content-wrapper .news-item:first-child {
    padding-top: 0;
}

.news-content-wrapper .news-date {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.news-content-wrapper .news-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #c5c8d8;
    margin: 0 0 0.5rem 0;
}

.news-content-wrapper .news-item p:last-child {
    margin-bottom: 0;
}

.news-content-wrapper .news-item strong {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.news-content-wrapper .news-item a {
    color: var(--bitcoin-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.news-content-wrapper .news-item a:hover {
    color: #ffad42;
    text-decoration: underline;
}

.news-empty {
    color: var(--text-secondary);
    font-style: italic;
    text-align: center;
    padding: 2rem;
}

/* ========== MOBILE ========== */
@media (max-width: 500px) {
    .news-content-wrapper {
        border-radius: 0;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 600px) {
    .news-content-wrapper {
        padding: 1.5rem 1.25rem;
    }

    .news-content-wrapper .news-item p {
        font-size: 1rem;
    }
}
