.blog_details__content h3 {
    font-size: 38px;
    font-weight: 500;
    color: var(--black-color);
}

.blog_details__content span {
    color: #434343;
    display: block;
    margin: 10px 0;
}

.details_img img {
    width: 100%;
    height: 504px;
    object-fit: cover;
    border-radius: 20px;
}

.myBlog {
    padding-bottom: 80px;
}

.details_info__img img {
    width: 100%;
}

.details_parra p {
    margin-top: 1rem;
}

.blog_details {
    padding: 40px 0 20px 0;
}

.details_info h3 {
    margin: 1rem 0 !important;
    font-size: 27px;
    color: var(--black-color);
}

.share {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.share label {
    text-transform: capitalize;
    font-size: 18px;
    color: var(--black-color);
    font-weight: 600;
}

.share_link {
    display: flex;
    gap: 10px;
    align-items: center;
}

.share_link a {
    height: 34px;
    width: 34px;
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black-color);
    font-size: 20px;
    border-radius: 100%;
}

.reply_box {
    margin-top: 4rem;
}

.reply_box__form {
    margin-top: 2rem;
}

.reply_input label {
    display: block;
    margin-bottom: 4px;
}

.reply_input {
    margin-bottom: 1rem;
}

.reply_input input,
.reply_input textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 8px;
    width: 100%;
}

@media(max-width:992px) {
    .blog_details {
        margin-top: 6rem;
    }

    .blog_details__content h3 {
        font-size: 26px;
        font-weight: 600;
        letter-spacing: 1px;
        line-height: 1.4;
    }

    .details_parra p {
        font-size: 15px;
    }
}

@media(max-width:768px) {
    .blog_details {
        margin-top: 4rem;
    }
    .details_img img{
        height: auto;
    }
    .reply_box{
        margin-top: 2rem;
    }
    .details_parra p{
        margin-top: 10px;
    }
    .reply_box__form{
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .reply_input{
        margin-bottom: 10px;
    }
    .blog_details__content h3{
        font-size: 22px;
    }
}