.post-title-container{
    position:absolute; 
    margin: auto; 
    top: 50%; 
    left: 45%; 
    right: 0;
    transform: translateY(-50%);
}

.comment-form p{
    display: flex;
    flex-direction: column;
}

.comment-form p.logged-in-as, 
.comment-form p.comment-notes,
.comment-form p.comment-form-cookies-consent{
    display: block;
}

.comment-form input, 
.comment-form textarea{
    border: 1px solid var(--sp-hexa-gris-claro);
    border-radius: 5px;
}

.comment-form .submit {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.comment-form .submit{
    color: #fff;
    background-color: var(--bs-danger);
    border-color: var(--bs-danger);
}

.comment-form .submit:hover,
.comment-form .submit:focus,
.comment-form .submit:active {
    color: #fff;
    background-color: var(--bs-bg-danger-hover);
    border-color: var(--bs-border-danger-hover);
}

.comment-form .submit:active:focus {
    box-shadow: 0 0 0 0.25rem rgb(225 83 97 / 50%);
}

.comments-area h2,
.comments-area h3{
    font-family: var(--sp-font-family-secondary)!important;
}
.comments-area h2{
    font-size: 1.5rem;
}
.comments-area h3{
    font-size: 1.2rem;
}


@media screen and (max-width:992px) {
    .post-title-container{
        position: inherit;
        left: 0;
        transform: translateY(-30%);
    }
    .post-img-destacada{
        max-width: 100%;
        height: auto;
    }
}
