.dashboard-hero-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 181, 205, 0.25);
    border-radius: 18px;
    background: #061422;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.5);
    transform: rotateY(-3deg) rotateX(1deg);
}

.dashboard-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 34px;
    padding: 0 13px;
    border-bottom: 1px solid rgba(148, 181, 205, 0.14);
    background: #0b1d2c;
}

.dashboard-browser-bar i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #405564;
}

.dashboard-browser-bar i:first-child { background: #ff8467; }
.dashboard-browser-bar span {
    margin-left: auto;
    margin-right: auto;
    color: #708697;
    font-size: 9px;
    letter-spacing: 0.2px;
}

.dashboard-hero-frame > img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

@media (max-width: 760px) {
    .dashboard-hero-frame {
        transform: none;
        border-radius: 13px;
    }

    .dashboard-browser-bar {
        height: 27px;
    }
}
