.vp-results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}

.vp-results-empty,
.vp-results-error {
    border: 1px solid rgba(250, 227, 217, .13);
    border-radius: .8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, .035);
}

.vp-results-empty {
    display: grid;
    gap: .25rem;
    color: rgba(232, 238, 239, .66);
    text-align: center;
}

.vp-results-empty strong {
    color: #f7f8f8;
}

.vp-results-error {
    margin-bottom: .75rem;
    border-color: rgba(243, 143, 145, .35);
    color: #ffd7d8;
}

.vp-result-card,
.vp-video-card {
    border: 1px solid rgba(250, 227, 217, .13);
    border-radius: .85rem;
    background: rgba(255, 255, 255, .03);
    color: #f7f8f8;
}

.vp-result-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: .75rem;
    width: 100%;
    min-height: 5rem;
    padding: .85rem;
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.vp-result-card:hover {
    border-color: rgba(97, 192, 191, .48);
    background: rgba(97, 192, 191, .08);
    transform: translateY(-1px);
}

.vp-result-card--social {
    border-color: rgba(97, 192, 191, .3);
    background: rgba(97, 192, 191, .08);
}

.vp-result-icon {
    display: grid;
    width: 2.6rem;
    height: 2.6rem;
    place-items: center;
    border-radius: .65rem;
    background: rgba(97, 192, 191, .13);
    color: #8be0de;
    font-size: .72rem;
    font-weight: 800;
}

.vp-result-copy {
    display: grid;
    min-width: 0;
    gap: .18rem;
}

.vp-result-copy strong,
.vp-result-copy small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vp-result-copy strong {
    color: #f7f8f8;
    font-size: .84rem;
}

.vp-result-copy small {
    color: rgba(232, 238, 239, .66);
    font-size: .72rem;
}

.vp-result-action {
    color: #8be0de;
    font-size: .72rem;
    font-weight: 750;
}

.vp-video-card {
    overflow: hidden;
}

.vp-video-preview,
.vp-video-placeholder {
    aspect-ratio: 16 / 9;
    width: 100%;
    background: #080e15;
}

.vp-video-preview video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #050a0f;
}

.vp-video-placeholder {
    display: grid;
    place-content: center;
    justify-items: center;
    gap: .45rem;
    color: rgba(232, 238, 239, .62);
}

.vp-video-placeholder > span {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border-radius: 50%;
    background: rgba(97, 192, 191, .13);
    color: #8be0de;
}

.vp-video-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .8rem;
}

.vp-download-button {
    min-height: 2.2rem;
    border: 1px solid rgba(97, 192, 191, .35);
    border-radius: .6rem;
    padding: .45rem .7rem;
    background: rgba(97, 192, 191, .08);
    color: #a9efeb;
    font: inherit;
    font-size: .75rem;
    font-weight: 750;
    cursor: pointer;
}

@media (max-width: 760px) {
    .vp-results-grid {
        grid-template-columns: 1fr;
    }

    .vp-video-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .vp-download-button {
        width: 100%;
    }
}
