.video-page{
    min-height:100vh;
    padding-bottom:56px;
    background:
        radial-gradient(circle at 7% 0%, rgba(37,99,235,.07), transparent 32%),
        radial-gradient(circle at 94% 6%, rgba(239,68,68,.06), transparent 28%),
        #f6f8fb;
    color:#0f172a;
}

.video-page a{
    transition:.16s ease;
}

.video-breadcrumb{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
    color:#94a3b8;
    font-size:13px;
    font-weight:750;
    margin-bottom:16px;
}

.video-breadcrumb a{
    color:#64748b;
    text-decoration:none;
}

.video-breadcrumb a:hover{
    color:#dc2626;
}

.video-breadcrumb strong{
    color:#0f172a;
    font-weight:900;
}

.video-main-hero{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:24px;
    align-items:stretch;
    margin:24px 0 30px;
}

.video-hero-content,
.video-hero-player-card,
.video-detail-card,
.video-live-card,
.video-archive-card,
.video-empty-card{
    background:#fff;
    border:1px solid #e2e8f0;
    box-shadow:0 16px 45px rgba(15,23,42,.06);
}

.video-hero-content{
    border-radius:30px;
    padding:34px;
    position:relative;
    overflow:hidden;
}

.video-hero-content:after{
    content:"";
    position:absolute;
    right:-120px;
    top:-130px;
    width:340px;
    height:340px;
    border-radius:50%;
    background:rgba(220,38,38,.07);
    pointer-events:none;
}

.video-type-pill,
.video-live-pill{
    position:relative;
    z-index:2;
    width:max-content;
    height:34px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    border-radius:999px;
    padding:0 13px;
    font-size:12px;
    font-weight:950;
    margin-bottom:18px;
}

.video-type-pill{
    background:#eff6ff;
    color:#2563eb;
}

.video-live-pill{
    background:#fef2f2;
    color:#dc2626;
}

.video-live-pill i{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#ef4444;
    box-shadow:0 0 0 6px rgba(239,68,68,.15);
}

.video-hero-content h1{
    position:relative;
    z-index:2;
    max-width:760px;
    color:#0f172a;
    font-size:clamp(38px,5vw,68px);
    line-height:.98;
    letter-spacing:-.075em;
    margin:0;
    font-weight:1000;
}

.video-hero-content p{
    position:relative;
    z-index:2;
    max-width:690px;
    color:#475569;
    font-size:16px;
    line-height:1.75;
    margin:18px 0 0;
}

.video-hero-actions{
    position:relative;
    z-index:2;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:26px;
}

.video-hero-actions a{
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    padding:0 16px;
    text-decoration:none;
    background:#f8fafc;
    color:#0f172a;
    border:1px solid #e2e8f0;
    font-size:13px;
    font-weight:950;
}

.video-hero-actions a:hover,
.video-hero-actions a.active{
    background:#dc2626;
    color:#fff;
    border-color:#dc2626;
}

.video-hero-player-card{
    border-radius:30px;
    padding:16px;
    overflow:hidden;
}

.video-hero-player-box{
    height:320px;
}

.video-player-box{
    position:relative;
    border-radius:24px;
    overflow:hidden;
    background:#111827;
    cursor:pointer;
    min-height:280px;
}

.video-player-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.28s ease;
}

.video-player-box:hover img{
    transform:scale(1.04);
}

.video-player-box:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,transparent 45%,rgba(15,23,42,.65));
    pointer-events:none;
}

.video-play-big{
    position:absolute;
    left:50%;
    top:50%;
    z-index:4;
    transform:translate(-50%,-50%);
    width:86px;
    height:86px;
    border-radius:50%;
    border:0;
    background:#fff;
    color:#dc2626;
    font-size:34px;
    cursor:pointer;
    box-shadow:0 18px 45px rgba(15,23,42,.24);
    transition:.18s ease;
}

.video-player-box:hover .video-play-big{
    transform:translate(-50%,-50%) scale(1.06);
}

.video-live-badge{
    position:absolute;
    left:16px;
    top:16px;
    z-index:5;
    height:28px;
    border-radius:999px;
    padding:0 10px;
    display:inline-flex;
    align-items:center;
    background:#ef4444;
    color:#fff;
    font-size:11px;
    font-weight:1000;
    letter-spacing:.06em;
    box-shadow:0 10px 24px rgba(239,68,68,.24);
}

.video-hero-player-info{
    padding:16px 4px 2px;
}

.video-hero-player-info span,
.video-detail-label,
.video-section-title-row span{
    display:block;
    color:#dc2626;
    font-size:11px;
    font-weight:1000;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-bottom:7px;
}

.video-hero-player-info strong{
    display:block;
    color:#0f172a;
    font-size:23px;
    line-height:1.22;
    letter-spacing:-.045em;
    font-weight:1000;
}

/* DETAIL */

.video-detail-card{
    border-radius:30px;
    padding:18px;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:22px;
    margin-bottom:30px;
}

.video-detail-player .video-player-box{
    height:100%;
    min-height:390px;
}

.video-detail-info{
    padding:18px;
}

.video-detail-info h2{
    color:#0f172a;
    font-size:clamp(30px,4vw,48px);
    line-height:1.05;
    letter-spacing:-.065em;
    font-weight:1000;
    margin:0;
}

.video-detail-info p{
    color:#475569;
    line-height:1.75;
    font-size:15px;
    margin:16px 0 0;
}

.video-meta{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin-top:20px;
}

.video-meta span{
    display:inline-flex;
    align-items:center;
    height:30px;
    border-radius:999px;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    color:#64748b;
    padding:0 11px;
    font-size:12px;
    font-weight:850;
}

/* SECTIONS */

.video-live-section,
.video-featured-section,
.video-archive-section{
    margin-top:30px;
}

.video-section-title-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:16px;
    margin-bottom:16px;
}

.video-section-title-row h2{
    color:#0f172a;
    font-size:31px;
    font-weight:1000;
    letter-spacing:-.055em;
    margin:0;
}

.video-section-title-row p{
    color:#94a3b8;
    font-size:13px;
    font-weight:850;
    margin:0;
}

.video-section-title-row > a{
    height:38px;
    display:inline-flex;
    align-items:center;
    border-radius:999px;
    padding:0 14px;
    background:#fff;
    border:1px solid #e2e8f0;
    color:#0f172a;
    text-decoration:none;
    font-size:12px;
    font-weight:950;
}

.video-section-title-row > a:hover{
    background:#dc2626;
    color:#fff;
    border-color:#dc2626;
}

/* LIVE */

.video-live-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.video-live-card{
    border-radius:26px;
    overflow:hidden;
}

.video-live-thumb{
    width:100%;
    height:210px;
    border:0;
    padding:0;
    background:#111827;
    position:relative;
    overflow:hidden;
    cursor:pointer;
    display:block;
}

.video-live-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.28s ease;
}

.video-live-thumb:hover img{
    transform:scale(1.05);
}

.video-live-thumb:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,transparent 45%,rgba(15,23,42,.58));
}

.video-live-thumb b{
    position:absolute;
    right:16px;
    bottom:16px;
    z-index:3;
    width:52px;
    height:52px;
    border-radius:50%;
    background:#fff;
    color:#dc2626;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    box-shadow:0 14px 34px rgba(15,23,42,.18);
}

.video-live-body{
    padding:18px;
}

.video-live-body h3{
    margin:0 0 8px;
    font-size:19px;
    font-weight:1000;
    letter-spacing:-.04em;
    line-height:1.22;
}

.video-live-body h3 a{
    color:#0f172a;
    text-decoration:none;
}

.video-live-body h3 a:hover{
    color:#dc2626;
}

.video-live-body p{
    color:#64748b;
    font-size:13px;
    line-height:1.6;
    margin:0;
}

/* FEATURED */

.video-featured-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:16px;
}

.video-feature-card{
    min-height:230px;
    border-radius:26px;
    overflow:hidden;
    background:#111827;
    position:relative;
    box-shadow:0 16px 45px rgba(15,23,42,.08);
}

.video-feature-card.is-large{
    grid-row:span 2;
    min-height:476px;
}

.video-feature-card a{
    display:block;
    width:100%;
    height:100%;
    color:#fff;
    text-decoration:none;
    position:relative;
}

.video-feature-card img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.32s ease;
}

.video-feature-card:hover img{
    transform:scale(1.06);
}

.video-feature-card a:after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(180deg,rgba(15,23,42,.08),rgba(15,23,42,.84)),
        radial-gradient(circle at 18% 18%,rgba(220,38,38,.20),transparent 30%);
    z-index:1;
}

.video-card-play{
    position:absolute;
    left:16px;
    top:16px;
    z-index:3;
    width:48px;
    height:48px;
    border-radius:50%;
    background:#fff;
    color:#dc2626;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    box-shadow:0 14px 34px rgba(15,23,42,.22);
}

.video-feature-info{
    position:absolute;
    left:18px;
    right:18px;
    bottom:18px;
    z-index:3;
}

.video-feature-info strong{
    display:block;
    color:#fff;
    font-size:19px;
    line-height:1.2;
    font-weight:1000;
    letter-spacing:-.04em;
}

.video-feature-card.is-large .video-feature-info strong{
    font-size:31px;
}

.video-feature-info small{
    display:block;
    color:rgba(255,255,255,.70);
    font-size:12px;
    font-weight:850;
    margin-top:7px;
}

/* ARCHIVE */

.video-archive-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.video-archive-card{
    border-radius:26px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition:.18s ease;
}

.video-archive-card:hover{
    transform:translateY(-4px);
    box-shadow:0 22px 58px rgba(15,23,42,.10);
}

.video-archive-cover{
    height:215px;
    display:block;
    position:relative;
    overflow:hidden;
    background:#f1f5f9;
}

.video-archive-cover img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.28s ease;
}

.video-archive-card:hover .video-archive-cover img{
    transform:scale(1.05);
}

.video-archive-cover:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,transparent 45%,rgba(15,23,42,.52));
}

.video-archive-cover b{
    position:absolute;
    right:16px;
    bottom:16px;
    z-index:3;
    width:52px;
    height:52px;
    border-radius:50%;
    background:#fff;
    color:#dc2626;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    box-shadow:0 14px 34px rgba(15,23,42,.18);
}

.video-archive-body{
    padding:18px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.video-archive-meta{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:10px;
}

.video-archive-meta span{
    display:inline-flex;
    align-items:center;
    height:26px;
    border-radius:999px;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    color:#64748b;
    padding:0 9px;
    font-size:11px;
    font-weight:850;
}

.video-archive-body h3{
    margin:0 0 9px;
    font-size:20px;
    font-weight:1000;
    letter-spacing:-.045em;
    line-height:1.22;
}

.video-archive-body h3 a{
    color:#0f172a;
    text-decoration:none;
}

.video-archive-body h3 a:hover{
    color:#dc2626;
}

.video-archive-body p{
    color:#64748b;
    font-size:13px;
    line-height:1.65;
    margin:0;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.video-watch-link{
    margin-top:16px;
    width:max-content;
    height:36px;
    border-radius:999px;
    padding:0 14px;
    display:inline-flex;
    align-items:center;
    background:#0f172a;
    color:#fff;
    text-decoration:none;
    font-size:12px;
    font-weight:950;
}

.video-watch-link:hover{
    background:#dc2626;
}

.video-empty-card{
    border-radius:24px;
    padding:42px 24px;
    text-align:center;
}

.video-empty-card h3{
    margin:0 0 8px;
    color:#0f172a;
    font-size:24px;
    font-weight:1000;
    letter-spacing:-.04em;
}

.video-empty-card p{
    margin:0;
    color:#64748b;
}

/* MODAL */

.video-modal{
    position:fixed;
    inset:0;
    z-index:9999;
    display:none;
}

.video-modal.is-open{
    display:block;
}

.video-modal-backdrop{
    position:absolute;
    inset:0;
    background:rgba(2,6,23,.78);
    backdrop-filter:blur(10px);
}

.video-modal-card{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:min(980px,calc(100% - 28px));
    background:#0f172a;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 30px 90px rgba(0,0,0,.42);
}

.video-modal-close{
    position:absolute;
    right:14px;
    top:12px;
    z-index:5;
    width:38px;
    height:38px;
    border-radius:50%;
    border:0;
    background:rgba(255,255,255,.12);
    color:#fff;
    font-size:26px;
    cursor:pointer;
}

.video-modal-title{
    color:#fff;
    font-size:15px;
    font-weight:950;
    padding:18px 60px 14px 18px;
    border-bottom:1px solid rgba(255,255,255,.10);
}

.video-modal-player{
    background:#000;
    aspect-ratio:16/9;
}

.video-modal-player iframe,
.video-modal-player video{
    width:100%;
    height:100%;
    display:block;
    border:0;
    background:#000;
}

/* RESPONSIVE */

@media(max-width:1180px){
    .video-main-hero,
    .video-detail-card{
        grid-template-columns:1fr;
    }

    .video-hero-player-card{
        max-width:620px;
    }

    .video-live-grid,
    .video-archive-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .video-featured-grid{
        grid-template-columns:1fr 1fr;
    }

    .video-feature-card.is-large{
        grid-row:auto;
        min-height:300px;
    }
}

@media(max-width:760px){
    .video-hero-content,
    .video-detail-card{
        border-radius:22px;
    }

    .video-hero-content{
        padding:22px;
    }

    .video-hero-content h1{
        letter-spacing:-.055em;
    }

    .video-section-title-row{
        align-items:flex-start;
        flex-direction:column;
    }

    .video-live-grid,
    .video-featured-grid,
    .video-archive-grid{
        grid-template-columns:1fr;
    }

    .video-hero-player-box,
    .video-detail-player .video-player-box{
        min-height:250px;
        height:260px;
    }

    .video-play-big{
        width:72px;
        height:72px;
        font-size:28px;
    }

    .video-archive-cover,
    .video-live-thumb{
        height:230px;
    }

    .video-modal-card{
        border-radius:18px;
    }
}
/* =========================================================
   VIDEO ADMIN DESIGN FIX - MODERN UI
   assets/css/videos.css dosyasının en altına ekle
========================================================= */

.video-admin-head {
    margin-bottom: 22px;
}

.video-admin-head h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 1000;
    letter-spacing: -.045em;
    color: #0f172a;
}

.video-admin-head p {
    margin: 8px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.video-admin-grid {
    display: grid;
    grid-template-columns: minmax(360px, 460px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.video-form-card,
.video-list-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .08);
    overflow: hidden;
}

.video-form-card {
    position: sticky;
    top: 20px;
    padding: 0;
}

.video-form-card h2,
.video-list-card h2 {
    margin: 0;
    padding: 22px 22px 18px;
    font-size: 21px;
    font-weight: 1000;
    letter-spacing: -.035em;
    color: #0f172a;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

#videoSaveForm {
    padding: 22px;
    display: grid;
    gap: 17px;
}

.video-field {
    display: grid;
    gap: 7px;
}

.video-field label {
    color: #0f172a;
    font-size: 12px;
    font-weight: 950;
}

.video-field input[type="text"],
.video-field input[type="url"],
.video-field input[type="file"],
.video-field select,
.video-field textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 15px;
    background: #fff;
    color: #0f172a;
    padding: 12px 13px;
    outline: 0;
    font-size: 13px;
    transition: .18s ease;
}

.video-field input[type="file"] {
    min-height: 48px;
    padding: 10px;
    background: #f8fafc;
    border-style: dashed;
    cursor: pointer;
}

.video-field textarea {
    min-height: 110px;
    resize: vertical;
}

.video-field input:focus,
.video-field select:focus,
.video-field textarea:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, .09);
}

.video-field small {
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
}

.video-current-file {
    display: block;
    margin-top: 8px;
    padding: 11px 12px;
    border-radius: 14px;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    word-break: break-word;
}

.video-cover-preview {
    margin-top: 10px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.video-cover-preview img {
    width: 100%;
    max-height: 240px;
    display: block;
    object-fit: cover;
}

.video-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.video-checks label {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 0 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: .16s ease;
}

.video-checks label:hover {
    background: #fff7f7;
    border-color: #fecaca;
}

.video-checks input {
    width: 16px;
    height: 16px;
    accent-color: #dc2626;
}

.video-form-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 4px;
}

.video-form-actions .btn,
.video-form-actions button {
    min-height: 48px;
    border-radius: 999px;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 950;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border: 0;
    color: #fff;
    box-shadow: 0 16px 36px rgba(220, 38, 38, .22);
    cursor: pointer;
    transition: .18s ease;
}

.video-form-actions .btn:hover,
.video-form-actions button:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 44px rgba(220, 38, 38, .30);
}

.video-admin-list {
    padding: 18px;
    display: grid;
    gap: 14px;
}

.video-empty {
    border: 1.5px dashed #cbd5e1;
    border-radius: 22px;
    padding: 30px 18px;
    text-align: center;
    background: #f8fafc;
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
}

.video-admin-item {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 16px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .05);
    transition: .18s ease;
}

.video-admin-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(15, 23, 42, .10);
    border-color: #fecaca;
}

.video-admin-item > img {
    width: 190px;
    height: 116px;
    display: block;
    object-fit: cover;
    border-radius: 18px;
    background: #0f172a;
}

.video-admin-item > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-admin-item strong {
    display: block;
    color: #0f172a;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 1000;
    letter-spacing: -.025em;
}

.video-admin-item span {
    display: block;
    margin-top: 7px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

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

.video-admin-actions a,
.video-admin-actions button {
    height: 32px;
    border: 0;
    border-radius: 999px;
    padding: 0 12px;
    background: #f1f5f9;
    color: #0f172a;
    text-decoration: none;
    font-size: 11px;
    font-weight: 950;
    cursor: pointer;
    transition: .15s ease;
}

.video-admin-actions a:hover,
.video-admin-actions button:hover {
    background: #0f172a;
    color: #fff;
}

.video-admin-actions button:last-child:hover {
    background: #dc2626;
    color: #fff;
}

/* Video tipi alanlarını JS ile gizliyorsan destek */
.video-upload-field.is-hidden,
.video-url-field.is-hidden {
    display: none !important;
}

/* Dosya inputunu daha güzel göstermek için */
.video-upload-field input[type="file"],
.video-field input[name="cover_image"] {
    position: relative;
}

.video-upload-field input[type="file"]::file-selector-button,
.video-field input[name="cover_image"]::file-selector-button {
    border: 0;
    border-radius: 999px;
    padding: 8px 13px;
    margin-right: 12px;
    background: #0f172a;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.video-upload-field input[type="file"]::file-selector-button:hover,
.video-field input[name="cover_image"]::file-selector-button:hover {
    background: #dc2626;
}

/* Üst butonlar */
.video-admin-head .page-head-actions,
.page-head-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.video-admin-head .btn,
.page-head-actions .btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 950;
    text-decoration: none;
}

.video-admin-head .btn-primary,
.page-head-actions .btn-primary {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
}

.video-admin-head .btn-secondary,
.page-head-actions .btn-secondary {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #0f172a;
}

/* Responsive */
@media (max-width: 1200px) {
    .video-admin-grid {
        grid-template-columns: 1fr;
    }

    .video-form-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 720px) {
    .video-admin-head h1 {
        font-size: 25px;
    }

    #videoSaveForm {
        padding: 18px;
    }

    .video-admin-list {
        padding: 14px;
    }

    .video-admin-item {
        grid-template-columns: 1fr;
    }

    .video-admin-item > img {
        width: 100%;
        height: 210px;
    }

    .video-form-actions {
        justify-content: stretch;
    }

    .video-form-actions .btn,
    .video-form-actions button {
        width: 100%;
    }
}