/* Estilos para el carrusel de anuncios */
.ad-carousel-wrapper {
    width: 90%;
    margin-top: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
    height: 100px; /* Altura fija para PC */
}

.ad-carousel {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.ad-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.ad-img {
    width: 100%;
    height: 100%; /* La imagen se estira para llenar la altura fija */
    display: block;
    object-fit: cover;
    filter: brightness(0.7);
}

/* Media query para móviles */
@media (max-width: 768px) {
    .ad-carousel-wrapper {
        height: 100px; /* Altura de 100px para móviles */
    }
}

/* Estilos para la superposición del texto */
.ad-overlay {
    position: absolute;
    bottom: 5px;
    left: 10px;
    right: 10px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ad-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ad-artist {
    font-size: 0.9rem;
    font-weight: normal;
    margin-top: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Estilos para los indicadores del carrusel */
.carousel-indicators {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 20;
}

.carousel-indicators button {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-indicators button.active {
    background-color: white;
}