/* Посадочная: видео для карточки товара */

.vc-page {
    padding-bottom: 0;
}

.vc-page .vc-article {
    margin: 0;
}

.vc-page .vc-hero {
    padding: 48px 0 40px;
    border-bottom: 1px solid var(--ch-edge);
    background:
        radial-gradient(ellipse 65% 50% at 100% 0%, rgba(255, 196, 0, 0.1), transparent 55%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(61, 139, 255, 0.1), transparent 50%);
}

.vc-page .vc-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
    gap: 28px 40px;
    align-items: center;
}

.vc-page .vc-hero-content h1 {
    margin: 0 0 16px;
    font-size: clamp(1.55rem, 4vw, 2.15rem);
    line-height: 1.15;
}

.vc-page .vc-hero-content p {
    margin: 0 0 12px;
    color: var(--ch-muted);
}

.vc-page .vc-hero-content p:last-child {
    margin-bottom: 0;
}

.vc-video-frame {
    aspect-ratio: 3 / 4;
    width: 100%;
    max-width: 280px;
    background: #050810;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc-video {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    vertical-align: top;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.vc-figure {
    margin: 0;
    padding: 0;
}

.vc-figure figcaption {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--ch-muted);
    line-height: 1.35;
    max-width: 280px;
}

.vc-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
    gap: 28px 40px;
    align-items: center;
    margin-top: 20px;
}

.vc-split--media-left {
    grid-template-columns: minmax(320px, 560px) minmax(0, 1fr);
}

.vc-split--media-left .vc-split__media {
    order: -1;
}

.vc-split__media {
    justify-self: end;
}

.vc-split--media-left .vc-split__media {
    justify-self: start;
}

.vc-split__text > :last-child {
    margin-bottom: 0;
}

.vc-split__text p,
.vc-split__text ul,
.vc-split__text ol {
    margin: 0 0 14px;
    color: var(--ch-muted);
}

.vc-split__text ul,
.vc-split__text ol {
    padding-left: 1.25rem;
}

.vc-split__text li::marker {
    color: var(--ch-power);
}

.vc-page .vc-section {
    padding: 48px 0;
    border-top: 1px solid var(--ch-edge);
}

.vc-page .vc-section h2 {
    margin: 0 0 12px;
    font-size: clamp(1.3rem, 3vw, 1.7rem);
}

.vc-page .vc-lead {
    margin: 0 0 16px;
    color: var(--ch-muted);
    max-width: 72ch;
}

.vc-page .vc-list {
    margin: 0 0 20px;
    padding-left: 1.25rem;
    color: var(--ch-muted);
    max-width: 72ch;
}

.vc-page .vc-list li {
    margin-bottom: 0.35rem;
}

.vc-page .vc-list li::marker {
    color: var(--ch-power);
}

.vc-page .vc-after {
    margin: 20px 0 0;
    color: var(--ch-muted);
    max-width: 72ch;
}

.vc-page .vc-aside {
    margin: 20px 0;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--ch-accent) 35%, var(--ch-edge));
    background: color-mix(in srgb, var(--ch-accent) 8%, var(--ch-panel));
    max-width: 72ch;
}

.vc-page .vc-aside p {
    margin: 0;
    color: var(--ch-muted);
    font-size: 0.9rem;
}

.vc-toc {
    padding: 36px 0;
    border-top: 1px solid var(--ch-edge);
}

.vc-toc h2 {
    margin: 0 0 4px;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.vc-toc-tags {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.vc-toc-tag {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--ch-edge);
    background: linear-gradient(145deg, var(--ch-panel) 0%, color-mix(in srgb, var(--ch-panel) 88%, var(--ch-bg)) 100%);
    color: var(--ch-text);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}

.vc-toc-tag:hover {
    border-color: color-mix(in srgb, var(--ch-power) 55%, var(--ch-edge));
    color: #fff;
    background: linear-gradient(135deg, color-mix(in srgb, var(--ch-power) 75%, var(--ch-panel)) 0%, color-mix(in srgb, var(--ch-accent) 30%, var(--ch-panel)) 100%);
    transform: translateY(-2px);
}

.vc-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.vc-video-grid .vc-figure {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    padding-bottom: 0;
}

.vc-video-grid .vc-video-frame {
    max-width: none;
    width: 100%;
    border-radius: 12px;
}

.vc-page .vc-hero-grid .vc-figure {
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.vc-page .vc-hero-grid .vc-video-frame,
.vc-split__media .vc-video-frame {
    max-width: 560px;
    border-radius: 12px;
}

.vc-page .vc-hero-grid .vc-figure figcaption,
.vc-split__media .vc-figure figcaption {
    max-width: 560px;
}

.vc-split__media .vc-figure {
    border: none;
    border-radius: 0;
    overflow: visible;
}

.vc-video-grid .vc-figure figcaption {
    padding: 10px 12px 8px;
    max-width: none;
}

.vc-page .vc-table-wrap {
    overflow-x: auto;
    margin: 16px 0 20px;
}

.vc-page .vc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: var(--ch-panel);
    border: 1px solid var(--ch-edge);
    border-radius: 10px;
    overflow: hidden;
}

.vc-page .vc-table th,
.vc-page .vc-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--ch-edge);
    vertical-align: top;
}

.vc-page .vc-table th {
    background: rgba(255, 196, 0, 0.1);
}

.vc-page .vc-table tr:last-child td {
    border-bottom: none;
}

.vc-prompt-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.vc-prompt-list article {
    padding: 16px;
    border-radius: 10px;
    border: 1px solid var(--ch-edge);
    background: var(--ch-panel);
}

.vc-prompt-list h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.vc-prompt-list p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--ch-muted);
    line-height: 1.45;
}

.vc-page .vc-faq details {
    background: var(--ch-panel);
    border: 1px solid var(--ch-edge);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 10px;
}

.vc-page .vc-faq summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}

.vc-page .vc-faq summary::-webkit-details-marker {
    display: none;
}

.vc-page .vc-faq details p {
    margin: 10px 0 0;
    color: var(--ch-muted);
    font-size: 0.95rem;
}

.vc-page .vc-summary p {
    margin: 0 0 14px;
    color: var(--ch-muted);
    max-width: 72ch;
}

.vc-page .vc-summary .ch-btn {
    margin-top: 8px;
}

@media (max-width: 900px) {
    .vc-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vc-page .vc-hero-grid,
    .vc-split,
    .vc-split--media-left {
        grid-template-columns: 1fr;
    }

    .vc-split__media,
    .vc-page .vc-hero-grid .vc-split__media {
        justify-self: center;
        order: -1;
    }

    .vc-video-frame,
    .vc-figure figcaption {
        margin-inline: auto;
    }

    .vc-figure figcaption {
        text-align: center;
    }
}

@media (max-width: 520px) {
    .vc-video-grid {
        grid-template-columns: 1fr;
    }
}
