/* Шрифты */
@font-face {
    font-family: "Inter";
    font-weight: 400;
    font-style: normal;
    src: url("/css/fonts/Inter-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "Inter";
    font-weight: 700;
    font-style: normal;
    src: url("/css/fonts/Inter-Bold.ttf") format("truetype");
}

* {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    line-height: 1.3;
}

/* Кнопка */
.btn {
    background-color: #E73516;
    text-decoration: none;
    color: #fff;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.2s;
    position: relative;
    top: 0;
    display: inline-block;
    border: none;
    font-size: 17px;
    cursor: pointer;
    box-sizing: border-box;
}
.btn:hover {
    background-color: #c2280c;
}

.bv-btn {
    background-color: #fff;
    color: #E73516;
}
.bv-btn:hover {
    background-color: #fff;
    color: #E73516;
}

/* Ссылка */
.link {
    color: #2B255E;
    transition: 0.2s;
}
.link:hover {
    color: blue;
}

/* Превью видео */
.video-preview {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}
.video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Платное видео — баннер поверх превью */
.paid-video {
    background: rgba(231, 53, 22, 0.9);
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.open-video-preview {
    /*border-radius: 15px;*/
    overflow: hidden;
}
.open-paid-video {
    padding: 20px 30px;
    text-transform: inherit !important;
}

.paid-title {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
}
.paid-desc {
    font-weight: normal !important;
    font-size: 14px;
}
.paid-desc a {
    color: #fff !important;
}