* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f4f6f8;
    color: #1f2937;
    font: 16px/1.5 Arial, sans-serif;
}

.page {
    width: min(760px, calc(100% - 32px));
    margin: 40px auto;
}

.note {
    padding: 12px 14px;
    border-left: 4px solid #2457d6;
    background: #fff;
}

.feed {
    display: grid;
    gap: 16px;
    margin: 24px 0;
}

.post {
    padding: 18px;
    border: 1px solid #d7dde5;
    border-radius: 8px;
    background: #fff;
}

.post h2 {
    margin: 0 0 12px;
    font-size: 20px;
}

.video-box {
    /*aspect-ratio: 2.4 / 1;*/
    aspect-ratio: 3 / 2;
    min-height: 180px;
    width: 100%;
}

.button {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 8px;
    background: #2457d6;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.button:disabled {
    cursor: default;
    opacity: .65;
}

.cdnnow-video-skin .playernow-control-bar {
    background-image: linear-gradient(180deg,transparent,rgba(0,0,0,.5) 50%,rgba(0,0,0,.8)) !important;
}

.playernow-block .playernow-video-el {
    object-fit: cover;
}