.news-page {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

.news-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(253, 121, 168, 0.1));
    text-align: center;
}

.news-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--bg-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.social-icon {
    font-size: 20px;
}

.news-list {
    padding: 60px 0;
}

.news-post {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.post-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.post-date {
    color: var(--text-secondary);
    font-size: 14px;
}

.post-category {
    padding: 5px 15px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.post-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.post-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.post-content p {
    margin-bottom: 20px;
}

.update-highlights {
    background: var(--bg-medium);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.update-highlights h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.update-highlights ul {
    list-style: none;
    padding-left: 20px;
}

.update-highlights li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
}

.update-highlights li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.post-media {
    margin-top: 30px;
}

.post-media img {
    width: 100%;
    border-radius: 8px;
}

blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 60px;
}

.page-link {
    padding: 10px 15px;
    background: var(--bg-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-link:hover,
.page-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}