body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    background: #333;
    color: white;
    padding: 10px;
}
header nav ul {
    list-style: none;
    display: flex;
}
header nav ul li {
    margin-right: 20px;
}
header nav ul li a {
    color: white;
    text-decoration: none;
}
.post-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}
.post-card {
    border: 1px solid #ccc;
    padding: 0px;
    position: relative;
}
.thumbnail {
    position: relative;
}
.thumbnail img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}
.lock, .favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.favorite {
    right: 40px;
}
.categories span {
    background: #f0f0f0;
    padding: 5px;
    margin-right: 5px;
}
.meta {
    display: flex;
    justify-content: space-between;
}
.post-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    padding: 20px;
}
.breadcrumb {
    padding: 10px;
}
.user-info {
    display: flex;
    align-items: center;
}
.user-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.badge {
    background: #28a745;
    color: white;
    padding: 5px;
}
.gallery img {
    width: 100%;
    margin-bottom: 10px;
}
.faqs .faq {
    margin-bottom: 10px;
}
.faqs h4 {
    cursor: pointer;
}
.comments .comment {
    margin-bottom: 10px;
}
.related-post {
    display: flex;
    align-items: center;
}
.related-post img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    margin-right: 10px;
}