/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Aug 13 2026 | 09:05:43 */
.pk-paid-product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.03fr);
    align-items: start;
    gap: 40px;
    width: 100%;
}

/* Изображение */

.pk-paid-product__media {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    overflow: hidden;
    background: #fbf5f5;
    border-radius: 10px;
}

.pk-paid-product__media img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
}

/* Информация под изображением */

.pk-paid-product__bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 257px;
    align-items: start;
    gap: 35px;
    margin-top: 19px;
}

.pk-paid-product__category {
    margin-bottom: 18px;
    color: #d52323;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
}

.pk-paid-product__category a {
    color: inherit;
    text-decoration: none;
}

.pk-paid-product__category span {
    margin: 0 6px;
}

.pk-paid-product__title {
    margin: 0 0 18px;
    color: #202020;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

.pk-paid-product__access {
    color: #252525;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

/* Кнопка и цена */

.pk-paid-product__action {
    width: 100%;
    text-align: center;
}

.pk-paid-product__button,
.pk-paid-product__opened {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
}

.pk-paid-product__button {
    background: #cf2828;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.pk-paid-product__button:hover {
    color: #fff;
    background: #b91f1f;
    transform: translateY(-1px);
}

.pk-paid-product__opened {
    background: #358a52;
}

.pk-paid-product__price {
    margin-top: 15px;
    color: #202020;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.pk-paid-product__price .amount {
    color: inherit;
}

/* Описание */

.pk-paid-product__description {
    padding: 20px 21px;
    background: #f7f7f7;
    border-radius: 10px;
}

.pk-paid-product__description h2 {
    margin: 0 0 18px;
    color: #202020;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
}

.pk-paid-product__description-text {
    color: #555;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.pk-paid-product__description-text p {
    margin-top: 0;
}

.pk-paid-product__description-text p:last-child {
    margin-bottom: 0;
}

/* Плеер */

.pk-paid-product__video {
    width: 100%;
    margin-top: 25px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 10px;
}

.pk-paid-product__video iframe,
.pk-paid-product__video video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.pk-paid-product__warning {
    margin-top: 20px;
    padding: 15px;
    color: #8a5214;
    background: #fff2df;
    border-radius: 8px;
}

/* Планшеты */

@media (max-width: 1024px) {
    .pk-paid-product {
        gap: 25px;
    }

    .pk-paid-product__bottom {
        grid-template-columns: minmax(0, 1fr) 220px;
        gap: 20px;
    }
}

/* Телефоны */

@media (max-width: 767px) {
    .pk-paid-product {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pk-paid-product__media {
        aspect-ratio: 4 / 3;
    }

    .pk-paid-product__bottom {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .pk-paid-product__action {
        text-align: left;
    }

    .pk-paid-product__price {
        text-align: center;
    }

    .pk-paid-product__description {
        padding: 20px;
    }
}


/* Заголовок товара */

.pk-paid-product h1.pk-paid-product__title {
    font-size: 20px !important;
    line-height: 1.3;
}

/* Белый текст кнопки во всех состояниях */

.pk-paid-product a.pk-paid-product__button,
.pk-paid-product a.pk-paid-product__button:hover,
.pk-paid-product a.pk-paid-product__button:focus,
.pk-paid-product a.pk-paid-product__button:active,
.pk-paid-product a.pk-paid-product__button:visited {
    color: #ffffff !important;
}

/* Планшетная версия */

@media (min-width: 768px) and (max-width: 1024px) {
    .pk-paid-product {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 35px;
    }

    .pk-paid-product__main,
    .pk-paid-product__side {
        width: 100%;
        min-width: 0;
    }

    .pk-paid-product__side {
        grid-column: 1;
    }

    .pk-paid-product__description {
        width: 100%;
        box-sizing: border-box;
        overflow-wrap: anywhere;
    }

    .pk-paid-product__description-text {
        max-width: 100%;
    }

    .pk-paid-product__bottom {
        grid-template-columns: minmax(0, 1fr) 240px;
        gap: 25px;
    }
}

/* Мобильная версия */

@media (max-width: 767px) {
    .pk-paid-product {
        grid-template-columns: minmax(0, 1fr);
    }

    .pk-paid-product__main,
    .pk-paid-product__side,
    .pk-paid-product__description {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .pk-paid-product__bottom {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Купленный товар — только видеоплеер */

.pk-paid-product__video--purchased {
    width: 100%;
    max-width: 100%;
    margin: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    border-radius: 10px;
}

.pk-paid-product__video--purchased iframe,
.pk-paid-product__video--purchased video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}