/***************************** 0. ROOT *****************************/
#que-es-eletter-root_CONTAINER{
    align-items: center;
    background: #ff674066;
    box-shadow: 0 0 10px 20px #ff674066;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 5rem 0 5rem 0;
    padding: 1rem;
    user-select: none;
    -webkit-user-drag: none;
}

/***************************** 1. ¿QUÉ ES ELETTER? *****************************/

#que-es-eletter-root_pregunta-respuesta_CONTAINER {
    max-width: 90vw;
    width: fit-content;
}

#que-es-eletter-root_pregunta{
    font-size: clamp(1.5rem, 1.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

#que-es-eletter-root_respuesta{
    font-size: clamp(0.9rem, 1vw, 2rem);
    font-weight: 500;
    text-align: justify;
}



/***************************** 1. LECTORES Y ARTISTAS *****************************/


#que-es-eletter-root_para-lectores-y-artistas_CONTAINER {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

/*********************** ARTISTAS ***********************/

.para-lectores-artistas_CONTAINER{
    background: #1B1F23;
    border-radius: 20px;
    box-shadow: 0 0 18px 1px rgb(0, 0, 0, 0.3);
    height: fit-content;
    padding: 1rem 1.5rem 0 1.5rem;
    width: fit-content;
}

/********** titulo ************/

.para-lectores-artistas_titulo {
    align-items: center;
    display: flex;
    gap: 0.5rem;
    font-size: clamp(1.1rem, 1vw, 2rem);
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.para-lectores-artistas_titulo img {
}

/********** items *************/

#para-lectores-artistas_items{
    justify-content: center;
    display: flex;
    margin-left: 0.5rem;
}

.para-lectores-artistas_items_list {
    justify-content: center;
    flex-direction: column;
    list-style: none;
    padding: 0;
}

.para-lectores-artistas_items_list li {
    align-items: flex-start;
    color: #BDBDBD;
    display: flex;
    gap: 7px;
    font-size: clamp(0.9rem, 0.8vw, 1.5rem);
    font-weight: 400;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.para-lectores-artistas_items_list li:last-child {
    margin-bottom: 0.5rem;
}

.para-lectores-artistas_items_list img {
    width: 1.6rem;
}

.para-lectores-artistas_items_list span b {
    font-weight: 600; /* 600 corresponde a SemiBold */
    color: #ff6740;
}

/***************************************************************************/
/******** TABLET or NOTEBOOKS non-FullHD: between 768-1700px width *********/
/***************************************************************************/

@media (min-width: 768px) {
    .para-lectores-artistas_CONTAINER{
        max-width: 40vw;
    }

    #que-es-eletter-root_para-lectores-y-artistas_CONTAINER {
        flex-direction: row;
    }
}

/***************************************************/
/******** DESKTOP: from 1700px *********/
/***************************************************/

@media (min-width: 1700px) {

}