.cms-public-element--video {
    display: grid;
    gap: 18px;
}

.cms-public-video {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #111827;
    aspect-ratio: 16 / 9;
}

.cms-public-video__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.cms-public-video__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #111827;
}

.cms-public-video:not(.cms-public-external-media--loaded) .cms-public-video__iframe {
    display: none;
}

.cms-public-video.cms-public-external-media--loaded .cms-public-video__placeholder {
    display: none;
}

.cms-public-video__placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 10px;
    padding: 24px;
    color: #ffffff;
    text-align: center;
}

.cms-public-video__placeholder-title,
.cms-public-video__placeholder-text {
    margin: 0;
}

.cms-public-video__placeholder-title {
    font-size: 20px;
    font-weight: 800;
}

.cms-public-video__placeholder-text {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.5;
}

.cms-public-video__placeholder-button {
    justify-self: center;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: #111827;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.cms-public-video__caption {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.6;
}
