.live-stream-showcase {
    grid-template-columns: minmax(0, 1.95fr) minmax(320px, 0.72fr);
}

.live-stream-player-shell,
.live-stream-chat-shell {
    position: relative;
    min-width: 0;
    background: #090d18;
    overflow: hidden;
}

.live-stream-player-shell {
    aspect-ratio: auto;
    min-height: 0;
}

.live-stream-player-shell::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

.live-stream-card .live-stream-body {
    height: auto;
    justify-content: flex-start;
    padding-top: clamp(26px, 3vw, 38px);
}

.live-stream-chat-panel {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.live-stream-chat-slot {
    min-height: clamp(360px, 34vw, 500px);
}

.live-stream-chat-shell {
    height: 100%;
    min-height: clamp(360px, 34vw, 500px);
    border: 1px solid var(--line);
    border-radius: 18px;
}

.live-stream-chat-empty {
    margin: 0;
    padding: 18px;
    min-height: 140px;
    border: 1px dashed var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
}

.live-stream-player-frame,
.live-stream-chat-frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.live-stream-chat-frame {
    position: absolute;
    inset: 0;
}

@media (max-width: 1280px) {
    .live-stream-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) {
    .live-stream-chat-shell {
        min-height: 340px;
    }

    .live-stream-chat-slot {
        min-height: 340px;
    }
}

@media (max-width: 620px) {
    .live-stream-chat-shell {
        min-height: 300px;
    }

    .live-stream-chat-slot {
        min-height: 300px;
    }
}