.capture-section {
    margin-top: 35px;
}

.capture-section:first-child {
    margin-top: 20px;
}

.capture-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #323a45;
}

.capture-card {
    background: #fff;
    border: 1px solid #e5e8ec;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    transition: all .2s ease;
}

.capture-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.capture-link {
    display: block;
    color: inherit;
    text-decoration: none !important;
}

.capture-link:hover {
    color: inherit;
}

.capture-thumbnail {
    position: relative;
    background: #f5f6f8;
    aspect-ratio: 18 / 10;
    overflow: hidden;
}

.capture-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.capture-badge {
    position: absolute;
    top: 10px;
    right: 10px;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: rgba(255,255,255,.95);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;

    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.badge-video {
    color: #dc3545;
}

.capture-duration {
    position: absolute;
    right: 8px;
    bottom: 8px;

    padding: 3px 8px;

    border-radius: 4px;

    background: rgba(0,0,0,.75);

    color: #fff;

    font-size: 11px;
    font-weight: 600;
}

.capture-body {
    padding: 14px;
}

.capture-title {
    font-size: 14px;
    font-weight: 600;
    color: #323a45;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    min-height: 20px;
}

.capture-meta {
    margin-top: 5px;

    color: #8a9099;

    font-size: 12px;
}

.capture-card:hover .capture-badge {
    transform: scale(1.08);
}

.capture-badge {
    transition: all .2s ease;
}

@media (max-width: 767px) {

    .capture-card {

        margin-bottom: 20px;

    }

}

.capture-menu {

    position: absolute;

    top: 8px;

    left: 8px;

    z-index: 100;

    display: flex;

}

.capture-menu > a {

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.95);

    color: #555;

    text-decoration: none;

    margin-right: 5px;

    border: 1px solid #c4c4c4;
}

.capture-menu > a:hover {

    color: #000;

}

#capture-recording-widget {

    position: fixed;

    bottom: 20px;
    right: 20px;

    display: none;
    align-items: center;

    gap: 12px;

    padding: 10px 14px;

    background: #fff;

    border-radius: 50px;

    box-shadow: 0 8px 25px rgba(0,0,0,.15);

    z-index: 999999;

    user-select: none;

    /*cursor: move;*/

}

#capture-recording-time {

    font-family: monospace;

    font-size: 15px;

    font-weight: bold;

    padding-right: 8px;
}

#capture-stop-recording {

    width: 34px;
    height: 34px;

    border: none;

    border-radius: 50%;

    background: #dc3545;

    color: #fff;

    cursor: pointer;

    font-size: 13px;

}