/* Bandhu – Amenities widget */

.bppm-amenities__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat( 2, 1fr );
    column-gap: 32px;
    row-gap: 18px;
}

.bppm-amenity {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.4;
}

.bppm-amenity__icon {
    color: #9e2a2b;
    flex-shrink: 0;
    font-weight: 600;
}

/* Botón "Ver todas las comodidades" */
.bppm-amenities__btn {
    all: unset;
    cursor: pointer;
    display: inline-block;
    margin-top: 28px;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.15s ease;
}

/* Anular el fondo/sombra que el tema aplica a button:hover/focus.
   En hover SOLO cambia el color del texto. */
.bppm-amenities__btn:hover,
.bppm-amenities__btn:focus,
.bppm-amenities__btn:active {
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

.bppm-amenities__btn:hover {
    color: #9e2a2b; /* default; editable desde Elementor */
}

/* ── Popup: lista completa ─────────────────────────────────── */
.bppm-canvas__panel--amenities {
    max-width: 720px;
    height: auto;
    max-height: 85dvh;
    margin-top: 5vh;
    border-radius: 16px;
}

.bppm-amenities__pop-list {
    list-style: none;
    margin: 0;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat( 2, 1fr );
    column-gap: 32px;
    row-gap: 4px;
    overflow-y: auto;
}

.bppm-amenities__pop-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #efefef;
}

@media ( max-width: 600px ) {
    .bppm-amenities__list,
    .bppm-amenities__pop-list {
        grid-template-columns: 1fr;
    }
    .bppm-canvas__panel--amenities {
        margin-top: 0;
        max-height: 100dvh;
        height: 100dvh;
        border-radius: 0;
    }
}
