.post-card {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        margin-bottom: 30px;
        overflow: hidden;
        transition: transform 0.3s ease;
    }
    .post-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .post-thumbnail-container {
        display: block;
        width: 100%;
        height: 200px;
        overflow: hidden;
    }
    .post-thumbnail {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px 10px 0 0;
    }
    .post-content {
        padding: 20px;
    }
    .blog_nav_post_title {
        margin: 0 0 10px 0;
        font-size: 1.4em;
    }
    .blog_nav_post_title a {
        /*color: #333;*/
        text-decoration: none;
    }
    .blog_nav_post_title a:hover {
        color: #0066cc;
    }
    .post-excerpt {
        color: #666;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    .blog_nav_postmetadata {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9em;
        color: #888;
        border-top: 1px solid #eee;
        padding-top: 15px;
    }
    .social-share {
        display: flex;
        gap: 8px;
    }
    .social-share a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        border: 1px solid #ddd;
        color: #666;
        text-align: center;
        font-size: 12px;
        transition: all 0.2s;
        text-decoration: none;
        font-family: 'Font Awesome 6 Brands'; /* For proper icon rendering */
    }
    .social-share a:hover {
        background: #f5f5f5;
        transform: scale(1.1);
    }
    .facebook-share {
        color: #3b5998;
        border-color: #3b5998 !important;
    }
    .twitter-share {
        color: #1da1f2;
        border-color: #1da1f2 !important;
    }
    .pinterest-share {
        color: #e60023;
        border-color: #e60023 !important;
    }

/* h3 post title
.blog_nav_post_title, .cat-item {
     text-align: left !important;
}
.post_title {
     text-align: left !important;
     color: #bbb !important;
     font-weight: bold !important;
     font-size: 20px !important;
     }
.under_the_title {
     display: none;
     }
.blog_nav_postmetadata {
     font-size: 12px;
     color: gray !important;
     }
.blog_nav_postmetadata a {
     color: gray !important;
     } */