.gec-video-placeholder {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gec-video-placeholder__box {
    position: relative;
    width: 100%;
    /* aspect-ratio set via inline style (dynamic value from Elementor control) */
}

.gec-video-placeholder__inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
}

.gec-video-placeholder__thumbnail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gec-video-placeholder__play {
    position: absolute;
    border: 0;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 1;
}

.gec-video-placeholder__play:hover {
    transform: scale(1.1);
    background: #fff;
}

.gec-video-placeholder__play svg,
.gec-video-placeholder__icon {
    width: 36px;
    height: 36px;
    color: #e12b2b;
}

.gec-video-placeholder__tag {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
