/* 代理帶睇樓列表：對齊參考站 #fp 三欄 16:9 embed 網格 */

.pyoutube-list-section {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
}

.pyoutube-list {
    width: 100%;
}

.pyoutube-list__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.625rem;
    width: 100%;
}

.pyoutube-list__item {
    width: 100%;
    min-width: 0;
}

.pyoutube-list__frame-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--color-bg-soft);
    overflow: hidden;
}

.pyoutube-list__frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.pyoutube-list__empty {
    margin: 0;
    padding: var(--space-xl) 0;
    text-align: center;
    color: var(--color-text-soft);
    font-size: var(--fs-md);
}

.pyoutube-list__pagination {
    margin-top: var(--space-lg);
}

@media (max-width: 1024px) {
    .pyoutube-list__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .pyoutube-list__grid {
        grid-template-columns: 1fr;
    }
}
