/* === Tarjeta FAQ === */
.ask-card {
    margin-bottom: 1.2rem;
}

.ask-content {
    background: #ffffff;                       /* fondo blanco */
    border: 2px solid #84cac8;                /* borde cian */
    border-radius: 12px;
    padding: 18px 22px;
    color: #000000;                            /* texto negro */
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: box-shadow .2s ease;
}

.ask-content:hover {
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* === Header (pregunta) === */
.ask-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.ask-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #000000;                            /* texto negro */
}

/* Iconos */
.ask-icons {
    font-size: 1.2rem;
    color: #000000;
}

.icon-close {
    display: none;
}

/* Cuando está abierto */
.ask-card.is-open .icon-open {
    display: none;
}

.ask-card.is-open .icon-close {
    display: inline-block;
}

/* === Contenido (respuesta) === */
.ask-answer {
    display: none;
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #000000;
}

/* === Enlaces dentro de la respuesta === */
.ask-answer a {
    color: #8c4799 !important;                 /* morado institucional */
    font-weight: 600;
    text-decoration: underline;
}

.ask-answer a:hover {
    color: #702e80 !important;                 /* hover más oscuro */
}

