/* Additional styles for the news article */
.news-article {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}


.article-header {
    margin-bottom: 40px;
}

.article-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-date {
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
}

.share-button {
    background: transparent;
    border: 1px solid #666;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    float: right;
    margin-top: -50px;
}

.share-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.article-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    display: block;
    border-radius: 8px;
}

.article-content {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 16px;
    color: #ccc;
}

.article-content p {
    margin-bottom: 20px;
}



.footer{
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px){
    .footer{
        padding-top: 100px;
    }
}

@media (max-width: 768px) {
    .news-article{
        padding-top: 0;
    }

    .article-title {
        font-size: 32px;
    }
    
    .share-button {
        float: none;
        margin-top: 20px;
    }
}