.g-short-video-section {
    margin: 24px auto;
    max-width: 1100px;
}

.g-short-video-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 14px;
}

.g-short-video-list {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 0 12px;
}

.g-short-video-card {
    position: relative;
    flex: 0 0 260px;
    width: 260px;
    height: 462px;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.22);
}

.g-short-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}

.g-short-video-actions {
    position: absolute;
    right: 10px;
    bottom: 86px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.g-short-video-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 19px;
    cursor: pointer;
}

.g-short-video-count {
    color: #fff;
    font-size: 11px;
    text-shadow: 0 1px 3px rgba(0,0,0,.7);
}

.g-short-video-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    color: #fff;
    padding: 54px 14px 14px;
    background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,0));
}

.g-short-video-name {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}

.g-short-video-comment {
    font-size: 13px;
    line-height: 1.45;
    max-height: 58px;
    overflow: hidden;
}

.g-short-video-liked {
    background: #ff2d55;
}

@media screen and (max-width: 768px) {
    .g-short-video-section {
        margin: 18px 0;
        padding: 0 12px;
    }

    .g-short-video-card {
        flex-basis: 72vw;
        width: 72vw;
        height: 128vw;
        max-height: 560px;
    }
}

.video-admin-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}