.tmz-shorts-feed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.tmz-short-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.tmz-short-item img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 8px;
}

.tmz-short-title {
    display: block;
    margin-top: 6px;
    font-size: 0.875rem;
    line-height: 1.3;
    font-weight: bold;
}

.tmz-short-item iframe {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 8px;
}

@media ( max-width: 768px ) {
    .tmz-shorts-feed {
        grid-template-columns: repeat(2, 1fr);
    }
}