.tbpma-media-section {
    margin: 16px 0 26px;
}
.tbpma-gallery {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px;
    background: #fff;
}
.tbpma-gallery-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}
.tbpma-gallery-title {
    margin: 0;
    font-size: 1.25rem;
}
.tbpma-gallery-controls {
    display: flex;
    gap: 8px;
}
.tbpma-control {
    width: 36px;
    height: 36px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}
.tbpma-thumb-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scroll-snap-type: x proximity;
}
.tbpma-thumb {
    flex: 0 0 145px;
    height: 96px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f4f6;
    cursor: pointer;
    scroll-snap-align: start;
}
.tbpma-thumb.is-active {
    border-color: #111827;
}
.tbpma-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.tbpma-video-section {
    margin-top: 22px;
}
.tbpma-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 12px;
}
.tbpma-video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: #111827;
}
.tbpma-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
@media (max-width: 640px) {
    .tbpma-gallery-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }
    .tbpma-thumb {
        flex-basis: 120px;
        height: 82px;
    }
}
