body{
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, sans-serif;
    box-sizing: border-box;
}
/* Post Detail Page Styles */
body.post-detail-page {
    background: #f7f8fa;
    color: #222;
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.post-container {
    max-width: 1500px;
    margin: 5px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 40px 40px 36px 40px;
}



.post-header {
    margin-bottom: 18px;
}

.post-category {
    display: inline-block;
    background: #027C02;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 12px;
    padding: 5px 16px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.post-title {
    font-size: 2.1rem;
    font-weight: 800;
    margin: 10px 0 8px 0;
    color: #1a1a1a;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 10px;
}

.post-featured-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 24px auto;
    border-radius: 14px;
    overflow: hidden;
    background: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-featured-image img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.post-content {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #232323;
    margin-bottom: 32px;
}

.post-tags {
    margin: 18px 0 0 0;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #f0f0f0;
    color: #027C02;
    font-size: 13px;
    border-radius: 8px;
    padding: 4px 12px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}
.tag:hover {
    background: #e0e0e0;
}

/* Share Section */
.post-share {
    margin: 32px 0 18px 0;
    border-top: 1px solid #ececec;
    padding-top: 18px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.share-total {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #444;
    font-weight: 600;
    gap: 6px;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.share-btn.facebook { color: #1877f3; }
.share-btn.x { color: #111; }
.share-btn.whatsapp { color: #25d366; }
.share-btn:hover { background: #e0e0e0; }

/* Disclaimer */
.disclaimer {
    background: #f8f8f8;
    color: #7a7a7a;
    font-size: 13px;
    border-radius: 8px;
    padding: 16px 18px;
    margin: 32px 0 0 0;
    border-left: 4px solid #027C02;
}

/* Trending Stories */
.trending-section {
    margin: 48px 0 0 0;
}
.trending-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.trending-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
}
.trending-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}
.trending-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 14px 12px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid #ececec;
}
.trending-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #027C02;
    margin: 0;
    text-decoration: none;
    transition: color 0.2s;
}
.trending-card-title:hover {
    color: #1a1a1a;
}
.show-more-btn {
    margin: 18px auto 0 auto;
    display: block;
    background: #027C02;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.show-more-btn:hover {
    background: #025d02;
}

/* Comments Section */
.comments-section {
    margin: 48px 0 0 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 28px 22px 18px 22px;
}
.comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.comments-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
}
.comments-filter {
    font-size: 14px;
    border: 1px solid #ececec;
    border-radius: 6px;
    padding: 6px 12px;
    background: #fafafa;
    color: #222;
    outline: none;
}
.comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.comment-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 16px 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.comment-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #888;
}
.comment-content {
    font-size: 15px;
    color: #232323;
    margin-bottom: 4px;
}
.comment-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.vote-btn {
    background: none;
    border: none;
    color: #027C02;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
    transition: color 0.2s;
}
.vote-btn:hover {
    color: #1a1a1a;
}
.reply-btn {
    background: none;
    border: none;
    color: #444;
    font-size: 14px;
    cursor: pointer;
    margin-left: 8px;
    transition: color 0.2s;
}
.reply-btn:hover {
    color: #027C02;
}

/* Comment Form */
.comment-form {
    margin-top: 18px;
    display: flex;
    gap: 10px;
}
.comment-input {
    flex: 1;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 15px;
    outline: none;
    background: #fafafa;
    color: #232323;
}
.comment-btn {
    background: #027C02;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.comment-btn:hover {
    background: #025d02;
}

/* Related Stories */
.related-section {
    margin: 48px 0 0 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 22px 22px 18px 22px;
}
.related-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}
.related-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.related-item {
    font-size: 15px;
    color: #027C02;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.related-item:hover {
    color: #1a1a1a;
}

@media (max-width: 900px) {
    .post-container {
        max-width: 98vw;
        padding: 18px 8px 18px 8px;
    }
    .post-featured-image {
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .post-container {
        padding: 12px 2px 12px 2px;
    }
    .trending-list {
        grid-template-columns: 1fr;
    }
    .comments-section, .related-section {
        padding: 8px 2px 8px 2px;
    }
    .post-featured-image img {
        max-height: 180px;
    }
}
