.news-item {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 24px;
    margin-bottom: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.news-date {
    color: #888;
    letter-spacing: 0.1em;
}

.news-category {
    background: #111;
    color: #fff;
    padding: 2px 10px;
    font-size: 0.75rem;
    border-radius: 2px;
    letter-spacing: 0.05em;
}

.news-item-title {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.6;
}

.news-item-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s;
}

.news-item-title a:hover {
    color: #666;
}

.article-box {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 40px;
    text-align: left;
}

.article-content {
    font-size: 0.95rem;
    line-height: 2.2;
    color: #333;
    white-space: pre-wrap;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #111;
    border: 1px solid #111;
    padding: 14px 36px;
    font-family: inherit;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-back:hover {
    background: #111;
    color: #fff;
    transform: translateX(-3px);
}