    .blog-details-page img {
        width: 100%;
        border-radius: 12px;
    }
    .blog-details__card {
        background: #fff;
        box-shadow: 0 0 20px rgba(0,0,0,0.06);
        padding: 30px;
        border-radius: 12px;
        margin-bottom: 40px;
    }
    .blog-details__card__meta {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
        font-size: 14px;
        color: #777;
    }
    .blog-details__card__meta li i {
        color: #f39c12;
        margin-right: 6px;
    }
    .comments-one__card {
        display: flex;
        gap: 15px;
        padding: 20px;
        background: #f9f9f9;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    .comments-one__image img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
    }
    .sidebar__posts__item {
        display: flex;
        gap: 12px;
        margin-bottom: 15px;
        align-items: center;
    }
    .sidebar__posts__image img {
        width: 70px;
        height: 70px;
        object-fit: cover;
        border-radius: 8px;
    }
    .sidebar__posts__content {
        flex: 1;
    }
    .sidebar__categories li {
        margin-bottom: 10px;
    }
    .sidebar__categories a {
        display: flex;
        justify-content: space-between;
        padding: 10px 15px;
        background: #f8f8f8;
        border-radius: 8px;
        color: #333;
        transition: all 0.3s;
    }
    .sidebar__categories a:hover {
        background: #f39c12;
        color: #fff;
    }
    .blog-details__form input, .blog-details__form textarea {
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 12px 15px;
        width: 100%;
        margin-bottom: 15px;
        resize: none;
    }
    .blog-details__form button {
        background: #f39c12;
        border: none;
        color: #fff;
        padding: 10px 25px;
        border-radius: 8px;
        font-weight: bold;
        transition: background 0.3s ease;
    }
    .blog-details__form button:hover {
        background: #d68910;
    }
    @media (max-width: 768px) {
        .col-lg-8, .col-lg-4 {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }