.page-header {
    padding: 140px 5% 40px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: #00bfff;
    margin-bottom: 20px;
}

.page-header-line {
    width: 80px;
    height: 2px;
    background: rgba(100, 140, 255, 0.4);
    margin: 0 auto;
}

.news-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5% 100px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.news-loading,
.news-error {
    text-align: center;
    color: #c0ccff;
    padding: 60px 0;
}

.news-post {
    background: rgba(10, 18, 40, 0.5);
    border: 1px solid rgba(100, 140, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.news-post.visible {
    opacity: 1;
    transform: translateY(0);
}

.news-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.news-content {
    padding: 28px 32px 32px;
    text-align: center;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.news-category {
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.3);
    color: #00bfff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-date {
    font-size: 13px;
    color: #7a9fd4;
}

.news-divider {
    width: 60px;
    height: 1px;
    background: rgba(100, 140, 255, 0.25);
    margin: 0 auto 16px;
}

.news-title {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: #00bfff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.news-body {
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.8;
    color: #c0ccff;
    margin-bottom: 24px;
}

.news-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #e05555;
    color: #e05555;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease;
}

.news-btn:hover {
    background: #e05555;
    color: #fff;
}

@media (max-width: 600px) {
    .news-content {
        padding: 24px 20px 28px;
    }

    .news-meta {
        flex-direction: column;
        gap: 6px;
    }

    .news-image {
        height: 200px;
    }
}