/* Vídeos do anúncio — chips YouTube sob a galeria */
main.page-anuncio .anuncio-video-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0.75rem 0 0;
}

main.page-anuncio .anuncio-video-chip {
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    color: #0f172a;
    display: flex;
    gap: 0.7rem;
    min-width: 210px;
    overflow: hidden;
    padding: 0.35rem 0.75rem 0.35rem 0.35rem;
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

main.page-anuncio .anuncio-video-chip:hover {
    border-color: #0050e9;
    box-shadow: 0 8px 20px rgba(0, 80, 233, 0.12);
    color: #0050e9;
    text-decoration: none;
}

main.page-anuncio .anuncio-video-chip__media {
    background: #0f172a;
    border-radius: 8px;
    flex: 0 0 72px;
    height: 48px;
    overflow: hidden;
    position: relative;
    width: 72px;
}

main.page-anuncio .anuncio-video-chip__media img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

main.page-anuncio .anuncio-video-chip__play {
    align-items: center;
    background: rgba(15, 23, 42, 0.45);
    color: #fff;
    display: flex;
    font-size: 0.7rem;
    inset: 0;
    justify-content: center;
    position: absolute;
}

main.page-anuncio .anuncio-video-chip__label {
    font-size: 0.88rem;
    font-weight: 600;
}

main.page-anuncio .anuncio-video-chip__label .fa-youtube {
    color: #ff0000;
    margin-right: 0.2rem;
}

@media (max-width: 575.98px) {
    main.page-anuncio .anuncio-video-chip {
        min-width: 0;
        width: 100%;
    }
}
