.comments-show-all {
    margin: 2rem auto 0;
    display: flex;                /* 👈 clave */
    align-items: center;
    justify-content: center;

    padding: 0.9em 1.8em;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;

    color: #ffffff;
    background-color: #9ED92D;
    border: none;
    border-radius: 999px;

    box-shadow: 0 6px 14px rgba(158, 217, 45, 0.35);
    transition: all 0.2s ease;

    width: fit-content;           /* 👈 evita ocupar todo */
}

/* hover */
.comments-show-all:hover {
    background-color: #8bcf1f;
    box-shadow: 0 8px 18px rgba(158, 217, 45, 0.45);
    transform: translateY(-1px);
}

/* active */
.comments-show-all:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(158, 217, 45, 0.35);
}

/* focus accesible */
.comments-show-all:focus-visible {
    outline: 3px solid rgba(158, 217, 45, 0.45);
    outline-offset: 3px;
}


/* ===============================
   MODAL BASE
   =============================== */

.comments-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

.comments-modal.is-open {
    display: block;
}

.comments-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* ===============================
   CONTENEDOR PRINCIPAL (NO SCROLL)
   =============================== */

.comments-modal__content {
    position: relative;
    background: #fff;
    width: 95%;
    max-width: 1100px;
    height: 90vh;
    margin: 5vh auto;
    border-radius: 8px;

    display: flex;
    flex-direction: column;   /* layout en filas */
}

/* ===============================
   HEADER FIJO (ESPACIO RESERVADO)
   =============================== */

.comments-modal__header {
    flex: 0 0 auto;           /* NO se encoge */
    height: 64px;             /* altura fija */
    padding: 0 1.5rem;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 2;
}

.comments-modal__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

/* botón cerrar */
.comments-modal__close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}

.comment-reply-link {
    color:#9ed92d!important;
}

/* ===============================
   CUERPO SCROLLEABLE
   =============================== */

.comments-modal__body {
    flex: 1 1 auto;           /* ocupa el resto */
    overflow-y: auto;         /* ÚNICO scroll */
    padding: 1.5rem;
}

/* ===============================
   RESET MÁRGENES WORDPRESS
   =============================== */

.comments-modal__body ol.commentlist {
    margin: 0;
    padding: 0;
}

.comments-modal__body li.comment {
    margin-left: 0;
    padding-left: 0;
}

.comments-modal__body .children {
    margin-left: 20px;        /* indentación controlada */
}

/* ===============================
   MÓVIL = FULLSCREEN REAL
   =============================== */

@media (max-width: 768px) {
    .comments-modal__content {
        width: 100%;
        height: 100vh;
        margin: 0;
        border-radius: 0;
    }

    .comments-modal__header {
        height: 56px;
        padding: 0 1rem;
    }

    .comments-modal__title {
        font-size: 16px;
    }
}
