.container {
    width: 60%;
    margin: 50px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header {
    text-align: center;
}
.header h1 {
    font-size: 36px;
    color: #333;
    font-weight: bold;
}
.meta {
    text-align: center;
    color: #777;
    margin-bottom: 20px;
}
.featured-image img {
    width: 100%;
    border-radius: 10px;
}
.content {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-top: 20px;
    font-weight: bold;
    text-align: justify;
}
.content p {
    margin-bottom: 15px;
}
@media (max-width: 768px) {
    .container {
        width: 90%;
        margin: 20px auto;
    }
}