#bclearn-buscador {
    position: relative;
    max-width: 400px;
    margin: 0px auto;
    display: flex;
}

.bclearn-lupa {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bclearn-input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 0px;
    border-top: 3px solid #4572b8;
    font-size: 14px;
    font-weight: 400;
    width: 231px;
}

#bclearn-resultados {
    list-style: none;
    margin: 0px 0 0;
    padding: 0;
    border: 0px solid #eee;
    background: #c6d8f1;
    border-radius: 0px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

#bclearn-resultados li {
    padding: 10px;
    border-bottom: 1px solid #4572b8;
}

#bclearn-resultados li:last-child {
    border-bottom: none;
}

#bclearn-resultados a {
    text-decoration: none;
    color: #333;
    line-height: 1.3;
    display: inline-block;
    width: 100%;
    font-size: 14px;
}
.bclearn-resultado-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    margin-top: 20px;
}

.bclearn-card {
    width: 32%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    margin-bottom: 18px;
}

.bclearn-card:hover {
    transform: translateY(-4px);
}

.bclearn-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.img_resultados_busqueda h2 {
    color: #fff;
}
.bclearn-card img {
    width: 100%;
}
.bclearn-card a {
    display: flex;
    justify-content: center;
}

.bclearn-card h3 {
    font-size: 18px;
    margin: 10px;
    color: #333;
}
button.bclearn-lupa img {
    width: 42px;
    height: auto;
}
.bclearn-resultados-buttom {
    position: absolute;
    top: 100%;
    right: 0px;
}
/* Scrollbar para navegadores WebKit (Chrome, Safari, Edge Chromium) */
#bclearn-resultados::-webkit-scrollbar {
    width: 8px;
}

#bclearn-resultados::-webkit-scrollbar-track {
    background: #e1e1e1;
    border-radius: 4px;
}

#bclearn-resultados::-webkit-scrollbar-thumb {
    background-color: #4572b8;
    border-radius: 4px;
    border: 2px solid #e1e1e1;
}

/* Scrollbar para Firefox */
#bclearn-resultados {
    scrollbar-width: thin;
    scrollbar-color: #4572b8 #e1e1e1;
}
#bclearn-resultados li.resultados_boton_icon {
    padding: 0px;
}

#bclearn-resultados li.resultados_boton_icon a {
    background: #4572b8;
    padding: 10px;
    color: #fff;
}

#bclearn-resultados li.resultados_boton_icon a:hover {
    background: #245299;
}
@media (max-width: 767px) {
    .bclearn-card {
        width: 49%;
    }
}