.onz-web-shot {
    position: relative;
    isolation: isolate;
    width: 100%;
}

.onz-web-shot::before {
    position: absolute;
    z-index: -1;
    top: 14px;
    right: -14px;
    bottom: -14px;
    left: 14px;
    border: 1px solid rgba(168, 95, 0, .2);
    content: "";
    background: rgba(255, 255, 255, .3);
}

.onz-web-shot__frame {
    overflow: hidden;
    border: 1px solid rgba(23, 45, 60, .13);
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 30px 70px rgba(10, 32, 45, .17);
    transition: box-shadow 300ms ease, transform 300ms cubic-bezier(.2, .7, .2, 1);
}

.onz-web-shot:hover .onz-web-shot__frame {
    box-shadow: 0 37px 82px rgba(10, 32, 45, .21);
    transform: translateY(-3px);
}

.onz-web-shot__bar {
    height: 38px;
    padding: 0 13px;
    display: flex;
    gap: 12px;
    align-items: center;
    color: rgba(255, 255, 255, .58);
    background: #172d3c;
}

.onz-web-shot__controls {
    display: flex;
    flex: 0 0 auto;
    gap: 6px;
}

.onz-web-shot__controls i {
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
    background: rgba(255, 255, 255, .27);
}

.onz-web-shot__controls i:first-child {
    background: #f7a217;
}

.onz-web-shot__address {
    min-width: 140px;
    padding: 5px 11px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 999px;
    color: rgba(255, 255, 255, .64);
    background: rgba(255, 255, 255, .055);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.onz-web-shot .onz-web-shot__image {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1604 / 920;
    border: 0;
    border-radius: 0;
    object-fit: cover;
    object-position: top left;
    background: #fff;
    box-shadow: none;
}

.onz-web-shot--compact::before {
    top: 9px;
    right: -9px;
    bottom: -9px;
    left: 9px;
}

.onz-web-shot--compact .onz-web-shot__frame {
    border-radius: 8px;
    box-shadow: 0 22px 48px rgba(10, 32, 45, .15);
}

.onz-web-shot--compact .onz-web-shot__bar {
    height: 28px;
    padding-inline: 10px;
    gap: 9px;
}

.onz-web-shot--compact .onz-web-shot__controls {
    gap: 4px;
}

.onz-web-shot--compact .onz-web-shot__controls i {
    width: 5px;
    height: 5px;
}

.onz-web-shot--compact .onz-web-shot__address {
    min-width: 106px;
    padding: 4px 8px;
    font-size: 8px;
}

@media (max-width: 640px) {
    .onz-web-shot::before { display: none; }
    .onz-web-shot__frame { border-radius: 8px; }
    .onz-web-shot__bar { height: 30px; padding-inline: 10px; }
    .onz-web-shot__address { min-width: 116px; font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
    .onz-web-shot__frame { transition: none; }
    .onz-web-shot:hover .onz-web-shot__frame { transform: none; }
}
