body {
    margin: 0;
    line-height: 1.6;
}

.container {
    width: 70%;
    margin: 40px auto;
    padding: 0 20px;
}

.news-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.news-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.news-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 5px;
}

.news-content {
    font-size: 16px;
    color: #444;
    text-align: justify;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;
    color: #e4a11b;
    font-weight: bold;
}

.back-link:hover {
    text-decoration: underline;
    color: #445cc7;
}

@media (max-width: 500px) {
    .container {
        width: 96%;
        margin: 40px auto;
        padding: 0 20px;
    }
    .news-title {
        font-size: 18px;
        color: #333;
        margin-bottom: 10px;
    }
    .news-date {
        font-size: 10px;
    }

    .news-content {
        font-size: 14px;
    }

    .back-link {
        font-size: 12px;
    }
}
