.blogDetailCard{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 4px 14px rgba(0,0,0,0.04);
    margin-bottom:25px;
}

.blog-imgC {
    width: 100%;
    background: #f8f9fa;
    padding: 20px;
}

/*.blog-imgC img{
    width:100%;
    max-height:460px;
    object-fit:cover;
    display:block;
}*/

.blogDescription{
    padding:24px;
    font-size:18px;
    line-height:1.9;
    color:#2d2d2d;
    word-break:break-word;
}

.blogDescription p{
    margin-bottom:18px;
}

.blogDescription a{
    color:#0d6efd;
    text-decoration:underline;
}

.publishInfo{
    padding:16px 24px;
    border-top:1px solid #ececec;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
    background:#fcfcfc;
}

.metaLeft,
.metaRight{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.publishDate,
.blogAuthor,
.bloglikeCount{
    font-size:14px;
    color:#6c757d;
}

.publishDate i,
.blogAuthor i{
    margin-right:6px;
}

.dot{
    color:#adb5bd;
}

.likeThis{
    cursor:pointer;
    font-size:18px;
    margin-right:6px;
    transition:0.2s ease;
}

.likeThis:hover{
    transform:scale(1.08);
}

.likeCount{
    font-weight:600;
    color:#212529;
}

@media(max-width:768px){

    .blogDescription{
        padding:18px;
        font-size:16px;
        line-height:1.8;
    }

    .publishInfo{
        padding:14px 18px;
        flex-direction:column;
        align-items:flex-start;
    }
}

   /* Container */
.comment-box {
    max-width: 100%;
    margin: 20px 0;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', sans-serif;
}

/* Header */
.comment-header label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Textarea */
.comment-body textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    resize: vertical;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Focus effect */
.comment-body textarea:focus {
    border-color: #4f46e5;
    outline: none;
    box-shadow: 0 0 0 2px rgba(79,70,229,0.15);
}

/* Footer */
.comment-footer {
    margin-top: 12px;
    text-align: right;
}

/* Button */
.submit-btn {
    background: var(--themeOneBg);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover */
.submit-btn:hover {
    background: var(--themeTwoBg);
}

/* Active */
.submit-btn:active {
    transform: scale(0.98);
}

/* Disabled */
.submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}
.loadmoreBtn{
    width: 100%;
    margin-top: 20px;
}
/* Comment container */
.comment {
    padding: 14px 16px;
    margin-bottom: 12px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    transition: all 0.2s ease;
}

/* Hover effect */
.comment:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

/* Header (name + date) */
.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

/* Username */
.comment-user {
    font-weight: 600;
    color: #111827;
    font-size: 14px;
}

/* Date */
.comment-date {
    font-size: 12px;
    color: #6b7280;
}

/* Comment text */
.comment-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
    word-wrap: break-word;
}
.replies {
    margin-left: 40px;
    margin-top: 10px;
}

.reply-item {
    background: #f9f9f9;
    padding: 8px;
    border-radius: 6px;
    margin-top: 5px;
}
.reply-box {
    margin-top: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.reply-box textarea.reply-text {
    width: 100%;
    min-height: 70px;
    resize: vertical;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus effect */
.reply-box textarea.reply-text:focus {
    border-color: #007bff;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.3);
}

/* Submit button */
.reply-box .submit-reply {
    margin-top: 8px;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 20px;
    border: none;
    background: #007bff;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Hover effect */
.reply-box .submit-reply:hover {
    background: #0056b3;
}

/* Optional: Cancel button (if you add later) */
.reply-box .cancel-reply {
    margin-left: 8px;
    background: #ddd;
    color: #333;
}

.reply-box .cancel-reply:hover {
    background: #bbb;
}