
/* 
    Created on : Feb 12, 2025, 3:56:35 PM
    Author     : hassanzmn
*/
body {
    font-family: vazirmatn, 'Open Sans', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    font-family: vazirmatn;
    background-color: #121824;
    color: #ffffff;
    padding: 10px 0;
}

.responsive {
    width: 100%;
    height: auto;
}
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}
.social-share-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 20px;
}
.social-share-buttons a {
    display: inline-block;
/*    padding: 10px;*/
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
}
.social-share-buttons a:hover {
    border-radius: 15px;
    background-color: #333;
    color: #fff;
    font-size: 12px;
}
.social-share-buttons .btn-facebook { background-color: #3b5998; }
.social-share-buttons .btn-twitter { background-color: #1da1f2; }
.social-share-buttons .btn-linkedin { background-color: #0077b5; }
.social-share-buttons .btn-whatsapp { background-color: #25d366; }

.meta {
    background-color: #eaeaea;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.meta h5 {
    font-weight: 700;
}

.hero-section {
    height: 250px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
    position: relative;
    text-align: center;
}

.title-bar {
    position: relative;
    text-align: center;
}

.comments-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.comment {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.comment:last-child {
    border-bottom: none;
}

.comment p {
    margin: 0;
}

.comment .text-muted {
    font-size: 0.875rem;
}

.comments-list {
    max-height: 300px;
    overflow-y: auto;
}
