.container {
    max-width: 1200px;
    /* width: 80%; */
    margin: auto;
    padding: 20px 0;
}
h1 {
    font-size: 28px;
    font-weight: bold;
}
.category {
    font-size: 12px;
    color: #3F3849;
    font-weight: 700;
}
.date {
    color: #94A3B8;
    font-size: 12px;
    margin-bottom: 10px;
}
.image-container img {
    width: 100%;
    border-radius: 8px;
}
.content {
    margin-top: 20px;
    line-height: 1.6;
}
.recent-posts {
    margin-top: 50px;
}
.recent-posts h2 {
    font-size: 24px;
}
.post-list {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.post-item {
    width: 30%;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 8px;
}
.post-item img {
    width: 100%;
    height: 200px;
    background: #ccc;
    display: block;
    border-radius: 8px;
}
.post-item h3 {
    font-size: 18px;
    margin-top: 10px;
}
.post-item p {
    font-size: 14px;
    color: #666;
}
.post-item a {
    color: blue;
    text-decoration: none;
    font-weight: bold;
}