/* =========================================
EMPRESARIALHOST COMMENTS - DARK MODE
========================================= */


/* =========================================
CONTENEDOR PRINCIPAL
========================================= */

.eh-comments {
    width: 100%;
    box-sizing: border-box;
    background: #050505;
    color: #ffffff;
    padding: 25px;
    border-radius: 0;
}


/* =========================================
LISTA DE COMENTARIOS
========================================= */

.eh-comments-list {
    width: 100%;
    margin-bottom: 35px;
}


/* =========================================
OCULTAR TÍTULO INTERNO "COMENTARIOS"
========================================= */

.eh-comments-title {
    display: none;
}


/* =========================================
TARJETA INDIVIDUAL
========================================= */

.eh-comment {
    background: #161616;
    border: 1px solid #383838;
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 10px;
    box-sizing: border-box;
    color: #ffffff;
    transition: 0.2s ease;
}


/* Hover */

.eh-comment:hover {
    border-color: #ffb800;
    transform: translateY(-2px);
}


/* =========================================
CABECERA DEL COMENTARIO
========================================= */

.eh-comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 8px;
}


/* =========================================
NOMBRE
========================================= */

.eh-comment-header strong {
    color: #ffb800;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================
CIUDAD
========================================= */

.eh-comment-city {
    color: #b5b5b5;
    font-size: 13px;
    white-space: nowrap;
}


/* =========================================
TEXTO DEL COMENTARIO
========================================= */

.eh-comment-text {
    color: #f1f1f1;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}


/* =========================================
SIN COMENTARIOS
========================================= */

.eh-no-comments {
    padding: 18px;
    background: #161616;
    border: 1px solid #383838;
    border-radius: 15px;
    color: #aaaaaa;
    font-size: 15px;
}


/* =========================================
FORMULARIO
========================================= */

.eh-comment-form {
    margin-top: 25px;
}


/* =========================================
TÍTULO DEJA TU MENSAJE
========================================= */

.eh-comment-form h3 {
    color: #ffffff;
    font-size: 23px;
    margin-bottom: 20px;
}


/* =========================================
CAMPOS
========================================= */

.eh-comment-form input,
.eh-comment-form textarea {
    width: 100%;
    box-sizing: border-box;

    padding: 14px 18px;
    margin-bottom: 10px;

    background: #0b0b0b;
    color: #ffffff;

    border: 1px solid #383838;
    border-radius: 10px;

    font-size: 15px;

    outline: none;
    transition: 0.2s ease;
}


/* =========================================
PLACEHOLDER
========================================= */

.eh-comment-form input::placeholder,
.eh-comment-form textarea::placeholder {
    color: #a0a0a0;
    opacity: 1;
}


/* =========================================
CAMPOS AL SELECCIONAR
========================================= */

.eh-comment-form input:focus,
.eh-comment-form textarea:focus {
    border-color: #ffb800;
    box-shadow: 0 0 0 2px rgba(255, 184, 0, 0.12);
}


/* =========================================
ÁREA DEL COMENTARIO
========================================= */

.eh-comment-form textarea {
    min-height: 130px;
    resize: vertical;
}


/* =========================================
BOTÓN ENVIAR
ANCHO COMPLETO + MENOR ALTURA
========================================= */

#ehc-submit {
    display: block;
    width: 100%;
    box-sizing: border-box;

    padding: 11px 20px;

    margin: 0;

    background: #ffb800;
    color: #111111;

    border: none;
    border-radius: 10px;

    font-size: 15px;
    font-weight: 800;
    text-align: center;

    cursor: pointer;
    transition: 0.2s ease;
}


/* =========================================
HOVER DEL BOTÓN
========================================= */

#ehc-submit:hover {
    background: #ffc933;
    transform: translateY(-2px);
}


/* =========================================
BOTÓN VER MÁS MENSAJES
========================================= */

.ehc-load-more {
    display: block;
    width: 100%;
    box-sizing: border-box;

    padding: 11px 20px;
    margin: 18px 0 0;

    background: #222222;
    color: #ffffff;

    border: 1px solid #383838;
    border-radius: 10px;

    font-size: 15px;
    font-weight: 800;
    text-align: center;

    cursor: pointer;
    transition: 0.2s ease;
}

.ehc-load-more:hover {
    background: #ffb800;
    color: #111111;
    border-color: #ffb800;
    transform: translateY(-1px);
}

.ehc-load-more:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}


/* =========================================
MENSAJE DE CONFIRMACIÓN
========================================= */

#ehc-message {
    margin-top: 15px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}


/* =========================================
RESPONSIVE - CELULAR
========================================= */

@media (max-width: 600px) {

    .eh-comments {
        width: 100%;
        padding: 16px;
    }


    .eh-comments-title {
        display: none;
    }


    .eh-comment {
        padding: 15px;
        margin-bottom: 10px;
    }


    .eh-comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 8px;
    }


    .eh-comment-header strong {
        font-size: 14px;
    }


    .eh-comment-city {
        font-size: 12px;
    }


    .eh-comment-text {
        font-size: 14px;
    }


    .eh-comment-form h3 {
        font-size: 21px;
    }


    .eh-comment-form input,
    .eh-comment-form textarea {
        font-size: 14px;
        padding: 13px 15px;
    }


    /* Botón Ver más */

    .ehc-load-more {
        padding: 11px 15px;
        font-size: 14px;
    }


    /* Botón también más bajito en celular */

    #ehc-submit {
        width: 100%;
        padding: 11px 15px;
        font-size: 15px;
    }

}