.youtube-embed {
    width: 100%;
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
        background-color: #333;
        border-radius: 10px;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.youtube-embed iframe {
    width: 700px;
        height: 400px;
    border: 0;
}

/* Busca de produtos embutida em posts: <!-- [produtos:busca: termo] --> */
.post-product-search-embed {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.post-product-search-embed-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.post-product-search-embed-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--bs-secondary-color);
}

.post-product-search-embed-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.85rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.35rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.post-product-search-embed-card {
    flex: 0 0 calc((100% - (0.85rem * 5)) / 6);
    min-width: 148px;
    max-width: 220px;
    scroll-snap-align: start;
}

.post-product-search-embed-card .product-search-card-media {
    height: 160px;
}

.post-product-search-embed-card .product-search-card-img {
    max-height: calc(160px - 2rem);
}

.post-product-search-embed-card .product-search-card-title {
    font-size: 0.75rem;
    min-height: 2em;
    line-height: 1.3;
}

.post-product-search-embed-empty {
    padding: 1.25rem 1rem;
    text-align: center;
    color: var(--bs-secondary-color);
    background: rgba(248, 250, 252, 0.9);
    border: 1px dashed var(--bs-border-color);
    border-radius: 0.75rem;
}

@media screen and (max-width: 768px) {
    .post-product-search-embed-card {
        flex: 0 0 42vw;
        min-width: 132px;
    }
}

/* Media query para telas menores que 768px */
@media screen and (max-width: 768px) {
    .youtube-embed {
        width: 100%;
        height: auto;
    }

    .youtube-embed iframe {
        width: 100%;
            height: calc(calc(100vw * 0.5625) - 2rem);
    }
}
