.ccq-boletines-slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.glide__slide {
    position: relative;
}

.glide__slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.banner-text {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.5);
    color: black;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.2rem;
    max-width: 350px;
    width: fit-content;
    text-align: center;
    pointer-events: none;
    line-height: 1.4;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}
.banner-title {
    position: absolute;
    bottom: 70%;
    left: 40%;
    transform: translateX(-50%);
    /*background: rgba(255,255,255,0.5);*/
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.2rem;
    max-width: 550px;
    width: fit-content;
    text-align: center;
    pointer-events: none;
    line-height: 1.4;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.glide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9); /* Fondo blanco semitransparente */
    color: #2c3e50; /* Color oscuro para el ícono */
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    border: 2px solid #dfe6e9; /* Borde sutil */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Sombra suave */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glide__arrow--left {
    left: 15px;
}

.glide__arrow--right {
    right: 15px;
}

.glide__arrow:hover {
    background: #000fa0; /* Color azul oscuro al hover, acorde con los bullets */
    color: #ffffff; /* Ícono blanco al hover */
    transform: translateY(-50%) scale(1.1); /* Efecto de agrandamiento */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25); /* Sombra más intensa */
}

.glide__bullets {
    text-align: center;
    margin-top: 15px;
}

.glide__bullet {
    background: #ccc;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.glide__bullet:hover,
.glide__bullet--active {
    background: #000fa0;
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
    .glide__arrow {
        width: 40px;
        height: 40px;
    }
    .glide__arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .glide__arrow {
        width: 32px;
        height: 32px;
    }
    .glide__arrow svg {
        width: 16px;
        height: 16px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .banner-text {
        font-size: 0.6rem;
        padding: 6px 16px;
        max-width: 90%;
        bottom: 15%;
    }
    .banner-title {
        font-size: 0.6rem;
        padding: 6px 16px;
        max-width: 90%;
        bottom: 70%;
    }
}

/* Móvil */
@media (max-width: 480px) {
    .banner-text {
        font-size: 0.4rem;
        padding: 4px 12px;
        max-width: 95%;
        bottom: 10%;
    }
    .banner-title {
        font-size: 0.4rem;
        padding: 4px 12px;
        max-width: 95%;
        bottom: 65%;
    }
}