.box-banner-notas {
    padding: 10px 0;
    position: relative; /* ancla el contexto para .owl-nav */
    border-top: 3px solid #9EC32C;
    border-bottom: 3px solid #9EC32C;
}

#notas-wrap.owl-carousel {
    position: relative !important;
}



#notas-wrap h3,
#notas-wrap .banner-nota-item {
    unicode-bidi: plaintext;
}

.box-banner-notas .owl-item {
    padding: 0 5px;
}

.banner-nota-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.banner-nota-item:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.banner-nota-item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.banner-nota-item h3 {
    padding: 0 10px;
    line-height: 1.3;
      text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.9em;
}

#notas-wrap .owl-nav {
    position: absolute;
    top: 40%;
    left: 10%;
    width: 80%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

@media (min-width: 768px) and (max-width: 991px) {
    #notas-wrap .owl-nav {
        left: 20%;
        width: 60%;
    }
}

/* Desktop / lg y superior, ya se ve bien pero por si acaso */
@media (min-width: 992px) {
    #notas-wrap .owl-nav {
        left: 8%;
        width: 84%;
    }
}

#notas-wrap .owl-nav button {
    pointer-events: auto; /* pero los botones sí son clicables */
    width: 40px;
    height: 40px;
}

#notas-wrap .owl-nav .owl-prev {
    margin-left: -15px;
}

#notas-wrap .owl-nav .owl-next {
    margin-right: -15px;
}

#notas-wrap .owl-nav button span {
    font-size: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background: #ECECEC;
    color: #666666;
    font-weight: bold;
    border: 2px solid #ECECEC;
    box-shadow: 0px 0px 2px 2px #fff;
}