/**
 * Viperra Community Theme
 * Magazínové výpisy článků bez Elementoru
 */

/* =========================================================
   ZÁKLADNÍ WRAPPERY
   ========================================================= */

.vct-magazine-grid-wrapper,
.vct-category-section {
    width: 100%;
    margin: 0 auto;
}

/* =========================================================
   NADPISY SEKCÍ
   ========================================================= */

.vct-section-heading {
    margin-bottom: 24px;
    border-left: 4px solid #f73873;
    padding-left: 16px;
}

.vct-section-heading span {
    display: block;
    color: #f73873;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.vct-section-heading h2 {
    color: #fff;
    font-size: 28px;
    line-height: 1.2;
    margin: 0;
}

/* =========================================================
   MAGAZÍNOVÝ GRID
   ========================================================= */

.vct-magazine-grid {
    display: grid;
    gap: 26px;
}

.vct-columns-1 {
    grid-template-columns: 1fr;
}

.vct-columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vct-columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vct-columns-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* =========================================================
   KARTA ČLÁNKU
   ========================================================= */

.vct-post-card {
    background: #111114;
    border: 1px solid #25252b;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.vct-post-card:hover {
    transform: translateY(-4px);
    border-color: rgba(247, 56, 115, 0.75);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
}

.vct-post-thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #1a1a1f;
    overflow: hidden;
    text-decoration: none;
}

.vct-post-thumb-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    transition: transform 0.28s ease, filter 0.28s ease;
}

.vct-post-card:hover .vct-post-thumb-img {
    transform: scale(1.045);
    filter: brightness(1.08);
}

.vct-post-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.24), transparent 36%),
        linear-gradient(135deg, #15151a, #0b0b0d);
}

.vct-post-thumb-placeholder span {
    color: rgba(255, 255, 255, 0.26);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.vct-post-category {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 28px);
    background: #f73873;
    color: #fff;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 10px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

.vct-post-body {
    padding: 18px 18px 20px;
}

.vct-post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    color: #9a9aa3;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.vct-meta-separator {
    color: #f73873;
}

.vct-post-title {
    margin: 0 0 11px;
    font-size: 20px;
    line-height: 1.22;
    font-weight: 900;
}

.vct-post-title a {
    color: #fff;
    text-decoration: none;
}

.vct-post-title a:hover {
    color: #f73873;
}

.vct-post-excerpt {
    color: #c0c0c7;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 16px;
}

.vct-read-more {
    display: inline-flex;
    align-items: center;
    color: #fff;
    background: transparent;
    border: 1px solid #34343b;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.vct-read-more:hover {
    background: #f73873;
    border-color: #f73873;
    color: #fff;
}

.vct-empty-state {
    background: #111114;
    border: 1px solid #25252b;
    color: #b8b8c0;
    padding: 22px;
    border-radius: 12px;
    text-align: center;
}

/* =========================================================
   HOMEPAGE LAYOUT SE SIDEBARem
   ========================================================= */

.vct-homepage-magazine {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 32px;
    align-items: start;
    width: 100%;
    clear: both;
}

.vct-homepage-main {
    min-width: 0;
}

.vct-homepage-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-width: 0;
}

.vct-sidebar-card {
    background: #111114;
    border: 1px solid #25252b;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.vct-sidebar-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #25252b;
}

.vct-sidebar-heading span {
    color: #f73873;
    font-size: 18px;
    line-height: 1;
}

.vct-sidebar-heading h3 {
    color: #fff;
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
}

.vct-sidebar-post-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vct-sidebar-post {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #222228;
    text-decoration: none !important;
}

.vct-sidebar-post:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.vct-sidebar-post-title {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.vct-sidebar-post:hover .vct-sidebar-post-title {
    color: #f73873;
}

.vct-sidebar-post-date {
    display: block;
    color: #8f8f98;
    font-size: 12px;
    margin-top: 5px;
}

.vct-sidebar-empty {
    color: #aaaab2;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   HERO SEKCE HOMEPAGE
   ========================================================= */

.vct-hero-section {
    width: 100%;
    margin-bottom: 36px;
}

.vct-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
    gap: 24px;
    align-items: stretch;
}

.vct-hero-main {
    position: relative;
    min-height: 430px;
    background: #111114;
    border: 1px solid #25252b;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.45);
}

.vct-hero-main-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    color: #fff;
    text-decoration: none !important;
}

.vct-hero-main-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.vct-hero-main-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.vct-hero-main:hover .vct-hero-main-img {
    transform: scale(1.045);
    filter: brightness(1.08);
}

.vct-hero-main-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.68) 62%, rgba(0, 0, 0, 0.92) 100%),
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.28), transparent 42%);
    z-index: 1;
}

.vct-hero-main-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
}

.vct-hero-main-content .vct-post-category {
    position: static !important;
    left: auto !important;
    bottom: auto !important;
    margin-bottom: 12px !important;
    width: fit-content;
}

.vct-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #d7d7dc;
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 12px !important;
}

.vct-hero-meta span:nth-child(2) {
    color: #f73873;
}

.vct-hero-main-title {
    color: #fff;
    margin: 0 0 14px !important;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.02 !important;
    font-weight: 950;
    letter-spacing: -0.055em !important;
}

.vct-hero-main-excerpt {
    color: #d0d0d6;
    max-width: 720px;
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
}

.vct-hero-side {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 18px;
}

.vct-hero-side-card {
    background: #111114;
    border: 1px solid #25252b;
    border-radius: 16px;
    overflow: hidden;
    min-height: 150px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.vct-hero-side-card:hover {
    transform: translateY(-3px);
    border-color: rgba(247, 56, 115, 0.75);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.52);
}

.vct-hero-side-link {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) !important;
    height: 100%;
    color: #fff;
    text-decoration: none !important;
}

.vct-hero-side-thumb {
    position: relative;
    width: 150px !important;
    height: 150px !important;
    min-height: 150px !important;
    aspect-ratio: 1 / 1 !important;
    background: #1a1a1f;
    overflow: hidden;
}

.vct-hero-side-img {
    width: 150px !important;
    height: 150px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.vct-hero-side-card:hover .vct-hero-side-img {
    transform: scale(1.05);
    filter: brightness(1.08);
}

.vct-hero-side-content {
    padding: 14px 14px 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.vct-hero-side-category {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    background: rgba(247, 56, 115, 0.16);
    color: #f73873;
    border: 1px solid rgba(247, 56, 115, 0.35);
    border-radius: 999px;
    padding: 5px 8px;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.vct-hero-side-title {
    color: #fff;
    margin: 0;
    font-size: 16px;
    line-height: 1.22;
    font-weight: 900;
}

.vct-hero-side-date {
    color: #92929b;
    font-size: 12px;
    margin-top: 7px;
}

/* =========================================================
   PLAY IKONA PRO VIDEO ČLÁNKY
   ========================================================= */

.vct-play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(4px);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.45),
        0 0 0 0 rgba(247, 56, 115, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.vct-play-icon span {
    display: block;
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid #fff;
}

.vct-play-icon-large {
    width: 76px;
    height: 76px;
}

.vct-play-icon-large span {
    margin-left: 6px;
    border-top-width: 15px;
    border-bottom-width: 15px;
    border-left-width: 23px;
}

.vct-play-icon-small {
    width: 46px;
    height: 46px;
}

.vct-play-icon-small span {
    margin-left: 4px;
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 14px;
}

.vct-post-card:hover .vct-play-icon,
.vct-hero-main:hover .vct-play-icon,
.vct-hero-side-card:hover .vct-play-icon {
    transform: translate(-50%, -50%) scale(1.08);
    background: #f73873;
    border-color: rgba(247, 56, 115, 0.95);
    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.58),
        0 0 0 9px rgba(247, 56, 115, 0.18);
}

/* =========================================================
   SIDEBAR RECENZE ALB
   ========================================================= */

.vct-sidebar-reviews-card,
.vct-sidebar-bands-card,
.vct-sidebar-creators-card,
.vct-sidebar-comments-card {
    padding: 18px;
}

.vct-review-sidebar-list,
.vct-band-sidebar-list,
.vct-creator-sidebar-list,
.vct-comment-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vct-review-sidebar-row,
.vct-band-sidebar-row,
.vct-comment-sidebar-row {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    background: #17171b;
    border: 1px solid #25252b;
    border-radius: 12px;
    padding: 10px;
    text-decoration: none !important;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.vct-creator-sidebar-row {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    background: #17171b;
    border: 1px solid #25252b;
    border-radius: 12px;
    padding: 10px;
    text-decoration: none !important;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.vct-review-sidebar-row:hover,
.vct-band-sidebar-row:hover,
.vct-creator-sidebar-row:hover,
.vct-comment-sidebar-row:hover {
    background: #1d1d22;
    border-color: rgba(247, 56, 115, 0.75);
    transform: translateY(-2px);
}

.vct-review-sidebar-cover,
.vct-band-sidebar-image,
.vct-comment-sidebar-image {
    width: 74px;
    height: 74px;
    border-radius: 10px;
    overflow: hidden;
    background: #101014;
    flex-shrink: 0;
}

.vct-review-sidebar-img,
.vct-band-sidebar-img,
.vct-comment-sidebar-img {
    width: 74px !important;
    height: 74px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

.vct-review-sidebar-placeholder,
.vct-band-sidebar-placeholder,
.vct-comment-sidebar-placeholder {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.24), transparent 40%),
        linear-gradient(135deg, #15151a, #0b0b0d);
}

.vct-creator-sidebar-image {
    width: 62px;
    height: 82px;
    border-radius: 10px;
    overflow: hidden;
    background: #101014;
    flex-shrink: 0;
}

.vct-creator-sidebar-img {
    width: 62px !important;
    height: 82px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

.vct-creator-sidebar-placeholder {
    width: 62px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.24), transparent 40%),
        linear-gradient(135deg, #15151a, #0b0b0d);
}

.vct-review-sidebar-placeholder span,
.vct-band-sidebar-placeholder span,
.vct-creator-sidebar-placeholder span,
.vct-comment-sidebar-placeholder span {
    color: rgba(255, 255, 255, 0.28);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.vct-review-sidebar-content,
.vct-band-sidebar-content,
.vct-creator-sidebar-content,
.vct-comment-sidebar-content {
    min-width: 0;
}

.vct-review-sidebar-artist {
    color: #f73873;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.vct-review-sidebar-album,
.vct-band-sidebar-title,
.vct-creator-sidebar-title {
    color: #fff;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 7px;
}

.vct-review-sidebar-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #9a9aa3;
    font-size: 12px;
    line-height: 1;
}

.vct-review-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 24px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.vct-review-score.score-high {
    background: #f73873;
}

.vct-review-score.score-mid {
    background: #ca8a04;
}

.vct-review-score.score-low {
    background: #dc2626;
}

.vct-band-sidebar-meta,
.vct-creator-sidebar-meta {
    color: #f73873;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 800;
}

.vct-creator-sidebar-meta {
    text-transform: lowercase;
}

.vct-band-sidebar-row:hover .vct-band-sidebar-title,
.vct-creator-sidebar-row:hover .vct-creator-sidebar-title {
    color: #f73873;
}

.vct-band-sidebar-row:hover .vct-band-sidebar-meta,
.vct-creator-sidebar-row:hover .vct-creator-sidebar-meta {
    color: #cfcfd6;
}

.vct-comment-sidebar-date {
    color: #9a9aa3;
    font-size: 11px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 6px;
}

.vct-comment-sidebar-text {
    color: #cfcfd6;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
}

.vct-comment-sidebar-text strong {
    color: #fff;
    font-weight: 900;
}

.vct-comment-sidebar-text span {
    color: #f73873;
    font-weight: 900;
}

.vct-comment-sidebar-text em {
    display: block;
    color: #fff;
    font-style: normal;
    font-weight: 900;
    margin-top: 4px;
}

.vct-comment-sidebar-row:hover .vct-comment-sidebar-text em {
    color: #f73873;
}

/* Omezení dlouhých názvů v sidebaru */
.vct-review-sidebar-album,
.vct-band-sidebar-title,
.vct-creator-sidebar-title,
.vct-comment-sidebar-text em {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================================================
   SINGLE DEFAULT - BĚŽNÝ PŘÍSPĚVEK
   ========================================================= */

.vct-single-page {
    width: 100% !important;
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-top: 34px !important;
    padding-bottom: 60px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
}

.vct-single-layout {
    width: 100% !important;
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
}

.vct-single-article-card {
    min-width: 0;
    background: #111114;
    border: 1px solid #25252b;
    border-radius: 18px;
    padding: 28px !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
    overflow: hidden;
}

.vct-single-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-width: 0;
    position: sticky;
    top: 90px;
}

.vct-single-sidebar .vct-sidebar-card {
    background: #111114;
    border: 1px solid #25252b;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

.vct-single-header {
    margin-bottom: 30px;
}

.vct-single-category {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    background: #f73873;
    color: #fff !important;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none !important;
    margin-bottom: 18px;
}

.vct-single-category:hover {
    background: #fff;
    color: #111114 !important;
}

.vct-single-title {
    color: #fff;
    margin: 0 0 14px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.vct-single-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #aaaab2;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 18px;
}

.vct-single-meta-separator {
    color: #f73873;
}

.vct-single-excerpt {
    color: #d4d4dc;
    max-width: 840px;
    margin: 0;
    font-size: 19px;
    line-height: 1.65;
    font-weight: 500;
}

.vct-single-featured {
    position: relative;
    width: auto;
    margin: 30px -28px 34px !important;
    border-radius: 0;
    overflow: hidden;
    background: #111114;
    border-top: 1px solid #25252b;
    border-bottom: 1px solid #25252b;
    border-left: 0;
    border-right: 0;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.48);
}

.vct-single-featured-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
}

.vct-single-content {
    color: #e5e5ea;
    font-size: 18px;
    line-height: 1.82;
    max-width: 100%;
}

.vct-single-content p {
    margin: 0 0 1.35em;
}

.vct-single-content h2,
.vct-single-content h3,
.vct-single-content h4 {
    color: #fff;
    font-weight: 950;
    letter-spacing: -0.035em;
    line-height: 1.15;
    margin: 1.55em 0 0.65em;
}

.vct-single-content h2 {
    font-size: 34px;
}

.vct-single-content h3 {
    font-size: 27px;
}

.vct-single-content h4 {
    font-size: 22px;
}

.vct-single-content a {
    color: #f73873;
    font-weight: 800;
    text-decoration: none;
}

.vct-single-content a:hover {
    color: #fff;
}

.vct-single-content strong {
    color: #fff;
    font-weight: 900;
}

.vct-single-content ul,
.vct-single-content ol {
    margin: 0 0 1.4em 1.4em;
    padding: 0;
}

.vct-single-content li {
    margin-bottom: 0.45em;
}

.vct-single-content blockquote {
    position: relative;
    margin: 34px 0;
    padding: 24px 26px;
    background: #15151a;
    border-left: 4px solid #f73873;
    border-radius: 14px;
    color: #f0f0f4;
    font-size: 20px;
    line-height: 1.65;
    font-weight: 700;
}

.vct-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.vct-single-content figure {
    margin: 34px 0;
}

.vct-single-content figcaption {
    color: #9999a3;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 9px;
    text-align: center;
}

.vct-single-content iframe,
.vct-single-content video {
    max-width: 100%;
    border-radius: 14px;
}

.vct-single-pages {
    margin-top: 32px;
    color: #fff;
}

/* =========================================================
   SKRYTÍ TITULKU MAGAZÍN HOMEPAGE
   ========================================================= */

body.page-id-3651 .page-title,
body.page-id-3651 .entry-title,
body.page-id-3651 .main-heading,
body.page-id-3651 .post-title,
body.page-id-3651 h1.entry-title,
body.page-id-3651 h1.page-title,
body.page-id-3651 .the-post-header,
body.page-id-3651 .post-header {
    display: none !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1320px) {
    .vct-single-page {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

@media (max-width: 1100px) {
    .vct-homepage-magazine {
        grid-template-columns: 1fr;
    }

    .vct-homepage-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .vct-hero-grid {
        grid-template-columns: 1fr;
    }

    .vct-hero-side {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .vct-hero-side-link {
        grid-template-columns: 1fr !important;
    }

    .vct-hero-side-thumb {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 9 !important;
    }

    .vct-hero-side-img {
        width: 100% !important;
        height: 100% !important;
    }

    .vct-columns-4,
    .vct-columns-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vct-single-layout {
        grid-template-columns: 1fr;
    }

    .vct-single-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .vct-hero-main,
    .vct-hero-main-link {
        min-height: 360px;
    }

    .vct-hero-main-content {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .vct-hero-main-excerpt {
        display: none;
    }

    .vct-hero-side {
        grid-template-columns: 1fr;
    }

    .vct-hero-side-link {
        grid-template-columns: 120px minmax(0, 1fr) !important;
    }

    .vct-hero-side-thumb {
        width: 120px !important;
        height: 120px !important;
        min-height: 120px !important;
        aspect-ratio: auto !important;
    }

    .vct-hero-side-img {
        width: 120px !important;
        height: 120px !important;
    }

    .vct-single-page {
        padding-top: 24px !important;
        padding-bottom: 44px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .vct-single-article-card {
        padding: 24px !important;
        border-radius: 16px;
    }

    .vct-single-featured {
        margin-left: -24px !important;
        margin-right: -24px !important;
    }

    .vct-single-title {
        font-size: 34px;
        line-height: 1.04;
    }

    .vct-single-excerpt {
        font-size: 17px;
        line-height: 1.6;
    }

    .vct-single-content {
        font-size: 16px;
        line-height: 1.75;
    }

    .vct-single-content h2 {
        font-size: 28px;
    }

    .vct-single-content h3 {
        font-size: 23px;
    }

    .vct-single-sidebar {
        grid-template-columns: 1fr;
    }

    .vct-play-icon-large {
        width: 62px;
        height: 62px;
    }

    .vct-play-icon-large span {
        border-top-width: 12px;
        border-bottom-width: 12px;
        border-left-width: 19px;
    }
}

@media (max-width: 680px) {
    .vct-magazine-grid,
    .vct-columns-4,
    .vct-columns-3,
    .vct-columns-2 {
        grid-template-columns: 1fr;
    }

    .vct-magazine-grid {
        gap: 20px;
    }

    .vct-post-body {
        padding: 16px;
    }

    .vct-post-title {
        font-size: 18px;
    }

    .vct-section-heading h2 {
        font-size: 24px;
    }

    .vct-homepage-sidebar {
        grid-template-columns: 1fr;
    }

    .vct-sidebar-card {
        padding: 16px;
    }
}

@media (max-width: 520px) {
    .vct-hero-side-link {
        grid-template-columns: 1fr !important;
    }

    .vct-hero-side-thumb {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 9 !important;
    }

    .vct-hero-side-img {
        width: 100% !important;
        height: 100% !important;
    }

    .vct-review-sidebar-row,
    .vct-band-sidebar-row,
    .vct-comment-sidebar-row {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .vct-review-sidebar-cover,
    .vct-review-sidebar-img,
    .vct-review-sidebar-placeholder,
    .vct-band-sidebar-image,
    .vct-band-sidebar-img,
    .vct-band-sidebar-placeholder,
    .vct-comment-sidebar-image,
    .vct-comment-sidebar-img,
    .vct-comment-sidebar-placeholder {
        width: 64px !important;
        height: 64px !important;
    }

    .vct-creator-sidebar-row {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .vct-creator-sidebar-image,
    .vct-creator-sidebar-img,
    .vct-creator-sidebar-placeholder {
        width: 56px !important;
        height: 76px !important;
    }

    .vct-review-sidebar-album,
    .vct-band-sidebar-title,
    .vct-creator-sidebar-title {
        font-size: 14px;
    }

    .vct-comment-sidebar-text {
        font-size: 12px;
    }
}

/* =========================================================
   SINGLE - FINÁLNÍ ODSAZENÍ OD KRAJŮ
   ========================================================= */

.vct-single-page {
    width: 100% !important;
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-top: 34px !important;
    padding-bottom: 60px !important;
    padding-left: 44px !important;
    padding-right: 44px !important;
    box-sizing: border-box !important;
}

.vct-single-layout {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* =========================================================
   SINGLE SIDEBAR - NEJNOVĚJŠÍ NÁZORY
   ========================================================= */

.vct-single-opinions-card {
    padding: 18px;
}

.vct-single-opinions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vct-single-opinion-row {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    background: #17171b;
    border: 1px solid #25252b;
    border-radius: 12px;
    padding: 10px;
    text-decoration: none !important;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.vct-single-opinion-row:hover {
    background: #1d1d22;
    border-color: rgba(247, 56, 115, 0.75);
    transform: translateY(-2px);
}

.vct-single-opinion-image {
    width: 74px;
    height: 74px;
    border-radius: 10px;
    overflow: hidden;
    background: #101014;
    flex-shrink: 0;
}

.vct-single-opinion-img {
    width: 74px !important;
    height: 74px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

.vct-single-opinion-placeholder {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.24), transparent 40%),
        linear-gradient(135deg, #15151a, #0b0b0d);
}

.vct-single-opinion-placeholder span {
    color: rgba(255, 255, 255, 0.28);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.vct-single-opinion-content {
    min-width: 0;
}

.vct-single-opinion-title {
    color: #fff;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 7px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vct-single-opinion-date {
    color: #9a9aa3;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

.vct-single-opinion-row:hover .vct-single-opinion-title {
    color: #f73873;
}

@media (max-width: 520px) {
    .vct-single-opinion-row {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .vct-single-opinion-image,
    .vct-single-opinion-img,
    .vct-single-opinion-placeholder {
        width: 64px !important;
        height: 64px !important;
    }

    .vct-single-opinion-title {
        font-size: 14px;
    }
}

/* =========================================================
   VIPERRA VIDEO OVERLAY
   ========================================================= */

.vct-video-trigger {
    cursor: pointer;
    padding: 0;
    appearance: none;
    border-left: 0 !important;
    border-right: 0 !important;
    text-align: left;
}

.vct-video-trigger:hover .vct-single-featured-img {
    transform: scale(1.035);
    filter: brightness(1.08);
}

.vct-video-trigger .vct-single-featured-img {
    transition: transform 0.35s ease, filter 0.35s ease;
}

.vct-video-poster-label {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 5;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(5px);
}

.vct-video-trigger:hover .vct-play-icon {
    transform: translate(-50%, -50%) scale(1.08);
    background: #f73873;
    border-color: rgba(247, 56, 115, 0.95);
    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.58),
        0 0 0 9px rgba(247, 56, 115, 0.18);
}

.vct-video-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.22), transparent 32%),
        rgba(0, 0, 0, 0.86);
    backdrop-filter: blur(8px);
}

.vct-video-overlay.is-active {
    display: flex;
}

.vct-video-overlay-inner {
    position: relative;
    width: min(1120px, 100%);
    background: #050507;
    border: 1px solid #25252b;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.72);
    overflow: hidden;
}

.vct-video-overlay-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.vct-video-overlay-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.vct-video-overlay-close {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 3;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 28px;
    line-height: 36px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.vct-video-overlay-close:hover {
    background: #f73873;
    border-color: #f73873;
    transform: rotate(90deg);
}

body.vct-video-overlay-open {
    overflow: hidden;
}

@media (max-width: 760px) {
    .vct-video-overlay {
        padding: 16px;
    }

    .vct-video-overlay-inner {
        border-radius: 14px;
    }

    .vct-video-poster-label {
        bottom: 22px;
        font-size: 11px;
    }
}

/* =========================================================
   FIX VIDEO POSTERU NA SINGLE ČLÁNKU
   ========================================================= */

.vct-video-trigger.vct-single-featured {
    display: block !important;
    width: auto !important;
    aspect-ratio: 16 / 9 !important;
    min-height: 420px !important;
    max-height: 560px !important;
    overflow: hidden !important;
    background: #050507 !important;
}

.vct-video-trigger .vct-single-featured-img {
    width: 100% !important;
    height: 100% !important;
    min-height: 420px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

@media (max-width: 760px) {
    .vct-video-trigger.vct-single-featured {
        min-height: 220px !important;
        max-height: none !important;
    }

    .vct-video-trigger .vct-single-featured-img {
        min-height: 220px !important;
    }
}

/* =========================================================
   FIX VIDEO POSTERU - 100% ŠÍŘKA V KARTĚ
   ========================================================= */

.vct-single-article-card .vct-video-trigger.vct-single-featured {
    display: block !important;
    width: calc(100% + 56px) !important;
    max-width: none !important;
    margin-left: -28px !important;
    margin-right: -28px !important;
    box-sizing: border-box !important;
}

.vct-single-article-card .vct-video-trigger.vct-single-featured .vct-single-featured-img {
    width: 100% !important;
    max-width: none !important;
}

/* =========================================================
   SINGLE - JEDNOTNÁ VÝŠKA FEATURED IMAGE
   ========================================================= */

.vct-single-article-card .vct-single-featured {
    display: block !important;
    width: calc(100% + 56px) !important;
    max-width: none !important;
    margin-left: -28px !important;
    margin-right: -28px !important;
    aspect-ratio: 16 / 9 !important;
    min-height: 420px !important;
    max-height: 560px !important;
    overflow: hidden !important;
    background: #050507 !important;
    box-sizing: border-box !important;
}

.vct-single-article-card .vct-single-featured-img {
    width: 100% !important;
    height: 100% !important;
    min-height: 420px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

/* Button video poster se chová stejně jako klasický obrázek */
.vct-single-article-card button.vct-single-featured {
    border: 0 !important;
    padding: 0 !important;
    cursor: pointer;
}

@media (max-width: 760px) {
    .vct-single-article-card .vct-single-featured {
        width: calc(100% + 48px) !important;
        margin-left: -24px !important;
        margin-right: -24px !important;
        min-height: 220px !important;
        max-height: none !important;
    }

    .vct-single-article-card .vct-single-featured-img {
        min-height: 220px !important;
    }
}

/* Perex pod featured image */
.vct-single-excerpt-after-image {
    margin: 0 0 28px !important;
    padding: 20px 22px;
    background: #15151a;
    border-left: 4px solid #f73873;
    border-radius: 14px;
    color: #d8d8df;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 600;
}

/* =========================================================
   FIX AUTHOR BOX - FINÁLNÍ VERZE
   ========================================================= */

.vct-author-box {
    display: grid !important;
    grid-template-columns: 112px minmax(0, 1fr) !important;
    gap: 22px !important;
    align-items: center !important;
    margin-top: 42px !important;
    padding: 24px !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.14), transparent 34%),
        #15151a !important;
    border: 1px solid #25252b !important;
    border-radius: 18px !important;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.32) !important;
    overflow: hidden !important;
}

.vct-author-avatar {
    width: 112px !important;
    height: 112px !important;
    min-width: 112px !important;
    min-height: 112px !important;
    max-width: 112px !important;
    max-height: 112px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    background: #0d0d10 !important;
    border: 3px solid rgba(247, 56, 115, 0.75) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.48) !important;
}

.vct-author-avatar img,
.vct-author-avatar .avatar {
    width: 112px !important;
    height: 112px !important;
    min-width: 112px !important;
    min-height: 112px !important;
    max-width: 112px !important;
    max-height: 112px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    border-radius: 50% !important;
}

.vct-author-content {
    min-width: 0 !important;
}

.vct-author-label {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    margin-bottom: 7px !important;
    color: #f73873 !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
}

.vct-author-name {
    color: #fff !important;
    margin: 0 !important;
    font-size: 26px !important;
    line-height: 1.12 !important;
    font-weight: 950 !important;
    letter-spacing: -0.04em !important;
}

.vct-author-role {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    margin-top: 8px !important;
    background: rgba(247, 56, 115, 0.16) !important;
    border: 1px solid rgba(247, 56, 115, 0.38) !important;
    color: #f73873 !important;
    border-radius: 999px !important;
    padding: 6px 10px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
}

.vct-author-bio {
    color: #cfcfd6 !important;
    margin: 14px 0 0 !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    font-weight: 500 !important;
}

.vct-author-footer {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-top: 16px !important;
}

.vct-author-count {
    color: #9a9aa3 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

.vct-author-link {
    display: inline-flex !important;
    align-items: center !important;
    color: #fff !important;
    background: transparent !important;
    border: 1px solid #34343b !important;
    border-radius: 999px !important;
    padding: 9px 13px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    text-decoration: none !important;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
}

.vct-author-link:hover {
    background: #f73873 !important;
    border-color: #f73873 !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}

@media (max-width: 760px) {
    .vct-author-box {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        justify-items: center !important;
        padding: 22px !important;
    }

    .vct-author-footer {
        justify-content: center !important;
    }
}

/* =========================================================
   SINGLE - TAGY A SDÍLENÍ
   ========================================================= */

.vct-single-tags,
.vct-single-share {
    margin-top: 34px;
    padding: 22px;
    background: #15151a;
    border: 1px solid #25252b;
    border-radius: 16px;
}

.vct-single-tags-label,
.vct-single-share-label {
    color: #f73873;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.vct-single-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vct-single-tags-list a {
    display: inline-flex;
    align-items: center;
    color: #fff !important;
    background: #1c1c22;
    border: 1px solid #303039;
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    text-decoration: none !important;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.vct-single-tags-list a:hover {
    background: #f73873;
    border-color: #f73873;
    transform: translateY(-1px);
}

.vct-single-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vct-single-share-buttons a,
.vct-single-share-buttons button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    background: #1c1c22;
    border: 1px solid #303039;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.vct-single-share-buttons a:hover,
.vct-single-share-buttons button:hover {
    background: #f73873;
    border-color: #f73873;
    transform: translateY(-1px);
}

.vct-copy-link.is-copied {
    background: #16a34a !important;
    border-color: #16a34a !important;
}

@media (max-width: 520px) {
    .vct-single-tags,
    .vct-single-share {
        padding: 18px;
    }

    .vct-single-share-buttons a,
    .vct-single-share-buttons button,
    .vct-single-tags-list a {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   SINGLE - IKONOVÉ SDÍLENÍ
   ========================================================= */

.vct-single-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vct-share-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    color: #fff !important;
    background: #1c1c22 !important;
    border: 1px solid #303039 !important;
    border-radius: 999px !important;
    padding: 10px 14px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease !important;
}

.vct-share-button svg {
    width: 16px !important;
    height: 16px !important;
    fill: currentColor !important;
    flex-shrink: 0 !important;
}

.vct-share-button:hover {
    background: #f73873 !important;
    border-color: #f73873 !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}

.vct-copy-link.is-copied {
    background: #16a34a !important;
    border-color: #16a34a !important;
}

@media (max-width: 520px) {
    .vct-share-button {
        width: 100% !important;
    }
}

/* =========================================================
   SINGLE - VIPERRA KOMENTÁŘE / FEED STYLE
   ========================================================= */

.vct-comments-feed {
    margin-top: 42px !important;
    padding: 0 !important;
}

.vct-comments-header {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 18px !important;
    margin-bottom: 18px !important;
    padding: 22px 24px !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.14), transparent 34%),
        #15151a !important;
    border: 1px solid #25252b !important;
    border-radius: 18px !important;
}

.vct-comments-header span {
    display: block !important;
    color: #f73873 !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 8px !important;
}

.vct-comments-header h2 {
    color: #fff !important;
    margin: 0 !important;
    font-size: 28px !important;
    line-height: 1.1 !important;
    font-weight: 950 !important;
    letter-spacing: -0.04em !important;
}

.vct-comments-header strong {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 42px !important;
    height: 42px !important;
    padding: 0 12px !important;
    background: #f73873 !important;
    border-radius: 999px !important;
    color: #fff !important;
    font-size: 16px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
}

/* seznam */
.vct-comments-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.vct-comments-list .vct-comment-item {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.vct-comment-card {
    display: grid !important;
    grid-template-columns: 56px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 18px 0 !important;
    border-bottom: 1px solid #25252b !important;
}

.vct-comment-avatar {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    background: #0d0d10 !important;
    border: 2px solid rgba(247, 56, 115, 0.72) !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.42) !important;
}

.vct-comment-avatar img,
.vct-comment-avatar .avatar {
    width: 56px !important;
    height: 56px !important;
    max-width: 56px !important;
    max-height: 56px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    border-radius: 50% !important;
}

.vct-comment-body {
    min-width: 0 !important;
}

.vct-comment-top {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin-bottom: 7px !important;
}

.vct-comment-author-line {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    min-width: 0 !important;
}

.vct-comment-author {
    color: #fff !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
    font-weight: 950 !important;
}

.vct-comment-handle {
    color: #8f8f98 !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
}

.vct-comment-date {
    color: #8f8f98 !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.vct-comment-date:hover {
    color: #f73873 !important;
}

.vct-comment-text {
    color: #d8d8df !important;
    font-size: 15px !important;
    line-height: 1.72 !important;
    font-weight: 500 !important;
}

.vct-comment-text p {
    color: #d8d8df !important;
    margin: 0 0 12px !important;
}

.vct-comment-text p:last-child {
    margin-bottom: 0 !important;
}

.vct-comment-awaiting {
    display: inline-flex !important;
    margin-top: 12px !important;
    color: #fbbf24 !important;
    background: rgba(251, 191, 36, 0.12) !important;
    border: 1px solid rgba(251, 191, 36, 0.35) !important;
    border-radius: 999px !important;
    padding: 7px 10px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
}

.vct-comment-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 12px !important;
}

.vct-comment-actions a,
.vct-comment-actions .comment-reply-link {
    display: inline-flex !important;
    align-items: center !important;
    color: #9a9aa3 !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    text-decoration: none !important;
}

.vct-comment-actions a:hover,
.vct-comment-actions .comment-reply-link:hover {
    color: #f73873 !important;
}

/* vnořené odpovědi */
.vct-comments-list .children {
    list-style: none !important;
    margin: 0 0 0 70px !important;
    padding: 0 !important;
    position: relative !important;
}

.vct-comments-list .children::before {
    content: "" !important;
    position: absolute !important;
    left: -42px !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 2px !important;
    background: linear-gradient(to bottom, rgba(247, 56, 115, 0.55), rgba(247, 56, 115, 0.04)) !important;
    border-radius: 999px !important;
}

/* prázdný stav */
.vct-comments-empty {
    color: #cfcfd6 !important;
    background: #15151a !important;
    border: 1px solid #25252b !important;
    border-radius: 16px !important;
    padding: 20px 22px !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    font-weight: 600 !important;
}

/* navigace komentářů */
.vct-comments-feed .comment-navigation,
.vct-comments-feed .navigation {
    margin-top: 18px !important;
}

.vct-comments-feed .nav-links {
    display: flex !important;
    justify-content: space-between !important;
    gap: 12px !important;
}

.vct-comments-feed .nav-links a {
    display: inline-flex !important;
    align-items: center !important;
    color: #fff !important;
    background: #1c1c22 !important;
    border: 1px solid #303039 !important;
    border-radius: 999px !important;
    padding: 10px 14px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

.vct-comments-feed .nav-links a:hover {
    background: #f73873 !important;
    border-color: #f73873 !important;
}

/* formulář */
.vct-comments-form-card {
    margin-top: 28px !important;
    padding: 24px !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.11), transparent 34%),
        #15151a !important;
    border: 1px solid #25252b !important;
    border-radius: 18px !important;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28) !important;
}

.vct-comment-form-title {
    color: #fff !important;
    margin: 0 0 18px !important;
    font-size: 22px !important;
    line-height: 1.15 !important;
    font-weight: 950 !important;
    letter-spacing: -0.035em !important;
}

.vct-comments-form-card .comment-form {
    display: grid !important;
    gap: 14px !important;
}

.vct-comments-form-card p {
    margin: 0 !important;
}

.vct-comments-form-card label {
    display: block !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    margin-bottom: 7px !important;
}

.vct-comments-form-card textarea,
.vct-comments-form-card input[type="text"],
.vct-comments-form-card input[type="email"],
.vct-comments-form-card input[type="url"] {
    width: 100% !important;
    background: #101014 !important;
    border: 1px solid #303039 !important;
    border-radius: 14px !important;
    color: #fff !important;
    padding: 13px 15px !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    outline: none !important;
}

.vct-comments-form-card textarea {
    min-height: 140px !important;
    resize: vertical !important;
}

.vct-comments-form-card textarea:focus,
.vct-comments-form-card input[type="text"]:focus,
.vct-comments-form-card input[type="email"]:focus,
.vct-comments-form-card input[type="url"]:focus {
    border-color: rgba(247, 56, 115, 0.85) !important;
    box-shadow: 0 0 0 3px rgba(247, 56, 115, 0.12) !important;
}

.vct-comments-form-card .comment-notes,
.vct-comments-form-card .logged-in-as,
.vct-comments-form-card .must-log-in {
    color: #aaaab2 !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
}

.vct-comments-form-card .comment-notes a,
.vct-comments-form-card .logged-in-as a,
.vct-comments-form-card .must-log-in a {
    color: #f73873 !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

.vct-comment-submit,
.vct-comments-form-card input[type="submit"],
.vct-comments-form-card .submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    background: #f73873 !important;
    border: 1px solid #f73873 !important;
    border-radius: 999px !important;
    color: #fff !important;
    padding: 12px 18px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    cursor: pointer !important;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
}

.vct-comment-submit:hover,
.vct-comments-form-card input[type="submit"]:hover,
.vct-comments-form-card .submit:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: #111114 !important;
    transform: translateY(-1px) !important;
}

/* reply formulář odsazený pod komentářem */
.vct-comment-item .comment-respond {
    margin: 18px 0 18px 70px !important;
}

/* mobil */
@media (max-width: 760px) {
    .vct-comments-header {
        align-items: center !important;
        padding: 20px !important;
    }

    .vct-comments-header h2 {
        font-size: 24px !important;
    }

    .vct-comment-card {
        grid-template-columns: 46px minmax(0, 1fr) !important;
        gap: 12px !important;
        padding: 16px 0 !important;
    }

    .vct-comment-avatar,
    .vct-comment-avatar img,
    .vct-comment-avatar .avatar {
        width: 46px !important;
        height: 46px !important;
        max-width: 46px !important;
        max-height: 46px !important;
    }

    .vct-comment-top {
        display: block !important;
    }

    .vct-comment-date {
        display: inline-flex !important;
        margin-top: 4px !important;
        white-space: normal !important;
    }

    .vct-comments-list .children {
        margin-left: 32px !important;
    }

    .vct-comments-list .children::before {
        left: -20px !important;
    }

    .vct-comments-form-card {
        padding: 20px !important;
    }

    .vct-comment-item .comment-respond {
        margin-left: 0 !important;
    }
}
/* =========================================================
   SINGLE - MOBILNÍ ODSAZENÍ ČLÁNKU
   ========================================================= */

@media (max-width: 760px) {
    .vct-single-page {
        padding-left: 3px !important;
        padding-right: 3px !important;
        padding-top: 18px !important;
    }

    .vct-single-layout {
        gap: 22px !important;
    }

    .vct-single-article-card {
        border-radius: 16px !important;
    }
}

/* =========================================================
   KOMENTÁŘE - MOBILNÍ ŠÍŘKA FORMULÁŘE
   ========================================================= */

@media (max-width: 760px) {
    .vct-comments-form-card {
        padding: 14px !important;
        margin-left: -10px !important;
        margin-right: -10px !important;
        border-radius: 14px !important;
    }

    .vct-comments-form-card textarea,
    .vct-comments-form-card input[type="text"],
    .vct-comments-form-card input[type="email"],
    .vct-comments-form-card input[type="url"] {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px !important;
    }

    .vct-comments-form-card .comment-form {
        gap: 12px !important;
    }
}

/* =========================================================
   SINGLE REVIEW - ZÁKLAD
   ========================================================= */

.vct-review-page .vct-single-article-card {
    overflow: hidden !important;
}

.vct-review-header {
    padding-bottom: 26px !important;
}

.vct-review-kicker {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    margin-top: 14px !important;
    margin-bottom: 10px !important;
    color: #f73873 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
}

.vct-review-title {
    color: #fff !important;
    margin: 0 !important;
    font-size: clamp(38px, 5vw, 68px) !important;
    line-height: 0.95 !important;
    font-weight: 950 !important;
    letter-spacing: -0.065em !important;
}

.vct-review-artist {
    margin-top: 12px !important;
    color: #f73873 !important;
    font-size: 24px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    letter-spacing: -0.035em !important;
}

/* =========================================================
   SINGLE REVIEW - HERO PANEL
   ========================================================= */

.vct-review-hero {
    display: grid !important;
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr) !important;
    gap: 26px !important;
    align-items: stretch !important;
    margin: 8px 0 34px !important;
}

.vct-review-cover {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    background: #050507 !important;
    border-radius: 20px !important;
    border: 1px solid #25252b !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.46) !important;
}

.vct-review-cover-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

.vct-review-cover-placeholder {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.26), transparent 40%),
        linear-gradient(135deg, #15151a, #070709) !important;
}

.vct-review-cover-placeholder span {
    color: rgba(255, 255, 255, 0.24) !important;
    font-size: 20px !important;
    font-weight: 950 !important;
    letter-spacing: 0.18em !important;
}

.vct-review-panel {
    display: grid !important;
    grid-template-columns: 190px minmax(0, 1fr) !important;
    gap: 18px !important;
    align-items: stretch !important;
    min-width: 0 !important;
}

.vct-review-score-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 220px !important;
    padding: 22px !important;
    background:
        radial-gradient(circle at top, rgba(247, 56, 115, 0.32), transparent 46%),
        #111114 !important;
    border: 1px solid rgba(247, 56, 115, 0.48) !important;
    border-radius: 20px !important;
    box-shadow: 0 16px 40px rgba(247, 56, 115, 0.13) !important;
}

.vct-review-score-number {
    color: #fff !important;
    font-size: 58px !important;
    line-height: 0.9 !important;
    font-weight: 950 !important;
    letter-spacing: -0.07em !important;
}

.vct-review-score-number span {
    color: #f73873 !important;
    font-size: 28px !important;
    letter-spacing: -0.03em !important;
    margin-left: 2px !important;
}

.vct-review-score-verdict {
    margin-top: 12px !important;
    color: #f73873 !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.11em !important;
    text-align: center !important;
}

.vct-review-facts {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.vct-review-fact {
    min-width: 0 !important;
    padding: 15px 16px !important;
    background: #15151a !important;
    border: 1px solid #25252b !important;
    border-radius: 16px !important;
}

.vct-review-fact span {
    display: block !important;
    color: #8f8f98 !important;
    margin-bottom: 6px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
}

.vct-review-fact strong {
    display: block !important;
    color: #fff !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
    font-weight: 900 !important;
    overflow-wrap: anywhere !important;
}

/* =========================================================
   SINGLE REVIEW - HODNOCENÍ
   ========================================================= */

.vct-review-rating-section,
.vct-review-info-box {
    margin-top: 34px !important;
    padding: 24px !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.11), transparent 34%),
        #15151a !important;
    border: 1px solid #25252b !important;
    border-radius: 18px !important;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28) !important;
}

.vct-review-section-heading {
    margin-bottom: 20px !important;
}

.vct-review-section-heading span {
    display: block !important;
    color: #f73873 !important;
    margin-bottom: 7px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
}

.vct-review-section-heading h2 {
    color: #fff !important;
    margin: 0 !important;
    font-size: 28px !important;
    line-height: 1.1 !important;
    font-weight: 950 !important;
    letter-spacing: -0.045em !important;
}

.vct-review-criteria-list {
    display: grid !important;
    gap: 16px !important;
}

.vct-review-criterion-top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin-bottom: 8px !important;
}

.vct-review-criterion-top span {
    color: #fff !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
}

.vct-review-criterion-top strong {
    color: #f73873 !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
}

.vct-review-criterion-bar {
    height: 10px !important;
    overflow: hidden !important;
    background: #0d0d10 !important;
    border: 1px solid #27272d !important;
    border-radius: 999px !important;
}

.vct-review-criterion-bar span {
    display: block !important;
    height: 100% !important;
    background: linear-gradient(90deg, #f73873, #ff79a5) !important;
    border-radius: 999px !important;
}

.vct-review-user-rating {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 20px !important;
    padding: 14px 16px !important;
    background: #101014 !important;
    border: 1px solid #25252b !important;
    border-radius: 14px !important;
}

.vct-review-user-rating span {
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
}

.vct-review-user-rating strong {
    color: #f73873 !important;
    font-size: 20px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
}

.vct-review-user-rating em {
    color: #8f8f98 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-style: normal !important;
    font-weight: 800 !important;
}

.vct-review-verdict-text {
    margin-top: 20px !important;
    padding: 18px 20px !important;
    background: #101014 !important;
    border-left: 4px solid #f73873 !important;
    border-radius: 14px !important;
    color: #d8d8df !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    font-weight: 600 !important;
}

.vct-review-verdict-text p {
    margin: 0 !important;
    color: #d8d8df !important;
}

/* =========================================================
   SINGLE REVIEW - TEXT RECENZE
   ========================================================= */

.vct-review-content {
    margin-top: 36px !important;
}

.vct-review-content > *:first-child {
    margin-top: 0 !important;
}

/* =========================================================
   SINGLE REVIEW - TRACKLIST / SESTAVA
   ========================================================= */

.vct-review-info-box ol,
.vct-review-info-box ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: grid !important;
    gap: 10px !important;
}

.vct-review-info-box li {
    position: relative !important;
    color: #d8d8df !important;
    background: #101014 !important;
    border: 1px solid #25252b !important;
    border-radius: 13px !important;
    padding: 12px 14px 12px 44px !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    font-weight: 650 !important;
}

.vct-review-tracklist ol {
    counter-reset: vct-track-counter !important;
}

.vct-review-tracklist li {
    counter-increment: vct-track-counter !important;
}

.vct-review-tracklist li::before {
    content: counter(vct-track-counter) !important;
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 22px !important;
    height: 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f73873 !important;
    color: #fff !important;
    border-radius: 50% !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
}

.vct-review-lineup li::before {
    content: "♪" !important;
    position: absolute !important;
    left: 15px !important;
    top: 12px !important;
    color: #f73873 !important;
    font-size: 15px !important;
    font-weight: 950 !important;
}

/* =========================================================
   SINGLE REVIEW - RESPONSIVE
   ========================================================= */

@media (max-width: 1040px) {
    .vct-review-hero {
        grid-template-columns: 320px minmax(0, 1fr) !important;
    }

    .vct-review-panel {
        grid-template-columns: 1fr !important;
    }

    .vct-review-score-box {
        min-height: 160px !important;
    }
}

@media (max-width: 760px) {
    .vct-review-title {
        font-size: 42px !important;
    }

    .vct-review-artist {
        font-size: 21px !important;
    }

    .vct-review-hero {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .vct-review-cover {
        max-width: 360px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .vct-review-panel {
        grid-template-columns: 1fr !important;
    }

    .vct-review-facts {
        grid-template-columns: 1fr !important;
    }

    .vct-review-rating-section,
    .vct-review-info-box {
        padding: 18px !important;
        border-radius: 16px !important;
    }

    .vct-review-section-heading h2 {
        font-size: 24px !important;
    }

    .vct-review-score-number {
        font-size: 52px !important;
    }
}

/* =========================================================
   SINGLE REVIEW - OPRAVA HERO PANELU
   ========================================================= */

.vct-review-hero {
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr) !important;
    align-items: start !important;
}

.vct-review-panel {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    min-width: 0 !important;
}

.vct-review-score-box {
    min-height: 180px !important;
    width: 100% !important;
}

.vct-review-facts {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(180px, 1fr)) !important;
    gap: 12px !important;
    min-width: 0 !important;
}

.vct-review-fact {
    min-width: 0 !important;
    overflow: hidden !important;
}

.vct-review-fact strong {
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
}

.vct-review-fact span {
    white-space: nowrap !important;
}

/* Když je hlavní obsah užší, fakta půjdou pod sebe */
@media (max-width: 1120px) {
    .vct-review-facts {
        grid-template-columns: 1fr !important;
    }
}

/* Mobil */
@media (max-width: 760px) {
    .vct-review-hero {
        grid-template-columns: 1fr !important;
    }

    .vct-review-cover {
        max-width: 360px !important;
    }

    .vct-review-facts {
        grid-template-columns: 1fr !important;
    }

    .vct-review-score-box {
        min-height: 150px !important;
    }
}/* =========================================================
   SINGLE REVIEW - FULL WIDTH HEADER FINAL
   ========================================================= */

.vct-review-full-header {
    position: relative !important;
    width: 100% !important;
    max-width: 1320px !important;
    margin: 34px auto 34px !important;
    padding: 34px !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    background-color: #101014 !important;
    background-size: cover !important;
    background-position: center center !important;
    border: 1px solid #25252b !important;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42) !important;
    box-sizing: border-box !important;
}

.vct-review-full-header::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(90deg, rgba(8, 8, 10, 0.96) 0%, rgba(8, 8, 10, 0.88) 44%, rgba(8, 8, 10, 0.72) 100%),
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.24), transparent 38%) !important;
    z-index: 1 !important;
}

.vct-review-full-header-overlay {
    display: none !important;
}

.vct-review-full-header-inner {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
}

.vct-review-header-main {
    width: 100% !important;
}

.vct-review-header-text {
    max-width: 900px !important;
    margin-bottom: 30px !important;
}

.vct-review-full-header .vct-single-category {
    margin-bottom: 18px !important;
}

.vct-review-full-header .vct-review-title {
    color: #fff !important;
    margin: 0 !important;
    max-width: 980px !important;
    font-size: clamp(42px, 6vw, 78px) !important;
    line-height: 0.92 !important;
    font-weight: 950 !important;
    letter-spacing: -0.07em !important;
}

.vct-review-full-header .vct-review-artist {
    margin-top: 14px !important;
    color: #f73873 !important;
    font-size: 28px !important;
    line-height: 1.15 !important;
    font-weight: 950 !important;
    letter-spacing: -0.04em !important;
}

/* žánrové štítky pod interpretem */
.vct-review-genre-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 9px !important;
    margin-top: 16px !important;
}

.vct-review-genre-list span {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    color: #fff !important;
    background: rgba(247, 56, 115, 0.16) !important;
    border: 1px solid rgba(247, 56, 115, 0.42) !important;
    border-radius: 999px !important;
    padding: 8px 11px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
}

/* hlavní grid v headeru */
.vct-review-header-grid {
    display: grid !important;
    grid-template-columns: 330px minmax(0, 1fr) !important;
    gap: 26px !important;
    align-items: stretch !important;
}

/* cover alba */
.vct-review-full-header .vct-review-cover {
    width: 100% !important;
    max-width: 330px !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    background: #050507 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55) !important;
}

.vct-review-full-header .vct-review-cover-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

/* pravý panel */
.vct-review-header-panel {
    display: grid !important;
    grid-template-columns: 210px minmax(0, 1fr) !important;
    gap: 18px !important;
    align-items: stretch !important;
    min-width: 0 !important;
}

.vct-review-header-panel .vct-review-score-box {
    min-height: auto !important;
    height: 100% !important;
    width: auto !important;
    padding: 24px !important;
    border-radius: 20px !important;
    background:
        radial-gradient(circle at top, rgba(247, 56, 115, 0.34), transparent 48%),
        rgba(17, 17, 20, 0.88) !important;
    border: 1px solid rgba(247, 56, 115, 0.52) !important;
}

.vct-review-header-panel .vct-review-score-number {
    font-size: 62px !important;
}

.vct-review-header-panel .vct-review-facts {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    min-width: 0 !important;
}

.vct-review-header-panel .vct-review-fact {
    min-width: 0 !important;
    padding: 15px 16px !important;
    background: rgba(17, 17, 20, 0.86) !important;
    border: 1px solid rgba(255, 255, 255, 0.11) !important;
    border-radius: 15px !important;
    overflow: hidden !important;
}

.vct-review-header-panel .vct-review-fact span {
    display: block !important;
    color: #a2a2ad !important;
    margin-bottom: 7px !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    white-space: nowrap !important;
}

.vct-review-header-panel .vct-review-fact strong {
    display: block !important;
    color: #fff !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
    font-weight: 900 !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
}

/* tracklist v headeru */
.vct-review-header-tracklist {
    margin-top: 30px !important;
    padding: 24px !important;
    background: rgba(17, 17, 20, 0.84) !important;
    border: 1px solid rgba(255, 255, 255, 0.11) !important;
    border-radius: 18px !important;
}

.vct-review-header-tracklist .vct-review-section-heading {
    margin-bottom: 18px !important;
}

.vct-review-header-tracklist ol {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    counter-reset: vct-review-track !important;
}

.vct-review-header-tracklist li {
    position: relative !important;
    counter-increment: vct-review-track !important;
    color: #d8d8df !important;
    background: rgba(5, 5, 7, 0.52) !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    border-radius: 13px !important;
    padding: 12px 14px 12px 44px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    font-weight: 750 !important;
}

.vct-review-header-tracklist li::before {
    content: counter(vct-review-track) !important;
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 22px !important;
    height: 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f73873 !important;
    color: #fff !important;
    border-radius: 50% !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
}

/* layout pod headerem */
.vct-review-content-layout {
    margin-top: 0 !important;
}

/* vypnutí starého hero stylu, kdyby zůstal někde ve specifitě */
.vct-review-page .vct-review-hero {
    display: none !important;
}

/* responsive */
@media (max-width: 1040px) {
    .vct-review-header-grid {
        grid-template-columns: 280px minmax(0, 1fr) !important;
    }

    .vct-review-full-header .vct-review-cover {
        max-width: 280px !important;
    }

    .vct-review-header-panel {
        grid-template-columns: 1fr !important;
    }

    .vct-review-header-panel .vct-review-score-box {
        min-height: 150px !important;
    }

    .vct-review-header-panel .vct-review-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 760px) {
    .vct-review-full-header {
        margin-top: 18px !important;
        padding: 20px !important;
        border-radius: 18px !important;
    }

    .vct-review-full-header .vct-review-title {
        font-size: 44px !important;
    }

    .vct-review-full-header .vct-review-artist {
        font-size: 22px !important;
    }

    .vct-review-header-grid {
        grid-template-columns: 1fr !important;
    }

    .vct-review-full-header .vct-review-cover {
        max-width: 320px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .vct-review-header-panel {
        grid-template-columns: 1fr !important;
    }

    .vct-review-header-panel .vct-review-facts {
        grid-template-columns: 1fr !important;
    }

    .vct-review-header-tracklist {
        padding: 18px !important;
    }

    .vct-review-header-tracklist ol {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   SINGLE REVIEW - SKRYTÝ H1 NADPIS
   ========================================================= */

.vct-review-title-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.vct-review-header-text {
    margin-bottom: 24px !important;
}

/* =========================================================
   SINGLE REVIEW - MOBILNÍ TRACKLIST POD HEADEREM
   ========================================================= */

.vct-review-mobile-tracklist {
    display: none !important;
}

@media (max-width: 760px) {
    .vct-review-mobile-tracklist {
        display: block !important;
        width: 100% !important;
        max-width: 1320px !important;
        margin: -8px auto 24px !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
        box-sizing: border-box !important;
    }

    .vct-review-mobile-tracklist .vct-review-section-heading {
        margin-bottom: 16px !important;
        padding: 18px 18px 0 !important;
    }

    .vct-review-mobile-tracklist {
        background: #15151a !important;
        border: 1px solid #25252b !important;
        border-radius: 18px !important;
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    .vct-review-mobile-tracklist ol {
        margin: 0 !important;
        padding: 0 18px 0 !important;
        list-style: none !important;
        display: grid !important;
        gap: 9px !important;
        counter-reset: vct-mobile-track !important;
    }

    .vct-review-mobile-tracklist li {
        position: relative !important;
        counter-increment: vct-mobile-track !important;
        min-height: 38px !important;
        display: flex !important;
        align-items: center !important;
        color: #d8d8df !important;
        background: #101014 !important;
        border: 1px solid #25252b !important;
        border-radius: 12px !important;
        padding: 10px 12px 10px 42px !important;
        font-size: 13px !important;
        line-height: 1.35 !important;
        font-weight: 800 !important;
    }

    .vct-review-mobile-tracklist li::before {
        content: counter(vct-mobile-track) !important;
        position: absolute !important;
        left: 11px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 22px !important;
        height: 22px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #f73873 !important;
        color: #fff !important;
        border-radius: 50% !important;
        font-size: 11px !important;
        line-height: 1 !important;
        font-weight: 950 !important;
    }
}

/* =========================================================
   SINGLE REVIEW - TRACKLIST V SIDEBARU
   ========================================================= */

.vct-review-sidebar-tracklist-card {
    padding: 18px !important;
}

.vct-review-sidebar-tracklist {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: grid !important;
    gap: 9px !important;
    counter-reset: vct-sidebar-track !important;
}

.vct-review-sidebar-tracklist li {
    position: relative !important;
    counter-increment: vct-sidebar-track !important;
    min-height: 38px !important;
    display: flex !important;
    align-items: center !important;
    color: #d8d8df !important;
    background: #17171b !important;
    border: 1px solid #25252b !important;
    border-radius: 12px !important;
    padding: 10px 12px 10px 42px !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
}

.vct-review-sidebar-tracklist li::before {
    content: counter(vct-sidebar-track) !important;
    position: absolute !important;
    left: 11px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 22px !important;
    height: 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f73873 !important;
    color: #fff !important;
    border-radius: 50% !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
}

.vct-review-sidebar-tracklist li:hover {
    border-color: rgba(247, 56, 115, 0.65) !important;
    background: #1d1d22 !important;
}

/* Na mobilu tracklist v sidebaru schováme,
   protože mobilní verze je už pod headerem. */
@media (max-width: 760px) {
    .vct-review-sidebar-tracklist-card {
        display: none !important;
    }
}

/* =========================================================
   SINGLE REVIEW - HODNOCENÍ JAKO FACT BOX
   ========================================================= */

.vct-review-fact-score strong {
    color: #f73873 !important;
    font-size: 24px !important;
    line-height: 1.1 !important;
    font-weight: 950 !important;
    letter-spacing: -0.04em !important;
}

.vct-review-fact-score strong em {
    display: block !important;
    margin-top: 7px !important;
    color: #fff !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-style: normal !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
}

/* =========================================================
   SINGLE REVIEW - HEADER 3 SLOUPCE + FOTO KAPELY
   ========================================================= */

.vct-review-header-grid {
    display: grid !important;
    grid-template-columns: 330px minmax(420px, 560px) minmax(300px, 1fr) !important;
    gap: 26px !important;
    align-items: stretch !important;
    min-height: 330px !important;
}

.vct-review-header-panel {
    display: block !important;
    min-width: 0 !important;
}

.vct-review-header-panel .vct-review-facts {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(190px, 1fr)) !important;
    gap: 12px !important;
    height: 100% !important;
    align-content: stretch !important;
}

.vct-review-header-panel .vct-review-fact {
    min-height: 98px !important;
    padding: 18px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.vct-review-header-panel .vct-review-fact strong {
    font-size: 16px !important;
    line-height: 1.35 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
}

.vct-review-fact-score strong {
    font-size: 26px !important;
}

.vct-review-band-photo {
    position: relative !important;
    min-height: 330px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    background-size: cover !important;
    background-position: center center !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.45) !important;
}

.vct-review-band-photo::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(90deg,
            rgba(8, 8, 10, 0.96) 0%,
            rgba(8, 8, 10, 0.62) 34%,
            rgba(8, 8, 10, 0.18) 72%,
            rgba(8, 8, 10, 0.42) 100%
        ),
        radial-gradient(circle at left center, rgba(247, 56, 115, 0.20), transparent 42%) !important;
    z-index: 1 !important;
}

.vct-review-band-photo::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(0deg, rgba(8, 8, 10, 0.54), transparent 42%),
        linear-gradient(180deg, rgba(8, 8, 10, 0.45), transparent 36%) !important;
    z-index: 2 !important;
}

.vct-review-band-photo-fade {
    position: absolute !important;
    inset: 0 !important;
    z-index: 3 !important;
    background: linear-gradient(90deg, #08080a 0%, rgba(8, 8, 10, 0.62) 24%, rgba(8, 8, 10, 0) 62%) !important;
    pointer-events: none !important;
}

/* Když nebude fotka kapely, header se nerozbije */
.vct-review-header-grid:not(:has(.vct-review-band-photo)) {
    grid-template-columns: 330px minmax(420px, 1fr) !important;
}

/* tablet */
@media (max-width: 1180px) {
    .vct-review-header-grid {
        grid-template-columns: 300px minmax(0, 1fr) !important;
    }

    .vct-review-band-photo {
        display: none !important;
    }

    .vct-review-header-panel .vct-review-facts {
        grid-template-columns: repeat(2, minmax(180px, 1fr)) !important;
    }
}

/* mobil */
@media (max-width: 760px) {
    .vct-review-header-grid {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }

    .vct-review-header-panel .vct-review-facts {
        grid-template-columns: 1fr !important;
    }

    .vct-review-header-panel .vct-review-fact {
        min-height: auto !important;
        padding: 15px 16px !important;
    }

    .vct-review-band-photo {
        display: none !important;
    }
}

/* =========================================================
   SINGLE REVIEW - FOTO KAPELY NA ŠÍŘKU + REKAPITULACE
   ========================================================= */

.vct-review-right-visual {
    display: grid !important;
    grid-template-rows: minmax(220px, 1fr) auto !important;
    gap: 14px !important;
    min-width: 0 !important;
}

.vct-review-right-visual .vct-review-band-photo {
    min-height: 220px !important;
    height: 100% !important;
    border-radius: 20px !important;
    background-size: cover !important;
    background-position: center center !important;
}

.vct-review-right-visual .vct-review-band-photo::before {
    background:
        linear-gradient(90deg,
            rgba(8, 8, 10, 0.82) 0%,
            rgba(8, 8, 10, 0.38) 38%,
            rgba(8, 8, 10, 0.12) 72%,
            rgba(8, 8, 10, 0.58) 100%
        ),
        radial-gradient(circle at left center, rgba(247, 56, 115, 0.18), transparent 46%) !important;
}

.vct-review-right-visual .vct-review-band-photo-fade {
    background:
        linear-gradient(90deg,
            #08080a 0%,
            rgba(8, 8, 10, 0.62) 24%,
            rgba(8, 8, 10, 0.08) 68%
        ) !important;
}

/* Rychlá rekapitulace místo hodnocení ve facts */
.vct-review-fact-recap {
    grid-column: span 2 !important;
    position: relative !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.16), transparent 42%),
        rgba(17, 17, 20, 0.9) !important;
    border-color: rgba(247, 56, 115, 0.38) !important;
}

.vct-review-fact-recap::before {
    content: "“" !important;
    position: absolute !important;
    left: 16px !important;
    top: 8px !important;
    color: rgba(247, 56, 115, 0.32) !important;
    font-size: 54px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
}

.vct-review-fact-recap strong {
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    padding-left: 28px !important;
    color: #fff !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
    font-weight: 850 !important;
}

/* Hodnocení pod fotkou kapely */
.vct-review-header-score-wide {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    min-height: 92px !important;
    padding: 20px 22px !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.26), transparent 42%),
        rgba(17, 17, 20, 0.9) !important;
    border: 1px solid rgba(247, 56, 115, 0.52) !important;
    border-radius: 20px !important;
    box-shadow: 0 14px 36px rgba(247, 56, 115, 0.12) !important;
}

.vct-review-header-score-wide span {
    display: block !important;
    color: #a2a2ad !important;
    margin-bottom: 7px !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
}

.vct-review-header-score-wide strong {
    display: block !important;
    color: #fff !important;
    font-size: 44px !important;
    line-height: 0.9 !important;
    font-weight: 950 !important;
    letter-spacing: -0.06em !important;
}

.vct-review-header-score-wide em {
    display: inline-flex !important;
    align-items: center !important;
    color: #f73873 !important;
    background: rgba(247, 56, 115, 0.14) !important;
    border: 1px solid rgba(247, 56, 115, 0.45) !important;
    border-radius: 999px !important;
    padding: 8px 11px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-style: normal !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
}

/* Přepsání starého 3sloupcového headeru */
.vct-review-header-grid {
    grid-template-columns: 330px minmax(440px, 560px) minmax(360px, 1fr) !important;
}

.vct-review-header-panel .vct-review-facts {
    grid-template-columns: repeat(2, minmax(200px, 1fr)) !important;
}

/* Tablet */
@media (max-width: 1180px) {
    .vct-review-header-grid {
        grid-template-columns: 300px minmax(0, 1fr) !important;
    }

    .vct-review-right-visual {
        display: none !important;
    }

    .vct-review-fact-recap {
        grid-column: span 2 !important;
    }
}

/* Mobil */
@media (max-width: 760px) {
    .vct-review-header-grid {
        grid-template-columns: 1fr !important;
    }

    .vct-review-right-visual {
        display: none !important;
    }

    .vct-review-fact-recap {
        grid-column: auto !important;
    }

    .vct-review-fact-recap strong {
        padding-left: 22px !important;
        font-size: 15px !important;
    }
}

/* =========================================================
   SINGLE REVIEW - LEPŠÍ ALBUM COVER CARD
   ========================================================= */

.vct-review-full-header .vct-review-cover {
    width: 100% !important;
    max-width: 330px !important;
    aspect-ratio: auto !important;
    min-height: 330px !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 14px !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.16), transparent 38%),
        #08080a !important;
    border-radius: 22px !important;
    border: 1px solid rgba(255, 255, 255, 0.11) !important;
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.55),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03) !important;
    overflow: hidden !important;
}

.vct-review-full-header .vct-review-cover-img {
    width: 100% !important;
    height: auto !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    border-radius: 16px !important;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.42) !important;
}

/* když je cover užší / vyšší, karta pořád drží pěkný tvar */
.vct-review-header-grid {
    align-items: stretch !important;
}

.vct-review-cover::after {
    content: "" !important;
    position: absolute !important;
    inset: 14px !important;
    border-radius: 16px !important;
    pointer-events: none !important;
    box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.18) !important;
}

/* =========================================================
   SINGLE REVIEW - HEADER JAKO FULL BANNER S PRŮHLEDNÝMI BOXY
   ========================================================= */

.vct-review-full-header {
    position: relative !important;
    background-size: cover !important;
    background-position: center center !important;
    background-color: #08080a !important;
}

.vct-review-full-header::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background:
        linear-gradient(90deg,
            rgba(8, 8, 10, 0.96) 0%,
            rgba(8, 8, 10, 0.78) 34%,
            rgba(8, 8, 10, 0.48) 68%,
            rgba(8, 8, 10, 0.82) 100%
        ),
        radial-gradient(circle at left center, rgba(247, 56, 115, 0.24), transparent 42%) !important;
}

.vct-review-full-header::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background:
        linear-gradient(0deg, rgba(8, 8, 10, 0.7), transparent 42%),
        linear-gradient(180deg, rgba(8, 8, 10, 0.55), transparent 38%) !important;
    pointer-events: none !important;
}

.vct-review-full-header-inner {
    position: relative !important;
    z-index: 3 !important;
}

/* nový header grid: obal + široká fakta */
.vct-review-header-grid {
    display: grid !important;
    grid-template-columns: 330px minmax(0, 1fr) !important;
    gap: 28px !important;
    align-items: stretch !important;
    min-height: 330px !important;
}

/* pravý panel už nesmí dělat třetí sloupec */
.vct-review-right-visual,
.vct-review-band-photo,
.vct-review-header-score-wide {
    display: none !important;
}

.vct-review-header-panel {
    display: flex !important;
    align-items: stretch !important;
    min-width: 0 !important;
}

.vct-review-header-panel .vct-review-facts {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(240px, 1fr)) !important;
    gap: 14px !important;
    align-content: stretch !important;
}

/* průhledné skleněné boxy */
.vct-review-header-panel .vct-review-fact {
    min-height: 104px !important;
    padding: 20px 22px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    background: rgba(12, 12, 16, 0.58) !important;
    border: 1px solid rgba(255, 255, 255, 0.13) !important;
    border-radius: 18px !important;
    backdrop-filter: blur(10px) !important;
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.025) !important;
}

.vct-review-header-panel .vct-review-fact span {
    color: #b9b9c2 !important;
    margin-bottom: 8px !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
}

.vct-review-header-panel .vct-review-fact strong {
    color: #fff !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    font-weight: 950 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}

/* obal CD jako neprůhledná pevná karta */
.vct-review-full-header .vct-review-cover {
    width: 100% !important;
    max-width: 330px !important;
    min-height: 330px !important;
    height: 100% !important;
    padding: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.18), transparent 38%),
        #08080a !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 22px !important;
    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.62),
        inset 0 0 0 1px rgba(255, 255, 255, 0.035) !important;
    backdrop-filter: none !important;
    overflow: hidden !important;
}

.vct-review-full-header .vct-review-cover-img {
    width: 100% !important;
    height: auto !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    border-radius: 16px !important;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.46) !important;
}

/* hodnocení jako normální fact box vedle délky */
.vct-review-fact-score {
    border-color: rgba(247, 56, 115, 0.48) !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.22), transparent 44%),
        rgba(12, 12, 16, 0.62) !important;
}

.vct-review-fact-score strong {
    color: #fff !important;
    font-size: 34px !important;
    line-height: 0.95 !important;
    font-weight: 950 !important;
    letter-spacing: -0.055em !important;
}

.vct-review-fact-score strong em {
    display: inline-flex !important;
    vertical-align: middle !important;
    margin-left: 12px !important;
    color: #f73873 !important;
    background: rgba(247, 56, 115, 0.14) !important;
    border: 1px solid rgba(247, 56, 115, 0.45) !important;
    border-radius: 999px !important;
    padding: 7px 10px !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-style: normal !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
}

/* rychlá rekapitulace z headeru pryč */
.vct-review-fact-recap {
    display: none !important;
}

/* tablet */
@media (max-width: 1180px) {
    .vct-review-header-grid {
        grid-template-columns: 300px minmax(0, 1fr) !important;
    }

    .vct-review-full-header .vct-review-cover {
        max-width: 300px !important;
        min-height: 300px !important;
    }

    .vct-review-header-panel .vct-review-facts {
        grid-template-columns: repeat(2, minmax(180px, 1fr)) !important;
    }
}

/* mobil */
@media (max-width: 760px) {
    .vct-review-full-header {
        background-position: center top !important;
    }

    .vct-review-header-grid {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }

    .vct-review-full-header .vct-review-cover {
        max-width: 320px !important;
        min-height: auto !important;
        height: auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .vct-review-header-panel .vct-review-facts {
        grid-template-columns: 1fr !important;
    }

    .vct-review-header-panel .vct-review-fact {
        min-height: auto !important;
        padding: 16px 17px !important;
    }

    .vct-review-fact-score strong {
        font-size: 30px !important;
    }

    .vct-review-fact-score strong em {
        display: flex !important;
        width: fit-content !important;
        margin-left: 0 !important;
        margin-top: 9px !important;
    }
}

/* =========================================================
   SINGLE REVIEW - HEADER FOTO VÍC VYNIKNE
   ========================================================= */

/* celkové ztmavení headeru bude jemnější */
.vct-review-full-header::before {
    background:
        linear-gradient(90deg,
            rgba(8, 8, 10, 0.88) 0%,
            rgba(8, 8, 10, 0.58) 34%,
            rgba(8, 8, 10, 0.26) 68%,
            rgba(8, 8, 10, 0.50) 100%
        ),
        radial-gradient(circle at left center, rgba(247, 56, 115, 0.14), transparent 42%) !important;
}

.vct-review-full-header::after {
    background:
        linear-gradient(0deg, rgba(8, 8, 10, 0.42), transparent 42%),
        linear-gradient(180deg, rgba(8, 8, 10, 0.30), transparent 38%) !important;
}

/* informační boxy budou průhlednější a méně zamlžené */
.vct-review-header-panel .vct-review-fact {
    background: rgba(8, 8, 10, 0.38) !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    backdrop-filter: blur(3px) !important;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.16),
        inset 0 0 0 1px rgba(255, 255, 255, 0.015) !important;
}

/* hover lehce zvýrazní box, ale fotku pořád nesežere */
.vct-review-header-panel .vct-review-fact:hover {
    background: rgba(8, 8, 10, 0.48) !important;
    border-color: rgba(247, 56, 115, 0.26) !important;
}

/* text zůstane čitelný */
.vct-review-header-panel .vct-review-fact span {
    color: rgba(255, 255, 255, 0.62) !important;
}

.vct-review-header-panel .vct-review-fact strong {
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45) !important;
}

/* hodnocení taky průhlednější */
.vct-review-fact-score {
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.14), transparent 44%),
        rgba(8, 8, 10, 0.42) !important;
    border-color: rgba(247, 56, 115, 0.34) !important;
}

.vct-review-fact-score strong em {
    background: rgba(247, 56, 115, 0.10) !important;
    border-color: rgba(247, 56, 115, 0.30) !important;
}

/* =========================================================
   SINGLE REVIEW - HODNOCENÍ PODLE PROCENT
   ========================================================= */

/* základ */
.vct-review-fact-score {
    position: relative !important;
    overflow: hidden !important;
}

/* TOP / vysoké hodnocení */
/* TOP / vysoké hodnocení - Viperra růžová */
.vct-review-fact-score.score-high {
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.20), transparent 45%),
        rgba(8, 8, 10, 0.42) !important;
    border-color: rgba(247, 56, 115, 0.42) !important;
}

.vct-review-fact-score.score-high strong {
    color: #f73873 !important;
}

.vct-review-fact-score.score-high strong em {
    color: #f73873 !important;
    background: rgba(247, 56, 115, 0.12) !important;
    border-color: rgba(247, 56, 115, 0.38) !important;
}

/* STŘEDNÍ hodnocení */
.vct-review-fact-score.score-mid {
    background:
        radial-gradient(circle at top left, rgba(250, 204, 21, 0.22), transparent 45%),
        rgba(8, 8, 10, 0.42) !important;
    border-color: rgba(250, 204, 21, 0.45) !important;
}

.vct-review-fact-score.score-mid strong {
    color: #facc15 !important;
}

.vct-review-fact-score.score-mid strong em {
    color: #facc15 !important;
    background: rgba(250, 204, 21, 0.12) !important;
    border-color: rgba(250, 204, 21, 0.38) !important;
}

/* NÍZKÉ hodnocení */
.vct-review-fact-score.score-low {
    background:
        radial-gradient(circle at top left, rgba(239, 68, 68, 0.22), transparent 45%),
        rgba(8, 8, 10, 0.42) !important;
    border-color: rgba(239, 68, 68, 0.45) !important;
}

.vct-review-fact-score.score-low strong {
    color: #ef4444 !important;
}

.vct-review-fact-score.score-low strong em {
    color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.12) !important;
    border-color: rgba(239, 68, 68, 0.38) !important;
}

/* =========================================================
   VIPERRA - ŠIRŠÍ SIDEBAR DESKTOP
   ========================================================= */

@media (min-width: 1025px) {

    /* Homepage sidebar */
    .vct-homepage-magazine {
        grid-template-columns: minmax(0, 1fr) 400px !important;
        gap: 34px !important;
    }

    /* Single články + recenze sidebar */
    .vct-single-layout {
        grid-template-columns: minmax(0, 1fr) 400px !important;
        gap: 34px !important;
    }

    .vct-single-sidebar,
    .vct-homepage-sidebar {
        width: 400px !important;
        max-width: 400px !important;
    }
}

/* =========================================================
   VIPERRA - SIDEBAR NADPISY BEZ IKON + BAREVNÝ PRUH
   ========================================================= */

.vct-sidebar-heading {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    margin-bottom: 18px !important;
    padding-left: 18px !important;
}

/* schová původní ikonky před nadpisem */
.vct-sidebar-heading > span {
    display: none !important;
}

/* fancy barevný pruh před nadpisem */
.vct-sidebar-heading::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 6px !important;
    height: 34px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #f73873 0%, #ff7aa5 100%) !important;
    box-shadow: 0 0 18px rgba(247, 56, 115, 0.35) !important;
}

.vct-sidebar-heading h3 {
    margin: 0 !important;
    color: #fff !important;
    font-size: 22px !important;
    line-height: 1.1 !important;
    font-weight: 950 !important;
    letter-spacing: -0.04em !important;
}

/* menší varianta na mobilu */
@media (max-width: 760px) {
    .vct-sidebar-heading {
        padding-left: 16px !important;
    }

    .vct-sidebar-heading::before {
        width: 5px !important;
        height: 30px !important;
    }

    .vct-sidebar-heading h3 {
        font-size: 20px !important;
    }
}

/* =========================================================
   VIPERRA - SIDEBAR NADPISY BEZ SPODNÍ LINKY
   ========================================================= */

.vct-sidebar-heading {
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
}

.vct-sidebar-heading::after {
    display: none !important;
}

/* =========================================================
   SINGLE REVIEW - ČISTÝ HEADER BEZ FOTO POZADÍ
   ========================================================= */

.vct-review-full-header {
    background-image: none !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.045), transparent 34%),
        #101014 !important;
}

.vct-review-full-header::before {
    background:
        linear-gradient(135deg, rgba(247, 56, 115, 0.10), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 46%) !important;
}

.vct-review-full-header::after {
    display: none !important;
}

.vct-review-header-panel .vct-review-fact {
    background: #15151a !important;
    border: 1px solid #25252b !important;
    backdrop-filter: none !important;
}

.vct-review-header-panel .vct-review-fact:hover {
    background: #1a1a20 !important;
    border-color: rgba(247, 56, 115, 0.32) !important;
}

.vct-review-header-panel .vct-review-fact span {
    color: #9a9aa3 !important;
}

.vct-review-header-panel .vct-review-fact strong {
    text-shadow: none !important;
}

/* =========================================================
   SINGLE REVIEW - ŽÁNRY UVNITŘ HEADERU
   ========================================================= */

.vct-review-genres-under-header {
    display: none !important;
}

.vct-review-genres-in-header {
    margin-top: 24px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.vct-review-genres-in-header .vct-review-genre-list {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 9px !important;
    width: 100% !important;
}

.vct-review-genres-in-header .vct-review-genre-list span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    background: rgba(247, 56, 115, 0.14) !important;
    border: 1px solid rgba(247, 56, 115, 0.65) !important;
    border-radius: 999px !important;
    padding: 8px 13px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    white-space: nowrap !important;
}

@media (max-width: 760px) {
    .vct-review-genres-in-header {
        margin-top: 18px !important;
        padding-top: 16px !important;
    }

    .vct-review-genres-in-header .vct-review-genre-list {
        justify-content: center !important;
        gap: 7px !important;
    }

    .vct-review-genres-in-header .vct-review-genre-list span {
        font-size: 10px !important;
        padding: 7px 10px !important;
    }
}

/* =========================================================
   SINGLE REVIEW - ŽÁNRY JAKO BOX V HEADERU
   ========================================================= */

.vct-review-genres-in-header,
.vct-review-genres-under-header {
    display: none !important;
}

.vct-review-fact-genres {
    grid-column: span 2 !important;
    min-height: auto !important;
    align-items: flex-start !important;
}

.vct-review-fact-genres .vct-review-genre-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 9px !important;
    margin-top: 2px !important;
}

.vct-review-fact-genres .vct-review-genre-list em {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    background: rgba(247, 56, 115, 0.14) !important;
    border: 1px solid rgba(247, 56, 115, 0.65) !important;
    border-radius: 999px !important;
    padding: 8px 13px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-style: normal !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    white-space: nowrap !important;
}

@media (max-width: 760px) {
    .vct-review-fact-genres {
        grid-column: auto !important;
    }

    .vct-review-fact-genres .vct-review-genre-list {
        gap: 7px !important;
    }

    .vct-review-fact-genres .vct-review-genre-list em {
        font-size: 10px !important;
        padding: 7px 10px !important;
    }
}

/* SINGLE REVIEW - KOMPAKTNĚJŠÍ ŽÁNR BOX */
.vct-review-fact-genres {
    min-height: 78px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}

/* =========================================================
   SINGLE REVIEW - KOMPAKTNĚJŠÍ ŽÁNR BOX FIX
   ========================================================= */

.vct-review-header-panel .vct-review-facts .vct-review-fact.vct-review-fact-genres {
    min-height: 76px !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    justify-content: center !important;
}

.vct-review-header-panel .vct-review-facts .vct-review-fact.vct-review-fact-genres span {
    margin-bottom: 9px !important;
}

.vct-review-header-panel .vct-review-facts .vct-review-fact.vct-review-fact-genres .vct-review-genre-list {
    margin-top: 0 !important;
}

/* =========================================================
   SINGLE REVIEW - HODNOCENÍ GRAFICKÝ GRADIENT BOX
   ========================================================= */

.vct-review-header-panel .vct-review-fact.vct-review-fact-score {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    isolation: isolate !important;
}

/* jemná textura / světlo uvnitř boxu */
.vct-review-header-panel .vct-review-fact.vct-review-fact-score::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: -1 !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

.vct-review-header-panel .vct-review-fact.vct-review-fact-score::after {
    content: "" !important;
    position: absolute !important;
    right: -34px !important;
    top: -34px !important;
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    z-index: -1 !important;
    opacity: 0.32 !important;
    pointer-events: none !important;
}

/* Vysoké hodnocení - Viperra růžová */
.vct-review-header-panel .vct-review-fact.vct-review-fact-score.score-high {
    background:
        linear-gradient(135deg, rgba(247, 56, 115, 0.22), rgba(8, 8, 10, 0.44) 54%, rgba(247, 56, 115, 0.10)),
        rgba(8, 8, 10, 0.46) !important;
    border-color: rgba(247, 56, 115, 0.52) !important;
    box-shadow:
        0 18px 42px rgba(247, 56, 115, 0.12),
        inset 0 0 0 1px rgba(247, 56, 115, 0.08) !important;
}

.vct-review-header-panel .vct-review-fact.vct-review-fact-score.score-high::before {
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.28), transparent 46%),
        radial-gradient(circle at bottom right, rgba(247, 56, 115, 0.16), transparent 44%) !important;
}

.vct-review-header-panel .vct-review-fact.vct-review-fact-score.score-high::after {
    background: #f73873 !important;
    filter: blur(18px) !important;
}

/* Střední hodnocení - žlutá */
.vct-review-header-panel .vct-review-fact.vct-review-fact-score.score-mid {
    background:
        linear-gradient(135deg, rgba(250, 204, 21, 0.22), rgba(8, 8, 10, 0.44) 54%, rgba(250, 204, 21, 0.10)),
        rgba(8, 8, 10, 0.46) !important;
    border-color: rgba(250, 204, 21, 0.52) !important;
    box-shadow:
        0 18px 42px rgba(250, 204, 21, 0.10),
        inset 0 0 0 1px rgba(250, 204, 21, 0.08) !important;
}

.vct-review-header-panel .vct-review-fact.vct-review-fact-score.score-mid::before {
    background:
        radial-gradient(circle at top left, rgba(250, 204, 21, 0.28), transparent 46%),
        radial-gradient(circle at bottom right, rgba(250, 204, 21, 0.16), transparent 44%) !important;
}

.vct-review-header-panel .vct-review-fact.vct-review-fact-score.score-mid::after {
    background: #facc15 !important;
    filter: blur(18px) !important;
}

/* Nízké hodnocení - červená */
.vct-review-header-panel .vct-review-fact.vct-review-fact-score.score-low {
    background:
        linear-gradient(135deg, rgba(239, 68, 68, 0.22), rgba(8, 8, 10, 0.44) 54%, rgba(239, 68, 68, 0.10)),
        rgba(8, 8, 10, 0.46) !important;
    border-color: rgba(239, 68, 68, 0.52) !important;
    box-shadow:
        0 18px 42px rgba(239, 68, 68, 0.10),
        inset 0 0 0 1px rgba(239, 68, 68, 0.08) !important;
}

.vct-review-header-panel .vct-review-fact.vct-review-fact-score.score-low::before {
    background:
        radial-gradient(circle at top left, rgba(239, 68, 68, 0.28), transparent 46%),
        radial-gradient(circle at bottom right, rgba(239, 68, 68, 0.16), transparent 44%) !important;
}

.vct-review-header-panel .vct-review-fact.vct-review-fact-score.score-low::after {
    background: #ef4444 !important;
    filter: blur(18px) !important;
}

/* číslo hodnocení */
.vct-review-header-panel .vct-review-fact.vct-review-fact-score strong {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: #fff !important;
    font-size: 38px !important;
    line-height: 0.95 !important;
    font-weight: 950 !important;
    letter-spacing: -0.06em !important;
}

/* badge verdiktu */
.vct-review-header-panel .vct-review-fact.vct-review-fact-score strong em {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    margin: 0 !important;
    border-radius: 999px !important;
    padding: 8px 11px !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-style: normal !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
}

/* barva badge podle skóre */
.vct-review-fact-score.score-high strong em {
    color: #fff !important;
    background: #f73873 !important;
    border: 1px solid #f73873 !important;
}

.vct-review-fact-score.score-mid strong em {
    color: #111114 !important;
    background: #facc15 !important;
    border: 1px solid #facc15 !important;
}

.vct-review-fact-score.score-low strong em {
    color: #fff !important;
    background: #ef4444 !important;
    border: 1px solid #ef4444 !important;
}

/* label HODNOCENÍ */
.vct-review-header-panel .vct-review-fact.vct-review-fact-score > span {
    position: relative !important;
    z-index: 2 !important;
}

/* mobil */
@media (max-width: 760px) {
    .vct-review-header-panel .vct-review-fact.vct-review-fact-score strong {
        font-size: 32px !important;
        flex-wrap: wrap !important;
    }
}

/* =========================================================
   SINGLE REVIEW - ODSAZENÍ OD HLAVNÍ NAVIGACE
   ========================================================= */

.vct-review-page {
    padding-top: 18px !important;
}

.vct-review-full-header {
    margin-top: 0 !important;
}

/* =========================================================
   SINGLE REVIEW - STEJNÉ ODSAZENÍ JAKO ČLÁNEK
   ========================================================= */

.vct-review-page {
    padding-top: 34px !important;
}

.vct-review-full-header {
    margin-top: 0 !important;
}

/* =========================================================
   SINGLE REVIEW - SESTAVA NAD TEXTEM RECENZE
   ========================================================= */

.vct-review-lineup-before-content {
    margin-top: 0 !important;
    margin-bottom: 34px !important;
}

/* =========================================================
   SINGLE REVIEW - KLIKACÍ HODNOCENÍ ČTENÁŘŮ
   ========================================================= */

.vct-review-user-rating-box {
    margin-top: 24px !important;
    padding: 20px !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.14), transparent 42%),
        #101014 !important;
    border: 1px solid #25252b !important;
    border-radius: 16px !important;
}

.vct-review-user-rating-top {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin-bottom: 14px !important;
}

.vct-review-user-rating-top span {
    display: block !important;
    color: #9a9aa3 !important;
    margin-bottom: 6px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
}

.vct-user-rating-score {
    display: block !important;
    color: #f73873 !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: -0.05em !important;
}

.vct-user-rating-count {
    color: #9a9aa3 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-style: normal !important;
    font-weight: 850 !important;
}

.vct-user-rating-bar {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 13px !important;
    padding: 0 !important;
    border: 1px solid #303039 !important;
    border-radius: 999px !important;
    background: #070709 !important;
    overflow: hidden !important;
    cursor: pointer !important;
}

.vct-user-rating-bar-fill {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 0;
    background: linear-gradient(90deg, #f73873, #ff7aa5) !important;
    border-radius: 999px !important;
    transition: width 0.25s ease !important;
}

.vct-user-rating-bar:hover .vct-user-rating-bar-fill {
    filter: brightness(1.12) !important;
}

.vct-user-rating-help {
    margin-top: 10px !important;
    color: #8f8f98 !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    font-weight: 750 !important;
}

.vct-user-rating-message {
    margin-top: 9px !important;
    color: #f73873 !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    font-weight: 850 !important;
}

.vct-review-user-rating-box.is-saving {
    opacity: 0.75 !important;
    pointer-events: none !important;
}

@media (max-width: 760px) {
    .vct-review-user-rating-top {
        align-items: flex-start !important;
        flex-direction: column !important;
    }
}

/* =========================================================
   SINGLE REVIEW - USER RATING PREVIEW
   ========================================================= */

.vct-user-rating-preview {
    position: absolute !important;
    top: -36px !important;
    left: 0 !important;
    transform: translateX(-50%) !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 44px !important;
    height: 26px !important;
    padding: 0 9px !important;
    background: #f73873 !important;
    color: #fff !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: -0.02em !important;
    box-shadow: 0 10px 24px rgba(247, 56, 115, 0.28) !important;
    pointer-events: none !important;
    z-index: 5 !important;
}

.vct-user-rating-preview::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    bottom: -5px !important;
    transform: translateX(-50%) !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 5px solid transparent !important;
    border-right: 5px solid transparent !important;
    border-top: 5px solid #f73873 !important;
}

.vct-user-rating-bar:hover .vct-user-rating-preview {
    display: inline-flex !important;
}

/* =========================================================
   SINGLE REVIEW - USER RATING PREVIEW FIX
   ========================================================= */

.vct-user-rating-bar {
    overflow: visible !important;
    z-index: 5 !important;
}

.vct-user-rating-bar-fill {
    overflow: hidden !important;
    z-index: 1 !important;
}

.vct-user-rating-preview {
    display: none !important;
    position: absolute !important;
    top: -38px !important;
    left: 0 !important;
    transform: translateX(-50%) !important;
    z-index: 20 !important;
}

.vct-user-rating-bar:hover .vct-user-rating-preview {
    display: inline-flex !important;
}

/* =========================================================
   SINGLE REVIEW - CELKOVÉ HODNOCENÍ SPLIT
   ========================================================= */

.vct-review-score-split {
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    margin-top: 10px !important;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    font-weight: 850 !important;
    letter-spacing: -0.01em !important;
}

.vct-review-total-score {
    display: inline-flex !important;
    align-items: center !important;
}

/* =========================================================
   SINGLE REVIEW - CELKOVÉ HODNOCENÍ VPRAVO
   ========================================================= */

.vct-review-header-panel .vct-review-fact.vct-review-fact-score-split-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 18px !important;
    min-height: 132px !important;
    padding: 22px 26px !important;
}

.vct-review-score-left {
    position: relative !important;
    z-index: 2 !important;
    min-width: 0 !important;
}

.vct-review-score-left > span {
    display: block !important;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.16em !important;
    margin-bottom: 10px !important;
}

.vct-review-score-verdict {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    margin: 0 0 14px 0 !important;
    border-radius: 999px !important;
    padding: 8px 13px !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-style: normal !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
}

.vct-review-fact-score.score-high .vct-review-score-verdict {
    color: #fff !important;
    background: #f73873 !important;
    border: 1px solid #f73873 !important;
}

.vct-review-fact-score.score-mid .vct-review-score-verdict {
    color: #111114 !important;
    background: #facc15 !important;
    border: 1px solid #facc15 !important;
}

.vct-review-fact-score.score-low .vct-review-score-verdict {
    color: #fff !important;
    background: #ef4444 !important;
    border: 1px solid #ef4444 !important;
}

.vct-review-total-score-wrap {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    min-width: 120px !important;
    margin: 0 !important;
}

.vct-review-header-panel .vct-review-fact.vct-review-fact-score .vct-review-total-score {
    display: block !important;
    color: #fff !important;
    font-size: 58px !important;
    line-height: 0.9 !important;
    font-weight: 950 !important;
    letter-spacing: -0.08em !important;
    text-shadow:
        0 0 22px rgba(255, 255, 255, 0.12),
        0 14px 34px rgba(0, 0, 0, 0.34) !important;
}

.vct-review-score-split {
    display: block !important;
    margin-top: 0 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    font-weight: 900 !important;
    letter-spacing: -0.01em !important;
}

@media (max-width: 760px) {
    .vct-review-header-panel .vct-review-fact.vct-review-fact-score-split-layout {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        min-height: auto !important;
    }

    .vct-review-total-score-wrap {
        justify-content: flex-start !important;
        min-width: 0 !important;
    }

    .vct-review-header-panel .vct-review-fact.vct-review-fact-score .vct-review-total-score {
        font-size: 48px !important;
    }
}

/* =========================================================
   SINGLE REVIEW - SOUVISEJÍCÍ KAPELA POD HEADEREM
   ========================================================= */

.vct-review-related-band-box {
    width: min(1240px, calc(100% - 32px)) !important;
    margin: 28px auto 0 auto !important;
}

.vct-review-related-band-link {
    position: relative !important;
    overflow: hidden !important;
    display: grid !important;
    grid-template-columns: 280px minmax(0, 1fr) !important;
    gap: 0 !important;
    min-height: 230px !important;
    border-radius: 24px !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.18), transparent 38%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.045), transparent 34%),
        #101014 !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.42),
        inset 0 0 0 1px rgba(255, 255, 255, 0.025) !important;
    text-decoration: none !important;
}

.vct-review-related-band-link::before {
    content: "" !important;
    position: absolute !important;
    right: -56px !important;
    top: -56px !important;
    width: 180px !important;
    height: 180px !important;
    border-radius: 50% !important;
    background: #f73873 !important;
    filter: blur(34px) !important;
    opacity: 0.16 !important;
    pointer-events: none !important;
}

.vct-review-related-band-image {
    position: relative !important;
    min-height: 230px !important;
    background: #08080a !important;
    overflow: hidden !important;
}

.vct-review-related-band-img {
    width: 100% !important;
    height: 100% !important;
    min-height: 230px !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.35s ease !important;
}

.vct-review-related-band-link:hover .vct-review-related-band-img {
    transform: scale(1.05) !important;
}

.vct-review-related-band-placeholder {
    width: 100% !important;
    height: 100% !important;
    min-height: 230px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    font-weight: 950 !important;
    letter-spacing: 0.12em !important;
    background:
        radial-gradient(circle at center, rgba(247, 56, 115, 0.18), transparent 42%),
        #08080a !important;
}

.vct-review-related-band-content {
    position: relative !important;
    z-index: 2 !important;
    padding: 30px 34px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.vct-review-related-band-label {
    color: #f73873 !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
    margin-bottom: 10px !important;
}

.vct-review-related-band-content h2 {
    margin: 0 0 10px 0 !important;
    color: #fff !important;
    font-size: 34px !important;
    line-height: 1.02 !important;
    font-weight: 950 !important;
    letter-spacing: -0.06em !important;
}

.vct-review-related-band-meta {
    margin-bottom: 14px !important;
    color: #b8b8c2 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    font-weight: 850 !important;
}

.vct-review-related-band-content p {
    margin: 0 0 20px 0 !important;
    color: #d7d7de !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    font-weight: 650 !important;
}

.vct-review-related-band-button {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    border-radius: 999px !important;
    padding: 11px 16px !important;
    background: #f73873 !important;
    color: #fff !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    box-shadow: 0 12px 28px rgba(247, 56, 115, 0.24) !important;
}

@media (max-width: 760px) {
    .vct-review-related-band-box {
        width: calc(100% - 24px) !important;
        margin-top: 22px !important;
    }

    .vct-review-related-band-link {
        grid-template-columns: 1fr !important;
        border-radius: 18px !important;
    }

    .vct-review-related-band-image,
    .vct-review-related-band-img,
    .vct-review-related-band-placeholder {
        min-height: 190px !important;
    }

    .vct-review-related-band-content {
        padding: 22px !important;
    }

    .vct-review-related-band-content h2 {
        font-size: 27px !important;
    }
}

/* =========================================================
   SINGLE REVIEW - PROFIL KAPELY UVNITŘ ČLÁNKU
   ========================================================= */

.vct-review-article-card .vct-review-related-band-box {
    width: 100% !important;
    margin: 0 0 28px 0 !important;
}

.vct-review-article-card .vct-review-related-band-link {
    grid-template-columns: 230px minmax(0, 1fr) !important;
    min-height: 210px !important;
}

.vct-review-article-card .vct-review-related-band-image,
.vct-review-article-card .vct-review-related-band-img,
.vct-review-article-card .vct-review-related-band-placeholder {
    min-height: 210px !important;
}

.vct-review-article-card .vct-review-related-band-content {
    padding: 26px 28px !important;
}

.vct-review-article-card .vct-review-related-band-content h2 {
    font-size: 30px !important;
}

@media (max-width: 760px) {
    .vct-review-article-card .vct-review-related-band-link {
        grid-template-columns: 1fr !important;
    }

    .vct-review-article-card .vct-review-related-band-image,
    .vct-review-article-card .vct-review-related-band-img,
    .vct-review-article-card .vct-review-related-band-placeholder {
        min-height: 190px !important;
    }

    .vct-review-article-card .vct-review-related-band-content {
        padding: 22px !important;
    }
}

/* =========================================================
   SINGLE REVIEW - ŠIRŠÍ FOTO PROFILU KAPELY
   ========================================================= */

.vct-review-article-card .vct-review-related-band-link {
    grid-template-columns: 320px minmax(0, 1fr) !important;
}

.vct-review-article-card .vct-review-related-band-image,
.vct-review-article-card .vct-review-related-band-img,
.vct-review-article-card .vct-review-related-band-placeholder {
    min-height: 220px !important;
}

.vct-review-article-card .vct-review-related-band-img {
    object-fit: cover !important;
    object-position: center center !important;
}

/* =========================================================
   SINGLE REVIEW - POSLOUCHAT ALBUM POD OBALEM
   ========================================================= */

.vct-review-cover-area {
    width: 100% !important;
    max-width: 330px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
}

.vct-review-cover-area .vct-review-cover {
    max-width: 100% !important;
}

.vct-review-listen-box {
    position: relative !important;
    overflow: hidden !important;
    padding: 16px !important;
    border-radius: 18px !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.14), transparent 42%),
        #101014 !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.32),
        inset 0 0 0 1px rgba(255, 255, 255, 0.025) !important;
}

.vct-review-listen-label {
    margin-bottom: 12px !important;
    color: #f73873 !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
}

.vct-review-listen-buttons {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 9px !important;
}

.vct-review-listen-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    min-height: 42px !important;
    padding: 11px 13px !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    color: #fff !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    transition:
        transform 0.2s ease,
        filter 0.2s ease,
        box-shadow 0.2s ease !important;
}

.vct-review-listen-button svg {
    width: 18px !important;
    height: 18px !important;
    fill: currentColor !important;
    flex: 0 0 auto !important;
}

.vct-review-listen-button:hover {
    transform: translateY(-1px) !important;
    filter: brightness(1.08) !important;
}

.vct-review-listen-spotify {
    background: #1db954 !important;
    box-shadow: 0 10px 24px rgba(29, 185, 84, 0.22) !important;
}

.vct-review-listen-apple {
    background: linear-gradient(135deg, #fa243c, #fb5c74) !important;
    box-shadow: 0 10px 24px rgba(250, 36, 60, 0.22) !important;
}

@media (max-width: 760px) {
    .vct-review-cover-area {
        max-width: 100% !important;
    }

    .vct-review-listen-buttons {
        grid-template-columns: 1fr 1fr !important;
    }

    .vct-review-listen-button span {
        font-size: 11px !important;
    }
}

@media (max-width: 420px) {
    .vct-review-listen-buttons {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   SINGLE REVIEW - STEJNÝ OKRAJ KOLEM CD COVERU
   ========================================================= */

.vct-review-cover-area .vct-review-cover {
    aspect-ratio: 1 / 1 !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 14px !important;
    align-items: stretch !important;
    justify-content: stretch !important;
}

.vct-review-cover-area .vct-review-cover-img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
}

/* =========================================================
   SINGLE BAND - HERO HEADER
   ========================================================= */

.vct-band-page {
    padding-top: 34px !important;
}

.vct-band-hero {
    position: relative !important;
    overflow: hidden !important;
    width: min(1240px, calc(100% - 32px)) !important;
    min-height: 420px !important;
    margin: 0 auto 34px auto !important;
    border-radius: 28px !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.18), transparent 38%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.045), transparent 34%),
        #101014 !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.48),
        inset 0 0 0 1px rgba(255, 255, 255, 0.025) !important;
}

.vct-band-hero-bg {
    position: absolute !important;
    inset: 0 !important;
    background-size: cover !important;
    background-position: center center !important;
    opacity: 0.42 !important;
    filter: saturate(1.05) contrast(1.08) !important;
    transform: scale(1.02) !important;
}

.vct-band-hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(90deg, rgba(8, 8, 10, 0.94) 0%, rgba(8, 8, 10, 0.74) 44%, rgba(8, 8, 10, 0.35) 100%),
        linear-gradient(180deg, rgba(8, 8, 10, 0.12) 0%, rgba(8, 8, 10, 0.82) 100%) !important;
    z-index: 1 !important;
}

.vct-band-hero-inner {
    position: relative !important;
    z-index: 2 !important;
    min-height: 420px !important;
    display: flex !important;
    align-items: flex-end !important;
    padding: 54px !important;
}

.vct-band-hero-content {
    width: min(760px, 100%) !important;
}

.vct-band-hero-label {
    color: #f73873 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.16em !important;
    margin-bottom: 14px !important;
}

.vct-band-title {
    margin: 0 0 12px 0 !important;
    color: #fff !important;
    font-size: clamp(44px, 6vw, 82px) !important;
    line-height: 0.9 !important;
    font-weight: 950 !important;
    letter-spacing: -0.08em !important;
    text-shadow: 0 18px 46px rgba(0, 0, 0, 0.55) !important;
}

.vct-band-origin {
    color: #d7d7de !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    font-weight: 850 !important;
    margin-bottom: 18px !important;
}

.vct-band-genre-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 9px !important;
    margin-bottom: 22px !important;
}

.vct-band-genre-list span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    background: rgba(247, 56, 115, 0.16) !important;
    border: 1px solid rgba(247, 56, 115, 0.65) !important;
    border-radius: 999px !important;
    padding: 8px 13px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
}

.vct-band-stream-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-bottom: 14px !important;
}

.vct-band-stream-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    min-height: 44px !important;
    padding: 12px 18px !important;
    border-radius: 999px !important;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    transition:
        transform 0.2s ease,
        filter 0.2s ease,
        box-shadow 0.2s ease !important;
}

.vct-band-stream-button svg {
    width: 18px !important;
    height: 18px !important;
    fill: currentColor !important;
}

.vct-band-stream-button:hover {
    transform: translateY(-1px) !important;
    filter: brightness(1.08) !important;
}

.vct-band-stream-spotify {
    background: #1db954 !important;
    box-shadow: 0 12px 28px rgba(29, 185, 84, 0.24) !important;
}

.vct-band-stream-apple {
    background: linear-gradient(135deg, #fa243c, #fb5c74) !important;
    box-shadow: 0 12px 28px rgba(250, 36, 60, 0.24) !important;
}

.vct-band-socials {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

.vct-band-socials a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 34px !important;
    padding: 9px 13px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.11) !important;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.07em !important;
}

.vct-band-socials a:hover {
    background: rgba(247, 56, 115, 0.16) !important;
    border-color: rgba(247, 56, 115, 0.55) !important;
}

@media (max-width: 760px) {
    .vct-band-page {
        padding-top: 18px !important;
    }

    .vct-band-hero {
        width: calc(100% - 24px) !important;
        min-height: 360px !important;
        border-radius: 20px !important;
        margin-bottom: 24px !important;
    }

    .vct-band-hero-inner {
        min-height: 360px !important;
        padding: 28px !important;
    }

    .vct-band-title {
        font-size: 44px !important;
    }

    .vct-band-stream-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .vct-band-stream-button {
        width: 100% !important;
    }
}

/* =========================================================
   SINGLE BAND - HERO FOTO VPRAVO, ČERNÝ TEXT VLEVO
   ========================================================= */

.vct-band-hero-bg {
    background-size: cover !important;
    background-position: right center !important;
    opacity: 1 !important;
    filter: saturate(1.05) contrast(1.08) brightness(0.78) !important;
    transform: none !important;
}

/* Hlavní přechod: vlevo černo, vpravo fotka */
.vct-band-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 10, 1) 0%,
            rgba(8, 8, 10, 0.98) 22%,
            rgba(8, 8, 10, 0.88) 42%,
            rgba(8, 8, 10, 0.52) 64%,
            rgba(8, 8, 10, 0.18) 100%
        ),
        linear-gradient(
            180deg,
            rgba(8, 8, 10, 0.18) 0%,
            rgba(8, 8, 10, 0.78) 100%
        ) !important;
}

/* Jemná růžová atmosféra vlevo */
.vct-band-hero::before {
    content: "" !important;
    position: absolute !important;
    left: -80px !important;
    bottom: -80px !important;
    width: 320px !important;
    height: 320px !important;
    border-radius: 50% !important;
    background: #f73873 !important;
    filter: blur(70px) !important;
    opacity: 0.14 !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* Text držíme víc vlevo, aby neležel přes fotku */
.vct-band-hero-content {
    width: min(620px, 100%) !important;
}

/* =========================================================
   SINGLE BAND - HERO 16:9 BANNER STANDARD
   Doporučená fotka: 1920x1080 px
   ========================================================= */

.vct-band-hero {
    min-height: 430px !important;
}

.vct-band-hero-inner {
    min-height: 430px !important;
}

.vct-band-hero-bg {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: 70% center !important;
    opacity: 1 !important;
    filter: saturate(1.05) contrast(1.08) brightness(0.86) !important;
    transform: none !important;
}

/* Přechod: vlevo čistý prostor pro text, vpravo fotka */
.vct-band-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 10, 1) 0%,
            rgba(8, 8, 10, 0.98) 20%,
            rgba(8, 8, 10, 0.90) 36%,
            rgba(8, 8, 10, 0.62) 55%,
            rgba(8, 8, 10, 0.26) 78%,
            rgba(8, 8, 10, 0.12) 100%
        ),
        linear-gradient(
            180deg,
            rgba(8, 8, 10, 0.10) 0%,
            rgba(8, 8, 10, 0.76) 100%
        ) !important;
}

/* Text zůstane vlevo a nepřeleze moc do fotky */
.vct-band-hero-content {
    width: min(620px, 100%) !important;
}

/* =========================================================
   SINGLE BAND - HERO FOTO VPRAVO BEZ OŘEZU HLAV
   Fotky ideálně 1920x1080
   ========================================================= */

body.single-post .vct-band-page .vct-band-hero {
    min-height: 430px !important;
    background: #08080a !important;
}

body.single-post .vct-band-page .vct-band-hero-inner {
    min-height: 430px !important;
}

/* Fotka se vejde na výšku, drží se vpravo a neořeže hlavy */
body.single-post .vct-band-page .vct-band-hero .vct-band-hero-bg {
    background-size: auto 100% !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
    opacity: 1 !important;
    filter: saturate(1.05) contrast(1.08) brightness(0.9) !important;
    transform: none !important;
}

/* Vlevo černé pole pro text, vpravo fotka víc viditelná */
body.single-post .vct-band-page .vct-band-hero .vct-band-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 10, 1) 0%,
            rgba(8, 8, 10, 1) 27%,
            rgba(8, 8, 10, 0.92) 42%,
            rgba(8, 8, 10, 0.52) 62%,
            rgba(8, 8, 10, 0.12) 100%
        ),
        linear-gradient(
            180deg,
            rgba(8, 8, 10, 0.10) 0%,
            rgba(8, 8, 10, 0.66) 100%
        ) !important;
}

/* =========================================================
   VIPERRA - KAPITOLY / TABLE OF CONTENTS
   ========================================================= */

.vct-toc-box {
    position: relative !important;
    overflow: hidden !important;
    margin: 0 0 34px 0 !important;
    padding: 24px 26px !important;
    border-radius: 20px !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.14), transparent 40%),
        #101014 !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.34),
        inset 0 0 0 1px rgba(255, 255, 255, 0.025) !important;
}

.vct-toc-box::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 24px !important;
    width: 6px !important;
    height: 40px !important;
    border-radius: 0 999px 999px 0 !important;
    background: linear-gradient(180deg, #f73873 0%, #ff7aa5 100%) !important;
    box-shadow: 0 0 18px rgba(247, 56, 115, 0.35) !important;
}

.vct-toc-title {
    margin-bottom: 16px !important;
    color: #fff !important;
    font-size: 28px !important;
    line-height: 1.05 !important;
    font-weight: 950 !important;
    letter-spacing: -0.05em !important;
}

.vct-toc-list {
    margin: 0 !important;
    padding-left: 0 !important;
    list-style: none !important;
    counter-reset: vcttoc !important;
    display: grid !important;
    gap: 9px !important;
}

.vct-toc-list li {
    counter-increment: vcttoc !important;
    margin: 0 !important;
}

.vct-toc-list a {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-height: 44px !important;
    padding: 11px 14px !important;
    border-radius: 14px !important;
    background: rgba(8, 8, 10, 0.58) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #e8e8ee !important;
    text-decoration: none !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
    font-weight: 850 !important;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease !important;
}

.vct-toc-list a::before {
    content: counter(vcttoc) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 26px !important;
    height: 26px !important;
    flex: 0 0 26px !important;
    border-radius: 999px !important;
    background: #f73873 !important;
    color: #fff !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
}

.vct-toc-list a:hover {
    transform: translateX(3px) !important;
    background: rgba(247, 56, 115, 0.10) !important;
    border-color: rgba(247, 56, 115, 0.55) !important;
    color: #fff !important;
}

html {
    scroll-behavior: smooth !important;
}

.vct-single-content h2,
.vct-band-content h2 {
    scroll-margin-top: 120px !important;
}

@media (max-width: 760px) {
    .vct-toc-box {
        padding: 20px !important;
        border-radius: 16px !important;
    }

    .vct-toc-title {
        font-size: 24px !important;
    }

    .vct-toc-list a {
        font-size: 14px !important;
        align-items: flex-start !important;
    }
}

/* =========================================================
   SINGLE BAND - TOPOVKY KAPELY
   ========================================================= */

.vct-band-top-songs {
    position: relative !important;
    overflow: hidden !important;
    margin-top: 34px !important;
    padding: 28px !important;
    border-radius: 24px !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.15), transparent 38%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.045), transparent 34%),
        #101014 !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.38),
        inset 0 0 0 1px rgba(255, 255, 255, 0.025) !important;
}

.vct-band-top-songs::before {
    content: "" !important;
    position: absolute !important;
    right: -60px !important;
    top: -60px !important;
    width: 180px !important;
    height: 180px !important;
    border-radius: 50% !important;
    background: #f73873 !important;
    filter: blur(34px) !important;
    opacity: 0.14 !important;
    pointer-events: none !important;
}

.vct-band-top-list {
    position: relative !important;
    z-index: 2 !important;
    margin: 22px 0 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
    counter-reset: vcttopsongs !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.vct-band-top-list li {
    counter-increment: vcttopsongs !important;
    position: relative !important;
    min-height: 52px !important;
    margin: 0 !important;
    padding: 14px 16px 14px 54px !important;
    border-radius: 16px !important;
    background: rgba(8, 8, 10, 0.62) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #f2f2f5 !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    font-weight: 850 !important;
}

.vct-band-top-list li::before {
    content: counter(vcttopsongs) !important;
    position: absolute !important;
    left: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f73873 !important;
    color: #fff !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    box-shadow: 0 8px 18px rgba(247, 56, 115, 0.28) !important;
}

.vct-band-top-list li:hover {
    background: rgba(247, 56, 115, 0.10) !important;
    border-color: rgba(247, 56, 115, 0.45) !important;
}

@media (max-width: 760px) {
    .vct-band-top-songs {
        margin-top: 24px !important;
        padding: 20px !important;
        border-radius: 18px !important;
    }

    .vct-band-top-list {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .vct-band-top-list li {
        font-size: 14px !important;
    }
}
/* =========================================================
   SINGLE BAND - ČLENOVÉ KAPELY POD HEADEREM
   ========================================================= */

.vct-band-members-wide {
    width: min(1240px, calc(100% - 32px)) !important;
    margin: 0 auto 34px auto !important;
}

.vct-band-members-wide-inner {
    position: relative !important;
    overflow: hidden !important;
    padding: 30px !important;
    border-radius: 26px !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.14), transparent 38%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.045), transparent 34%),
        #101014 !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.42),
        inset 0 0 0 1px rgba(255, 255, 255, 0.025) !important;
}

.vct-band-members-wide-inner::before {
    content: "" !important;
    position: absolute !important;
    right: -70px !important;
    top: -70px !important;
    width: 190px !important;
    height: 190px !important;
    border-radius: 50% !important;
    background: #f73873 !important;
    filter: blur(38px) !important;
    opacity: 0.13 !important;
    pointer-events: none !important;
}

.vct-band-members-wide .vct-review-section-heading {
    position: relative !important;
    z-index: 2 !important;
    margin-bottom: 24px !important;
}

.vct-band-members-cards {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 16px !important;
}

.vct-band-member-photo-card {
    position: relative !important;
    overflow: hidden !important;
    width: 210px !important;
    min-height: 300px !important;
    border-radius: 22px !important;
    background:
        radial-gradient(circle at center, rgba(247, 56, 115, 0.18), transparent 42%),
        #08080a !important;
    background-size: cover !important;
    background-position: center center !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.44),
        inset 0 0 0 1px rgba(255, 255, 255, 0.025) !important;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease !important;
}

.vct-band-member-photo-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(247, 56, 115, 0.52) !important;
    box-shadow:
        0 22px 44px rgba(0, 0, 0, 0.50),
        0 0 28px rgba(247, 56, 115, 0.16) !important;
}

.vct-band-member-photo-overlay {
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(
            180deg,
            rgba(8, 8, 10, 0.08) 0%,
            rgba(8, 8, 10, 0.38) 42%,
            rgba(8, 8, 10, 0.96) 100%
        ) !important;
    z-index: 1 !important;
}

.vct-band-member-photo-card::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.18), transparent 42%) !important;
    z-index: 2 !important;
    pointer-events: none !important;
    opacity: 0.75 !important;
}

.vct-band-member-photo-content {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 3 !important;
    padding: 20px !important;
    text-align: center !important;
}

.vct-band-member-photo-name {
    color: #fff !important;
    font-size: 22px !important;
    line-height: 1.05 !important;
    font-weight: 950 !important;
    letter-spacing: -0.05em !important;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55) !important;
    margin-bottom: 8px !important;
}

.vct-band-member-photo-role {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    margin: 0 auto 8px auto !important;
    border-radius: 999px !important;
    padding: 7px 11px !important;
    background: #f73873 !important;
    color: #fff !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    box-shadow: 0 10px 22px rgba(247, 56, 115, 0.24) !important;
}

.vct-band-member-photo-years {
    color: #c9c9d1 !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
}

@media (max-width: 760px) {
    .vct-band-members-wide {
        width: calc(100% - 24px) !important;
        margin-bottom: 24px !important;
    }

    .vct-band-members-wide-inner {
        padding: 22px !important;
        border-radius: 20px !important;
    }

    .vct-band-members-cards {
        gap: 12px !important;
    }

    .vct-band-member-photo-card {
        width: calc(50% - 6px) !important;
        min-height: 260px !important;
        border-radius: 18px !important;
    }

    .vct-band-member-photo-name {
        font-size: 19px !important;
    }
}

@media (max-width: 460px) {
    .vct-band-member-photo-card {
        width: 100% !important;
        min-height: 300px !important;
    }
}

/* =========================================================
   SINGLE BAND - ČLENOVÉ KAPELY FOTO FIX
   ========================================================= */

.vct-band-member-photo-card {
    background-color: #08080a !important;
    background-image:
        var(--vct-member-image),
        radial-gradient(circle at center, rgba(247, 56, 115, 0.18), transparent 42%) !important;
    background-size: cover, cover !important;
    background-position: center center, center center !important;
    background-repeat: no-repeat, no-repeat !important;
}

@media (max-width: 1024px) {
    .vct-band-member-photo-card {
        width: 200px !important;
    }
}

@media (max-width: 760px) {
    .vct-band-member-photo-card {
        width: calc(50% - 6px) !important;
    }
}

@media (max-width: 460px) {
    .vct-band-member-photo-card {
        width: 100% !important;
    }
}

/* =========================================================
   SINGLE BAND - SIDEBAR SOUVISEJÍCÍ ČLÁNKY
   ========================================================= */

.vct-band-widget-post {
    position: relative !important;
    overflow: hidden !important;
    display: grid !important;
    grid-template-columns: 118px minmax(0, 1fr) !important;
    gap: 14px !important;
    align-items: center !important;
    padding: 12px !important;
    margin-bottom: 12px !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.075) !important;
    text-decoration: none !important;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease !important;
}

.vct-band-widget-post:hover {
    transform: translateY(-1px) !important;
    background: rgba(247, 56, 115, 0.08) !important;
    border-color: rgba(247, 56, 115, 0.36) !important;
}

.vct-band-widget-thumb {
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
    width: 118px !important;
    height: 84px !important;
    border-radius: 14px !important;
    background: #08080a !important;
    text-decoration: none !important;
}

.vct-band-widget-thumb img,
.vct-band-widget-img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.25s ease !important;
}

.vct-band-widget-post:hover .vct-band-widget-thumb img {
    transform: scale(1.06) !important;
}

.vct-band-widget-post-body {
    min-width: 0 !important;
}

.vct-band-widget-post-body time {
    display: block !important;
    margin-bottom: 6px !important;
    color: #a6a6b0 !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 750 !important;
}

.vct-band-widget-post-body h4 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 15px !important;
    line-height: 1.22 !important;
    font-weight: 950 !important;
    letter-spacing: -0.035em !important;
}

.vct-band-widget-post-body h4 a {
    color: #fff !important;
    text-decoration: none !important;
}

.vct-band-widget-post-body h4 a:hover {
    color: #f73873 !important;
}

.vct-widget-play-icon {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    z-index: 4 !important;
    transform: translate(-50%, -50%) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 999px !important;
    background: rgba(247, 56, 115, 0.94) !important;
    color: #fff !important;
    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.45),
        0 0 22px rgba(247, 56, 115, 0.38) !important;
}

.vct-widget-play-icon svg {
    display: block !important;
    fill: currentColor !important;
    margin-left: 2px !important;
}

@media (max-width: 760px) {
    .vct-band-widget-post {
        grid-template-columns: 96px minmax(0, 1fr) !important;
        gap: 12px !important;
    }

    .vct-band-widget-thumb {
        width: 96px !important;
        height: 72px !important;
    }

    .vct-band-widget-post-body h4 {
        font-size: 14px !important;
    }
}

/* =========================================================
   SINGLE BAND - ČLEN KAPELY JAKO ODKAZ NA TVŮRCE
   ========================================================= */

a.vct-band-member-photo-card {
    display: block !important;
    text-decoration: none !important;
    color: inherit !important;
}

.vct-band-member-photo-card.is-clickable {
    cursor: pointer !important;
}

.vct-band-member-photo-card.is-clickable::after {
    content: "Profil tvůrce" !important;
    position: absolute !important;
    left: 50% !important;
    top: 16px !important;
    transform: translateX(-50%) !important;
    z-index: 4 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 7px 11px !important;
    border-radius: 999px !important;
    background: rgba(8, 8, 10, 0.72) !important;
    border: 1px solid rgba(247, 56, 115, 0.45) !important;
    color: #fff !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    opacity: 0 !important;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease !important;
    pointer-events: none !important;
}

.vct-band-member-photo-card.is-clickable:hover::after {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(2px) !important;
}

/* =========================================================
   SINGLE CONTENT - ODRÁŽKY A ČÍSLOVANÉ SEZNAMY V ČLÁNCÍCH
   ========================================================= */

.vct-single-content ul,
.vct-band-content ul,
.vct-review-content ul {
    list-style: disc !important;
    margin: 18px 0 24px 26px !important;
    padding-left: 22px !important;
}

.vct-single-content ol,
.vct-band-content ol,
.vct-review-content ol {
    list-style: decimal !important;
    margin: 18px 0 24px 26px !important;
    padding-left: 22px !important;
}

.vct-single-content li,
.vct-band-content li,
.vct-review-content li {
    display: list-item !important;
    margin-bottom: 10px !important;
    padding-left: 4px !important;
    color: #d7d7df !important;
    font-size: inherit !important;
    line-height: 1.7 !important;
}

.vct-single-content li::marker,
.vct-band-content li::marker,
.vct-review-content li::marker {
    color: #f73873 !important;
    font-weight: 900 !important;
}

.vct-single-content ul ul,
.vct-band-content ul ul,
.vct-review-content ul ul {
    list-style: circle !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.vct-single-content ol ol,
.vct-band-content ol ol,
.vct-review-content ol ol {
    list-style: lower-alpha !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

/* =========================================================
   FIX - KAPITOLY NESMÍ DĚDIT ODRÁŽKY Z OBSAHU
   ========================================================= */

.vct-toc-box ol,
.vct-toc-box ul,
.vct-toc-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.vct-toc-box li,
.vct-toc-list li {
    display: block !important;
    list-style: none !important;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
}

.vct-toc-box li::marker,
.vct-toc-list li::marker {
    content: "" !important;
    display: none !important;
}

.vct-toc-box li:last-child,
.vct-toc-list li:last-child {
    margin-bottom: 0 !important;
}

/* =========================================================
   SINGLE BAND - FANOUŠCI KAPELY
   ========================================================= */

.vct-band-fan-action {
    position: relative !important;
    z-index: 5 !important;
    margin-top: 20px !important;
}

.vct-band-fan-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    width: fit-content !important;
    min-height: 46px !important;
    padding: 13px 18px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(247, 56, 115, 0.58) !important;
    background:
        linear-gradient(135deg, rgba(247, 56, 115, 0.95), rgba(255, 122, 165, 0.88)) !important;
    color: #fff !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-shadow:
        0 14px 30px rgba(247, 56, 115, 0.28),
        inset 0 0 0 1px rgba(255, 255, 255, 0.14) !important;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease !important;
}

.vct-band-fan-button:hover {
    color: #fff !important;
    transform: translateY(-1px) !important;
    box-shadow:
        0 18px 38px rgba(247, 56, 115, 0.38),
        inset 0 0 0 1px rgba(255, 255, 255, 0.18) !important;
}

.vct-band-fan-button.is-active {
    background:
        linear-gradient(135deg, rgba(24, 24, 28, 0.96), rgba(50, 50, 58, 0.92)) !important;
    border-color: rgba(247, 56, 115, 0.7) !important;
}

.vct-band-fan-button.is-saving {
    opacity: 0.75 !important;
    pointer-events: none !important;
}

.vct-band-fan-count {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 26px !important;
    height: 26px !important;
    padding: 0 8px !important;
    border-radius: 999px !important;
    background: rgba(8, 8, 10, 0.45) !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 950 !important;
}

.vct-band-fan-message {
    margin-top: 9px !important;
    color: #c9c9d1 !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
}

.vct-band-fans-widget {
    margin-top: 18px !important;
}

.vct-band-fans-count-box {
    display: flex !important;
    align-items: baseline !important;
    gap: 8px !important;
    margin-bottom: 18px !important;
}

.vct-band-fans-count-box strong {
    color: #fff !important;
    font-size: 38px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: -0.06em !important;
}

.vct-band-fans-count-box span {
    color: #a8a8b3 !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 850 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
}

.vct-band-fans-avatar-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

.vct-band-fan-avatar {
    width: 42px !important;
    height: 42px !important;
    border-radius: 999px !important;
    overflow: hidden !important;
    border: 2px solid rgba(247, 56, 115, 0.55) !important;
    background: #08080a !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.32) !important;
}

.vct-band-fan-avatar img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.vct-band-fans-empty {
    margin: 0 !important;
    color: #a8a8b3 !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    font-weight: 700 !important;
}

/* =========================================================
   SINGLE BAND - FAN BUTTON VPRAVO V HERO
   ========================================================= */

.vct-band-hero-inner {
    position: relative !important;
}

.vct-band-fan-action-side {
    position: absolute !important;
    right: 34px !important;
    bottom: 34px !important;
    z-index: 8 !important;
    margin-top: 0 !important;
    max-width: 280px !important;
    text-align: right !important;
}

.vct-band-fan-action-side .vct-band-fan-button {
    min-height: 54px !important;
    padding: 15px 20px !important;
    border-radius: 999px !important;
}

.vct-band-fan-action-side .vct-band-fan-message {
    text-align: right !important;
    max-width: 260px !important;
}

@media (max-width: 900px) {
    .vct-band-fan-action-side {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        margin-top: 24px !important;
        text-align: left !important;
        max-width: none !important;
    }

    .vct-band-fan-action-side .vct-band-fan-message {
        text-align: left !important;
    }
}

/* RECENZE - MEZITITULEK V SESTAVĚ */
.vct-review-lineup .vct-review-lineup-subheading {
    margin-top: 18px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #f73873 !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
}

.vct-review-lineup .vct-review-lineup-subheading::before {
    display: none !important;
    content: none !important;
}

/* =========================================================
   VIPERRA KOMENTÁŘE - TWITTER / THREAD STYL
   ========================================================= */

.vct-comments-area {
    margin-top: 44px !important;
    padding-top: 30px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.vct-comments-head {
    margin-bottom: 18px !important;
}

.vct-comments-head .vct-review-section-heading {
    margin-bottom: 0 !important;
}

.vct-comment-list,
.vct-comment-list .children {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.vct-comment-list {
    display: block !important;
    margin-bottom: 34px !important;
}

.vct-comment-item {
    position: relative !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.vct-comment-card {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 56px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 18px 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075) !important;
}

.vct-comment-avatar {
    position: relative !important;
    z-index: 2 !important;
    width: 48px !important;
    height: 48px !important;
}

.vct-comment-avatar img {
    display: block !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 999px !important;
    object-fit: cover !important;
    border: 2px solid rgba(247, 56, 115, 0.85) !important;
    box-shadow: 0 0 18px rgba(247, 56, 115, 0.26) !important;
}

.vct-comment-body {
    min-width: 0 !important;
    padding-top: 1px !important;
}

.vct-comment-top {
    display: flex !important;
    align-items: baseline !important;
    justify-content: space-between !important;
    gap: 14px !important;
    margin-bottom: 7px !important;
}

.vct-comment-author-line {
    display: flex !important;
    align-items: baseline !important;
    gap: 7px !important;
    min-width: 0 !important;
}

.vct-comment-author {
    color: #fff !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 950 !important;
}

.vct-comment-handle {
    color: #8f8f9a !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 850 !important;
}

.vct-comment-date {
    flex: 0 0 auto !important;
    color: #9a9aa5 !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 850 !important;
    text-decoration: none !important;
}

.vct-comment-date:hover {
    color: #f73873 !important;
}

.vct-comment-text {
    color: #ededf2 !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    font-weight: 780 !important;
}

.vct-comment-text p {
    margin: 0 0 8px 0 !important;
}

.vct-comment-text p:last-child {
    margin-bottom: 0 !important;
}

.vct-comment-actions {
    margin-top: 10px !important;
}

.vct-comment-actions a,
.vct-comment-cancel-reply {
    color: #a8a8b3 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    text-decoration: none !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    cursor: pointer !important;
}

.vct-comment-actions a:hover,
.vct-comment-cancel-reply:hover {
    color: #f73873 !important;
}

.vct-comment-awaiting {
    display: inline-flex !important;
    margin-top: 10px !important;
    color: #ff7aa5 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

/* VNOŘENÉ ODPOVĚDI */
.vct-comment-list .children {
    position: relative !important;
    margin-left: 28px !important;
    padding-left: 28px !important;
}

.vct-comment-list .children::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 2px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, rgba(247, 56, 115, 0.50), rgba(255, 255, 255, 0.07)) !important;
}

.vct-comment-list .children .vct-comment-card {
    grid-template-columns: 44px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 15px 0 !important;
}

.vct-comment-list .children .vct-comment-avatar,
.vct-comment-list .children .vct-comment-avatar img {
    width: 40px !important;
    height: 40px !important;
}

/* FORMULÁŘ BEZ KARTY */
.vct-comment-form-wrap {
    margin-top: 30px !important;
    padding-top: 26px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: transparent !important;
    box-shadow: none !important;
}

.vct-comment-item > .vct-comment-form-wrap {
    margin: 4px 0 16px 70px !important;
    padding: 16px 0 0 0 !important;
    border-top: 0 !important;
}

.vct-comment-form {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.vct-comment-form-heading {
    margin-bottom: 16px !important;
}

.vct-comment-logged-in-as,
.vct-comment-must-login {
    margin: 0 0 16px 0 !important;
    color: #a8a8b3 !important;
    font-size: 13px !important;
    font-weight: 750 !important;
}

.vct-comment-reply-context {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin: 0 0 12px 0 !important;
    padding: 10px 12px !important;
    border-radius: 14px !important;
    background: rgba(247, 56, 115, 0.08) !important;
    border: 1px solid rgba(247, 56, 115, 0.22) !important;
    color: #ff7aa5 !important;
    font-size: 12px !important;
    font-weight: 850 !important;
}

.vct-comment-reply-context[hidden] {
    display: none !important;
}

.vct-comment-form label {
    display: block !important;
    margin-bottom: 10px !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

.vct-comment-form textarea,
.vct-comment-form input[type="text"],
.vct-comment-form input[type="email"] {
    width: 100% !important;
    border-radius: 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(8, 8, 12, 0.78) !important;
    color: #fff !important;
    padding: 16px 18px !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    outline: none !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025) !important;
}

.vct-comment-form textarea:focus,
.vct-comment-form input[type="text"]:focus,
.vct-comment-form input[type="email"]:focus {
    border-color: rgba(247, 56, 115, 0.65) !important;
    box-shadow:
        0 0 0 3px rgba(247, 56, 115, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.035) !important;
}

.vct-comment-submit {
    margin-top: 10px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #f73873 0%, #ff6f9d 100%) !important;
    color: #fff !important;
    padding: 15px 24px !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    cursor: pointer !important;
    box-shadow: 0 14px 30px rgba(247, 56, 115, 0.30) !important;
}

.vct-comment-submit:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 18px 38px rgba(247, 56, 115, 0.40) !important;
}

.vct-comment-form-message {
    margin-top: 14px !important;
    color: #a8a8b3 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

.vct-comment-form-message.is-success {
    color: #ff7aa5 !important;
}

.vct-comment-form-message.is-error {
    color: #ff5b5b !important;
}

@media (max-width: 640px) {
    .vct-comment-card {
        grid-template-columns: 46px minmax(0, 1fr) !important;
        gap: 12px !important;
    }

    .vct-comment-avatar,
    .vct-comment-avatar img {
        width: 42px !important;
        height: 42px !important;
    }

    .vct-comment-top {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
    }

    .vct-comment-author-line {
        flex-wrap: wrap !important;
    }

    .vct-comment-list .children {
        margin-left: 20px !important;
        padding-left: 18px !important;
    }

    .vct-comment-item > .vct-comment-form-wrap {
        margin-left: 0 !important;
    }
}

/* =========================================================
   HOMEPAGE - NADPIS DALŠÍ ČLÁNKY JAKO SIDEBAR HEADING
   ========================================================= */

/*
 * Poznámka:
 * Původní .vct-section-heading má border-left.
 * Proto ho tady pro homepage výslovně vypínáme,
 * jinak se pořád zobrazuje starý jednoduchý růžový pruh.
 */

.vct-homepage-main .vct-home-section > .vct-section-heading,
.vct-home-section > .vct-section-heading {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    margin: 0 0 26px 0 !important;
    padding: 0 0 0 18px !important;
    border: 0 !important;
    border-left: 0 !important;
    border-bottom: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.vct-homepage-main .vct-home-section > .vct-section-heading::before,
.vct-home-section > .vct-section-heading::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: block !important;
    width: 6px !important;
    height: 34px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #f73873 0%, #ff7aa5 100%) !important;
    box-shadow: 0 0 18px rgba(247, 56, 115, 0.35) !important;
}

.vct-homepage-main .vct-home-section > .vct-section-heading::after,
.vct-home-section > .vct-section-heading::after {
    display: none !important;
    content: none !important;
}

.vct-homepage-main .vct-home-section > .vct-section-heading h2,
.vct-home-section > .vct-section-heading h2 {
    margin: 0 !important;
    padding: 0 !important;
    color: #fff !important;
    font-size: 30px !important;
    line-height: 1.08 !important;
    font-weight: 950 !important;
    letter-spacing: -0.055em !important;
}

/* =========================================================
   BAND PROFILE - KDY BUDOU V ČESKU?
   ========================================================= */

.vct-band-events-card {
    overflow: hidden !important;
}

.vct-band-events-widget {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.vct-band-event-row {
    display: grid !important;
    grid-template-columns: 82px minmax(0, 1fr) !important;
    gap: 13px !important;
    align-items: center !important;
    padding: 10px !important;
    border-radius: 14px !important;
    background: #17171b !important;
    border: 1px solid #25252b !important;
    text-decoration: none !important;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease !important;
}

.vct-band-event-row:hover {
    background: #1d1d22 !important;
    border-color: rgba(247, 56, 115, 0.75) !important;
    transform: translateY(-2px) !important;
}

.vct-band-event-thumb,
.vct-band-event-img,
.vct-band-event-placeholder {
    width: 82px !important;
    height: 108px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #101014 !important;
}

.vct-band-event-img {
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.vct-band-event-placeholder {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.24), transparent 42%),
        linear-gradient(135deg, #15151a, #0b0b0d) !important;
}

.vct-band-event-placeholder span {
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: 0.1em !important;
}

.vct-band-event-content {
    min-width: 0 !important;
}

.vct-band-event-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 5px !important;
    margin-bottom: 7px !important;
}

.vct-band-event-badges span {
    display: inline-flex !important;
    align-items: center !important;
    padding: 5px 7px !important;
    border-radius: 999px !important;
    background: rgba(247, 56, 115, 0.13) !important;
    border: 1px solid rgba(247, 56, 115, 0.28) !important;
    color: #f73873 !important;
    font-size: 9px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.07em !important;
}

.vct-band-event-title {
    display: block !important;
    color: #fff !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
    font-weight: 950 !important;
    margin-bottom: 7px !important;
}

.vct-band-event-date {
    color: #f73873 !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
    font-weight: 950 !important;
    margin-bottom: 4px !important;
}

.vct-band-event-location {
    color: #9a9aa3 !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
}

.vct-band-event-row:hover .vct-band-event-title {
    color: #f73873 !important;
}

@media (max-width: 520px) {
    .vct-band-event-row {
        grid-template-columns: 72px minmax(0, 1fr) !important;
    }

    .vct-band-event-thumb,
    .vct-band-event-img,
    .vct-band-event-placeholder {
        width: 72px !important;
        height: 96px !important;
    }
}
/* =========================================================
   VIPERRA - BREADCRUMBS
   ========================================================= */

.vct-breadcrumbs {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 0 0 22px !important;
    color: #777782 !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
    font-weight: 850 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
}

.vct-breadcrumbs a {
    color: #aaaab2 !important;
    text-decoration: none !important;
    transition: color 0.18s ease !important;
}

.vct-breadcrumbs a:hover {
    color: #f73873 !important;
}

.vct-breadcrumbs span {
    color: #555560 !important;
}

.vct-breadcrumbs span.vct-breadcrumbs-current,
.vct-breadcrumbs .vct-breadcrumbs-current {
    color: #f73873 !important;
}

/* =========================================================
   VIPERRA - MENU STATISTIKA
   Shortcode: [vct_menu_stats]
   ========================================================= */

.vct-menu-stats {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    padding: 5px 7px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.045) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: inset 0 0 0 1px rgba(247, 56, 115, 0.04) !important;
    vertical-align: middle !important;
}

.vct-menu-stat {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 4px 8px !important;
    border-radius: 999px !important;
    color: #d8d8de !important;
    text-decoration: none !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 850 !important;
    white-space: nowrap !important;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease !important;
}

.vct-menu-stat span {
    color: #aaaab2 !important;
    font-weight: 800 !important;
}

.vct-menu-stat strong {
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 950 !important;
}

.vct-menu-stat:hover {
    background: rgba(247, 56, 115, 0.16) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}

.vct-menu-stat:hover span,
.vct-menu-stat:hover strong {
    color: #fff !important;
}

.vct-menu-stat + .vct-menu-stat {
    position: relative !important;
}

.vct-menu-stat + .vct-menu-stat::before {
    content: "" !important;
    position: absolute !important;
    left: -4px !important;
    width: 1px !important;
    height: 14px !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

/* Mobil */
@media (max-width: 760px) {
    .vct-menu-stats {
        gap: 4px !important;
        padding: 4px 5px !important;
    }

    .vct-menu-stat {
        padding: 4px 6px !important;
        font-size: 11px !important;
    }

    .vct-menu-stat strong {
        font-size: 11px !important;
    }
}
/* =========================================================
   VIPERRA - REDAKCE SHORTCODE
   Shortcode: [vct_redakce]
   ========================================================= */

.vct-redakce {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    color: #fff !important;
}

.vct-redakce-hero {
    position: relative !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.24), transparent 34%),
        linear-gradient(135deg, #17171c, #0d0d10) !important;
    border: 1px solid #25252b !important;
    border-radius: 20px !important;
    padding: 34px 34px 32px !important;
    margin-bottom: 28px !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42) !important;
}

.vct-redakce-kicker {
    color: #f73873 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.16em !important;
    margin-bottom: 12px !important;
}

.vct-redakce-hero h2 {
    color: #fff !important;
    margin: 0 0 12px !important;
    font-size: clamp(34px, 4vw, 58px) !important;
    line-height: 1.02 !important;
    font-weight: 950 !important;
    letter-spacing: -0.055em !important;
}

.vct-redakce-hero p {
    color: #cfcfd6 !important;
    max-width: 760px !important;
    margin: 0 !important;
    font-size: 17px !important;
    line-height: 1.65 !important;
    font-weight: 600 !important;
}

.vct-redakce-section {
    margin-top: 28px !important;
}

.vct-redakce-section-heading {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 16px !important;
    padding-left: 16px !important;
    border-left: 4px solid #f73873 !important;
}

.vct-redakce-section-heading span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    background: rgba(247, 56, 115, 0.15) !important;
    border: 1px solid rgba(247, 56, 115, 0.38) !important;
    color: #f73873 !important;
    font-size: 12px !important;
    font-weight: 950 !important;
}

.vct-redakce-section-heading h3 {
    color: #fff !important;
    margin: 0 !important;
    font-size: 24px !important;
    line-height: 1.15 !important;
    font-weight: 950 !important;
    letter-spacing: -0.035em !important;
}

.vct-redakce-grid {
    display: grid !important;
    gap: 22px !important;
}

.vct-redakce-grid-leaders {
    grid-template-columns: 1fr !important;
}

.vct-redakce-grid-external {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.vct-redakce-person {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 132px minmax(0, 1fr) !important;
    gap: 22px !important;
    align-items: center !important;
    background: #111114 !important;
    border: 1px solid #25252b !important;
    border-radius: 18px !important;
    padding: 22px !important;
    overflow: hidden !important;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.38) !important;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease !important;
}

.vct-redakce-person::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: radial-gradient(circle at top left, rgba(247, 56, 115, 0.13), transparent 36%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.22s ease !important;
}

.vct-redakce-person:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(247, 56, 115, 0.72) !important;
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.56) !important;
}

.vct-redakce-person:hover::before {
    opacity: 1 !important;
}

.vct-redakce-person-featured {
    grid-template-columns: 180px minmax(0, 1fr) !important;
    padding: 28px !important;
    border-radius: 20px !important;
}

.vct-redakce-avatar-wrap,
.vct-redakce-person-content {
    position: relative !important;
    z-index: 2 !important;
}

.vct-redakce-avatar-link {
    display: block !important;
    width: 132px !important;
    height: 132px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background: #0d0d10 !important;
    border: 1px solid #2f2f36 !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45) !important;
}

.vct-redakce-person-featured .vct-redakce-avatar-link {
    width: 180px !important;
    height: 180px !important;
    border-radius: 22px !important;
}

.vct-redakce-avatar {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.vct-redakce-role {
    display: inline-flex !important;
    width: fit-content !important;
    align-items: center !important;
    background: rgba(247, 56, 115, 0.15) !important;
    border: 1px solid rgba(247, 56, 115, 0.36) !important;
    color: #f73873 !important;
    border-radius: 999px !important;
    padding: 7px 10px !important;
    margin-bottom: 12px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
}

.vct-redakce-name {
    margin: 0 0 6px !important;
    font-size: 28px !important;
    line-height: 1.08 !important;
    font-weight: 950 !important;
    letter-spacing: -0.045em !important;
}

.vct-redakce-person-featured .vct-redakce-name {
    font-size: 38px !important;
}

.vct-redakce-name a {
    color: #fff !important;
    text-decoration: none !important;
}

.vct-redakce-name a:hover {
    color: #f73873 !important;
}

.vct-redakce-handle {
    color: #8f8f99 !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
    font-weight: 850 !important;
    margin-bottom: 12px !important;
}

.vct-redakce-bio {
    color: #cfcfd6 !important;
    margin: 0 0 16px !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    font-weight: 600 !important;
}

.vct-redakce-person-featured .vct-redakce-bio {
    font-size: 16px !important;
}

.vct-redakce-actions {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.vct-redakce-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 38px !important;
    padding: 10px 14px !important;
    border-radius: 999px !important;
    background: #f73873 !important;
    border: 1px solid #f73873 !important;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease !important;
}

.vct-redakce-button:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: #111114 !important;
}

.vct-redakce-button-secondary {
    background: transparent !important;
    border-color: #34343b !important;
    color: #fff !important;
}

.vct-redakce-button-secondary:hover {
    background: rgba(247, 56, 115, 0.16) !important;
    border-color: rgba(247, 56, 115, 0.72) !important;
    color: #fff !important;
}

.vct-redakce-empty {
    background: #111114 !important;
    border: 1px solid #25252b !important;
    color: #aaaab2 !important;
    border-radius: 14px !important;
    padding: 18px !important;
    margin: 0 !important;
}

@media (max-width: 900px) {
    .vct-redakce-grid-external {
        grid-template-columns: 1fr !important;
    }

    .vct-redakce-person,
    .vct-redakce-person-featured {
        grid-template-columns: 110px minmax(0, 1fr) !important;
        padding: 20px !important;
    }

    .vct-redakce-avatar-link,
    .vct-redakce-person-featured .vct-redakce-avatar-link {
        width: 110px !important;
        height: 110px !important;
        border-radius: 16px !important;
    }

    .vct-redakce-name,
    .vct-redakce-person-featured .vct-redakce-name {
        font-size: 28px !important;
    }
}

@media (max-width: 620px) {
    .vct-redakce-hero {
        padding: 26px 22px !important;
        border-radius: 18px !important;
    }

    .vct-redakce-person,
    .vct-redakce-person-featured {
        grid-template-columns: 1fr !important;
    }

    .vct-redakce-avatar-link,
    .vct-redakce-person-featured .vct-redakce-avatar-link {
        width: 128px !important;
        height: 128px !important;
    }
}

/* =========================================================
   VIPERRA - REDAKCE SHORTCODE
   Shortcode: [vct_redakce]
   ========================================================= */

.vct-redakce-wrap {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
}

.vct-redakce-hero {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    background: #111114 !important;
    border: 1px solid #25252b !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42) !important;
}

.vct-redakce-photo-wrap {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16 / 7 !important;
    overflow: hidden !important;
    background: #08080b !important;
}

.vct-redakce-photo-wrap::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.72) 100%),
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.26), transparent 42%) !important;
    pointer-events: none !important;
}

.vct-redakce-photo {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

.vct-redakce-hero-content {
    padding: 24px !important;
}

.vct-redakce-kicker {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    color: #f73873 !important;
    background: rgba(247, 56, 115, 0.13) !important;
    border: 1px solid rgba(247, 56, 115, 0.35) !important;
    border-radius: 999px !important;
    padding: 7px 11px !important;
    margin-bottom: 14px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
}

.vct-redakce-hero h2 {
    color: #fff !important;
    margin: 0 0 10px !important;
    font-size: clamp(32px, 4vw, 58px) !important;
    line-height: 1.02 !important;
    font-weight: 950 !important;
    letter-spacing: -0.055em !important;
}

.vct-redakce-hero p {
    color: #cfcfd6 !important;
    max-width: 760px !important;
    margin: 0 !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    font-weight: 650 !important;
}

.vct-redakce-section {
    width: 100% !important;
}

.vct-redakce-section-heading {
    margin: 0 0 16px !important;
    padding-left: 14px !important;
    border-left: 4px solid #f73873 !important;
}

.vct-redakce-section-heading h3 {
    color: #fff !important;
    margin: 0 !important;
    font-size: 24px !important;
    line-height: 1.2 !important;
    font-weight: 950 !important;
    letter-spacing: -0.035em !important;
}

.vct-redakce-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: 100% !important;
}

.vct-redakce-person {
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: 170px minmax(0, 1fr) !important;
    gap: 24px !important;
    align-items: center !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.10), transparent 34%),
        #111114 !important;
    border: 1px solid #25252b !important;
    border-radius: 18px !important;
    padding: 22px !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.vct-redakce-person-avatar {
    width: 170px !important;
    height: 170px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background: #08080b !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5) !important;
}

.vct-redakce-avatar-img,
.vct-redakce-person-avatar img {
    width: 170px !important;
    height: 170px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

.vct-redakce-person-content {
    min-width: 0 !important;
}

.vct-redakce-role {
    display: inline-flex !important;
    width: fit-content !important;
    max-width: 100% !important;
    color: #f73873 !important;
    background: rgba(247, 56, 115, 0.14) !important;
    border: 1px solid rgba(247, 56, 115, 0.38) !important;
    border-radius: 999px !important;
    padding: 8px 12px !important;
    margin: 0 0 12px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.09em !important;
}

.vct-redakce-name {
    color: #fff !important;
    margin: 0 0 5px !important;
    font-size: 28px !important;
    line-height: 1.08 !important;
    font-weight: 950 !important;
    letter-spacing: -0.045em !important;
}

.vct-redakce-handle {
    color: #8f8f98 !important;
    margin-bottom: 12px !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    font-weight: 850 !important;
}

.vct-redakce-bio {
    color: #cfcfd6 !important;
    max-width: 760px !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    font-weight: 650 !important;
}

.vct-redakce-bio p {
    margin: 0 0 1em !important;
}

.vct-redakce-bio p:last-child {
    margin-bottom: 0 !important;
}

.vct-redakce-actions {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 18px !important;
}

.vct-redakce-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    background: #f73873 !important;
    border: 1px solid #f73873 !important;
    border-radius: 999px !important;
    padding: 11px 15px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    text-decoration: none !important;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease !important;
}

.vct-redakce-button:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: #111114 !important;
    transform: translateY(-1px) !important;
}

.vct-redakce-button-ghost {
    background: transparent !important;
    border-color: #34343b !important;
    color: #d8d8de !important;
}

@media (max-width: 760px) {
    .vct-redakce-photo-wrap {
        aspect-ratio: 16 / 10 !important;
    }

    .vct-redakce-hero-content {
        padding: 20px !important;
    }

    .vct-redakce-person {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        padding: 18px !important;
    }

    .vct-redakce-person-avatar,
    .vct-redakce-avatar-img,
    .vct-redakce-person-avatar img {
        width: 132px !important;
        height: 132px !important;
    }

    .vct-redakce-name {
        font-size: 24px !important;
    }
}
/* =========================================================
   VIPERRA - REDAKCE SHORTCODE
   Shortcode: [vct_redakce]
   ========================================================= */

/* Skryje duplicitní H1 stránky, když je na stránce shortcode Redakce.
   Breadcrumbs zůstanou zachované. */
.vct-page-card:has(.vct-redakce-wrap) .vct-page-title,
.vct-single-article-card:has(.vct-redakce-wrap) .vct-single-title {
    display: none !important;
}

.vct-page-card:has(.vct-redakce-wrap) .vct-page-header,
.vct-single-article-card:has(.vct-redakce-wrap) .vct-single-header {
    margin-bottom: 0 !important;
}

.vct-redakce-wrap {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
}

.vct-redakce-hero {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    background: #111114 !important;
    border: 1px solid #25252b !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42) !important;
}

.vct-redakce-photo-wrap {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16 / 7 !important;
    overflow: hidden !important;
    background: #08080b !important;
}

.vct-redakce-photo-wrap::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.72) 100%),
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.26), transparent 42%) !important;
    pointer-events: none !important;
}

.vct-redakce-photo {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

.vct-redakce-hero-content {
    padding: 24px !important;
}

.vct-redakce-hero h2 {
    color: #fff !important;
    margin: 0 0 10px !important;
    font-size: clamp(32px, 4vw, 58px) !important;
    line-height: 1.02 !important;
    font-weight: 950 !important;
    letter-spacing: -0.055em !important;
}

.vct-redakce-hero p {
    color: #cfcfd6 !important;
    max-width: 760px !important;
    margin: 0 !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    font-weight: 650 !important;
}

.vct-redakce-section {
    width: 100% !important;
}

.vct-redakce-section-heading {
    margin: 0 0 16px !important;
    padding-left: 14px !important;
    border-left: 4px solid #f73873 !important;
}

.vct-redakce-section-heading h3 {
    color: #fff !important;
    margin: 0 !important;
    font-size: 24px !important;
    line-height: 1.2 !important;
    font-weight: 950 !important;
    letter-spacing: -0.035em !important;
}

.vct-redakce-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: 100% !important;
}

.vct-redakce-person {
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: 170px minmax(0, 1fr) !important;
    gap: 24px !important;
    align-items: center !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.10), transparent 34%),
        #111114 !important;
    border: 1px solid #25252b !important;
    border-radius: 18px !important;
    padding: 22px !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.vct-redakce-person-avatar {
    width: 170px !important;
    height: 170px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background: #08080b !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5) !important;
}

.vct-redakce-avatar-img,
.vct-redakce-person-avatar img {
    width: 170px !important;
    height: 170px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

.vct-redakce-person-content {
    min-width: 0 !important;
}

.vct-redakce-role {
    display: inline-flex !important;
    width: fit-content !important;
    max-width: 100% !important;
    color: #f73873 !important;
    background: rgba(247, 56, 115, 0.14) !important;
    border: 1px solid rgba(247, 56, 115, 0.38) !important;
    border-radius: 999px !important;
    padding: 8px 12px !important;
    margin: 0 0 12px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.09em !important;
}

.vct-redakce-name {
    color: #fff !important;
    margin: 0 0 5px !important;
    font-size: 28px !important;
    line-height: 1.08 !important;
    font-weight: 950 !important;
    letter-spacing: -0.045em !important;
}

.vct-redakce-handle {
    color: #8f8f98 !important;
    margin-bottom: 12px !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    font-weight: 850 !important;
}

.vct-redakce-bio {
    color: #cfcfd6 !important;
    max-width: 760px !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    font-weight: 650 !important;
}

.vct-redakce-bio p {
    margin: 0 0 1em !important;
}

.vct-redakce-bio p:last-child {
    margin-bottom: 0 !important;
}

.vct-redakce-actions {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 18px !important;
}

.vct-redakce-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    background: #f73873 !important;
    border: 1px solid #f73873 !important;
    border-radius: 999px !important;
    padding: 11px 15px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    text-decoration: none !important;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease !important;
}

.vct-redakce-button:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: #111114 !important;
    transform: translateY(-1px) !important;
}

.vct-redakce-button-ghost {
    background: transparent !important;
    border-color: #34343b !important;
    color: #d8d8de !important;
}

@media (max-width: 760px) {
    .vct-redakce-photo-wrap {
        aspect-ratio: 16 / 10 !important;
    }

    .vct-redakce-hero-content {
        padding: 20px !important;
    }

    .vct-redakce-person {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        padding: 18px !important;
    }

    .vct-redakce-person-avatar,
    .vct-redakce-avatar-img,
    .vct-redakce-person-avatar img {
        width: 132px !important;
        height: 132px !important;
    }

    .vct-redakce-name {
        font-size: 24px !important;
    }
}
/* =========================================================
   VIPERRA - CUSTOM SIDEBAR ODKAZY
   ========================================================= */

.vct-custom-sidebar-links {
    display: flex !important;
    flex-direction: column !important;
    margin: 4px 0 0 !important;
    padding: 0 !important;
}

.vct-custom-sidebar-links a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 50px !important;
    padding: 0 !important;
    color: #f2f2f5 !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.045em !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09) !important;
    transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease !important;
}

.vct-custom-sidebar-links a:last-child {
    border-bottom: 0 !important;
}

.vct-custom-sidebar-links a::before {
    content: "" !important;
    display: block !important;
    width: 7px !important;
    height: 7px !important;
    min-width: 7px !important;
    flex: 0 0 7px !important;
    border-radius: 2px !important;
    background: #f73873 !important;
    transform: rotate(45deg) !important;
    box-shadow: 0 0 0 4px rgba(247, 56, 115, 0.12) !important;
}

.vct-custom-sidebar-links a:hover {
    color: #f73873 !important;
    border-color: rgba(247, 56, 115, 0.28) !important;
    transform: translateX(3px) !important;
}
/* =========================================================
   VIPERRA - REDAKCE / AUTOR / OBSAH
   URL: /redakce/{nick}/obsah/
   ========================================================= */

.vct-redakce-content-page {
    width: 100% !important;
    max-width: 1320px !important;
    margin: 0 auto !important;
    padding: 34px 44px 64px !important;
    box-sizing: border-box !important;
}

.vct-redakce-content-hero {
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.18), transparent 34%),
        linear-gradient(135deg, #15151a, #101014) !important;
    border: 1px solid #25252b !important;
    border-radius: 18px !important;
    padding: 26px !important;
    margin: 0 0 30px !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42) !important;
    overflow: hidden !important;
}

.vct-redakce-content-hero .vct-breadcrumbs {
    margin-bottom: 24px !important;
}

.vct-redakce-content-hero-inner {
    display: flex !important;
    align-items: center !important;
    gap: 22px !important;
}

.vct-redakce-content-avatar {
    width: 104px !important;
    height: 104px !important;
    min-width: 104px !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    background: #08080b !important;
    border: 1px solid rgba(247, 56, 115, 0.42) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42) !important;
}

.vct-redakce-content-avatar img,
.vct-redakce-content-avatar-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.vct-redakce-content-kicker {
    color: #f73873 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    margin: 0 0 9px !important;
}

.vct-redakce-content-title-wrap h1 {
    color: #fff !important;
    margin: 0 !important;
    font-size: clamp(34px, 4vw, 58px) !important;
    line-height: 1.02 !important;
    font-weight: 950 !important;
    letter-spacing: -0.055em !important;
}

.vct-redakce-content-handle {
    color: #aaaab2 !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    margin: 8px 0 0 !important;
}

.vct-redakce-content-title-wrap p {
    color: #d4d4dc !important;
    max-width: 760px !important;
    margin: 14px 0 0 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    font-weight: 600 !important;
}

.vct-redakce-content-section {
    margin: 0 0 34px !important;
}

.vct-redakce-content-section-head {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 18px !important;
    margin: 0 0 20px !important;
    padding-left: 16px !important;
    border-left: 4px solid #f73873 !important;
}

.vct-redakce-content-section-head span {
    display: block !important;
    color: #f73873 !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    margin-bottom: 6px !important;
}

.vct-redakce-content-section-head h2 {
    color: #fff !important;
    margin: 0 !important;
    font-size: 28px !important;
    line-height: 1.12 !important;
    font-weight: 950 !important;
    letter-spacing: -0.04em !important;
}

.vct-redakce-content-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.vct-redakce-content-card {
    background: #111114 !important;
    border: 1px solid #25252b !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35) !important;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease !important;
}

.vct-redakce-content-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(247, 56, 115, 0.75) !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55) !important;
}

.vct-redakce-content-card-link {
    display: block !important;
    height: 100% !important;
    color: inherit !important;
    text-decoration: none !important;
}

.vct-redakce-content-image-wrap {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    overflow: hidden !important;
    background: #1a1a1f !important;
}



.vct-redakce-content-card-review .vct-redakce-content-image-wrap {
    aspect-ratio: 1 / 1 !important;
    background: #08080b !important;
}

.vct-redakce-content-card-review .vct-redakce-content-image {
    object-fit: contain !important;
    padding: 0 !important;
    background: #08080b !important;
}

.vct-redakce-content-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    transition: transform 0.28s ease, filter 0.28s ease !important;
}

.vct-redakce-content-card:hover 

.vct-redakce-content-card-review .vct-redakce-content-image-wrap {
    aspect-ratio: 1 / 1 !important;
    background: #08080b !important;
}

.vct-redakce-content-card-review .vct-redakce-content-image {
    object-fit: contain !important;
    padding: 0 !important;
    background: #08080b !important;
}

.vct-redakce-content-image {
    transform: scale(1.045) !important;
    filter: brightness(1.08) !important;
}

.vct-redakce-content-placeholder {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.24), transparent 36%),
        linear-gradient(135deg, #15151a, #0b0b0d) !important;
}

.vct-redakce-content-placeholder span {
    color: rgba(255, 255, 255, 0.26) !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: 0.16em !important;
}

.vct-redakce-content-category {
    position: absolute !important;
    left: 14px !important;
    bottom: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    max-width: calc(100% - 28px) !important;
    background: #f73873 !important;
    color: #fff !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    padding: 8px 10px !important;
    border-radius: 999px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45) !important;
}

.vct-redakce-content-body {
    padding: 18px 18px 20px !important;
}

.vct-redakce-content-meta {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 7px !important;
    color: #f73873 !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    font-weight: 850 !important;
    margin-bottom: 10px !important;
}

.vct-redakce-content-body h2 {
    color: #fff !important;
    margin: 0 0 11px !important;
    font-size: 20px !important;
    line-height: 1.22 !important;
    font-weight: 950 !important;
    letter-spacing: -0.025em !important;
}

.vct-redakce-content-card:hover .vct-redakce-content-body h2 {
    color: #f73873 !important;
}

.vct-redakce-content-body p {
    color: #c0c0c7 !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
    margin: 0 0 16px !important;
}

.vct-redakce-content-button {
    display: inline-flex !important;
    align-items: center !important;
    color: #fff !important;
    background: transparent !important;
    border: 1px solid #34343b !important;
    border-radius: 999px !important;
    padding: 9px 14px !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
}

.vct-redakce-content-card:hover .vct-redakce-content-button {
    background: #f73873 !important;
    border-color: #f73873 !important;
    color: #fff !important;
}

.vct-redakce-content-card:hover .vct-play-icon {
    transform: translate(-50%, -50%) scale(1.08) !important;
    background: #f73873 !important;
    border-color: rgba(247, 56, 115, 0.95) !important;
    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.58),
        0 0 0 9px rgba(247, 56, 115, 0.18) !important;
}

.vct-redakce-content-empty {
    background: #111114 !important;
    border: 1px solid #25252b !important;
    border-radius: 14px !important;
    padding: 22px !important;
    color: #aaaab2 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    font-weight: 700 !important;
}

.vct-redakce-content-pagination {
    margin-top: 34px !important;
}

.vct-redakce-content-pagination ul {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.vct-redakce-content-pagination a,
.vct-redakce-content-pagination span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 38px !important;
    height: 38px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    background: #111114 !important;
    border: 1px solid #25252b !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

.vct-redakce-content-pagination .current,
.vct-redakce-content-pagination a:hover {
    background: #f73873 !important;
    border-color: #f73873 !important;
    color: #fff !important;
}

@media (max-width: 1180px) {
    .vct-redakce-content-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    .vct-redakce-content-page {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .vct-redakce-content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 620px) {
    .vct-redakce-content-page {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .vct-redakce-content-hero {
        padding: 22px !important;
    }

    .vct-redakce-content-hero-inner {
        align-items: flex-start !important;
        flex-direction: column !important;
    }

    .vct-redakce-content-grid {
        grid-template-columns: 1fr !important;
    }
}
/* =========================================================
   VIPERRA - KONTAKTNÍ FORMULÁŘ
   Shortcode: [vct_kontakt]
   ========================================================= */

.vct-contact-modal-card {
    position: relative !important;
    width: 100% !important;
    max-width: 980px !important;
    margin: 0 auto !important;
    padding: 32px !important;
    border-radius: 22px !important;
    background:
        radial-gradient(circle at top left, rgba(247, 56, 115, 0.13), transparent 34%),
        linear-gradient(145deg, #15151a 0%, #101014 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55) !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.vct-contact-glow {
    position: absolute !important;
    right: -120px !important;
    top: -140px !important;
    width: 320px !important;
    height: 320px !important;
    border-radius: 50% !important;
    background: rgba(247, 56, 115, 0.16) !important;
    filter: blur(40px) !important;
    pointer-events: none !important;
}

.vct-contact-header {
    position: relative !important;
    z-index: 1 !important;
    max-width: 760px !important;
    margin-bottom: 28px !important;
}

.vct-contact-kicker {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    margin-bottom: 12px !important;
    padding: 7px 10px !important;
    border-radius: 999px !important;
    background: rgba(247, 56, 115, 0.14) !important;
    border: 1px solid rgba(247, 56, 115, 0.34) !important;
    color: #f73873 !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.09em !important;
}

.vct-contact-header h2 {
    color: #fff !important;
    margin: 0 0 12px !important;
    font-size: clamp(30px, 4vw, 52px) !important;
    line-height: 1.02 !important;
    font-weight: 950 !important;
    letter-spacing: -0.055em !important;
}

.vct-contact-header p {
    color: #c9c9d1 !important;
    margin: 0 !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    font-weight: 550 !important;
}

.vct-contact-form {
    position: relative !important;
    z-index: 1 !important;
}

.vct-contact-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.vct-contact-field {
    margin-bottom: 18px !important;
}

.vct-contact-field label {
    display: block !important;
    color: #aaaab2 !important;
    margin-bottom: 8px !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.065em !important;
}

.vct-contact-field input[type="text"],
.vct-contact-field input[type="email"],
.vct-contact-field select,
.vct-contact-field textarea {
    width: 100% !important;
    min-height: 48px !important;
    padding: 13px 15px !important;
    border-radius: 12px !important;
    background: #1b1b20 !important;
    border: 1px solid #2b2b33 !important;
    color: #fff !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
    outline: none !important;
    box-sizing: border-box !important;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease !important;
}

.vct-contact-field select {
    appearance: none !important;
    background-image: linear-gradient(45deg, transparent 50%, #f73873 50%), linear-gradient(135deg, #f73873 50%, transparent 50%) !important;
    background-position: calc(100% - 20px) 20px, calc(100% - 14px) 20px !important;
    background-size: 6px 6px, 6px 6px !important;
    background-repeat: no-repeat !important;
}

.vct-contact-field textarea {
    min-height: 190px !important;
    resize: vertical !important;
}

.vct-contact-field input:focus,
.vct-contact-field select:focus,
.vct-contact-field textarea:focus {
    border-color: #f73873 !important;
    background: #202027 !important;
    box-shadow: 0 0 0 4px rgba(247, 56, 115, 0.12) !important;
}

.vct-contact-field input[readonly] {
    color: #d8d8df !important;
    background: #18181d !important;
    cursor: not-allowed !important;
}

.vct-contact-field small {
    display: block !important;
    margin-top: 7px !important;
    color: #888891 !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    font-weight: 650 !important;
}

.vct-contact-file-row {
    padding: 16px !important;
    margin: 4px 0 18px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px dashed rgba(255, 255, 255, 0.14) !important;
}

.vct-contact-file-field {
    margin-bottom: 0 !important;
}

.vct-contact-field input[type="file"] {
    width: 100% !important;
    color: #cfcfd6 !important;
    font-size: 13px !important;
}

.vct-contact-field input[type="file"]::file-selector-button {
    margin-right: 12px !important;
    padding: 10px 13px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #f73873 !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.055em !important;
    cursor: pointer !important;
}

.vct-contact-turnstile-wrap {
    display: flex !important;
    justify-content: center !important;
    margin: 18px 0 !important;
}

.vct-contact-status {
    display: none;
    margin: 0 0 18px !important;
    padding: 14px 15px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    font-weight: 800 !important;
}

.vct-contact-status.success {
    display: block !important;
    color: #2ecc71 !important;
    background: rgba(46, 204, 113, 0.11) !important;
    border: 1px solid rgba(46, 204, 113, 0.48) !important;
}

.vct-contact-status.error {
    display: block !important;
    color: #ff7474 !important;
    background: rgba(231, 76, 60, 0.11) !important;
    border: 1px solid rgba(231, 76, 60, 0.48) !important;
}

.vct-contact-submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 52px !important;
    padding: 14px 18px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #f73873 !important;
    color: #fff !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.085em !important;
    cursor: pointer !important;
    box-shadow: 0 16px 34px rgba(247, 56, 115, 0.24) !important;
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease !important;
}

.vct-contact-submit:hover {
    background: #de265e !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 18px 42px rgba(247, 56, 115, 0.34) !important;
}

.vct-contact-submit:disabled {
    opacity: 0.62 !important;
    cursor: wait !important;
    transform: none !important;
}

@media (max-width: 760px) {
    .vct-contact-modal-card {
        padding: 24px !important;
        border-radius: 18px !important;
    }

    .vct-contact-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .vct-contact-header p {
        font-size: 15px !important;
    }
}
/* =========================================================
   VIPERRA - KONTAKT FORM FIXES
   ========================================================= */

/* Odesílací tlačítko - ne přes celou šířku */
.vct-contact-form .vct-contact-submit-wrap {
    display: flex !important;
    justify-content: center !important;
    margin-top: 28px !important;
}

.vct-contact-form button[type="submit"],
.vct-contact-form .vct-contact-submit {
    width: auto !important;
    min-width: 230px !important;
    max-width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px 34px !important;
    border-radius: 999px !important;
    background: #f73873 !important;
    color: #ffffff !important;
    border: 0 !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    cursor: pointer !important;
    box-shadow: 0 14px 34px rgba(247, 56, 115, 0.24) !important;
}

.vct-contact-form button[type="submit"]:hover,
.vct-contact-form .vct-contact-submit:hover {
    background: #de265e !important;
    box-shadow: 0 18px 42px rgba(247, 56, 115, 0.34) !important;
    transform: translateY(-1px) !important;
}

/* File input - oprava useknutého tlačítka */
.vct-contact-form input[type="file"] {
    width: 100% !important;
    min-height: 54px !important;
    padding: 8px 12px !important;
    background: #2a2a30 !important;
    border: 1px solid #34343c !important;
    border-radius: 0 !important;
    color: #cfcfd6 !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
}

.vct-contact-form input[type="file"]::file-selector-button {
    min-height: 38px !important;
    padding: 0 18px !important;
    margin-right: 12px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #f73873 !important;
    color: #ffffff !important;
    font-size: 13px !important;
    line-height: 38px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    cursor: pointer !important;
}

.vct-contact-form input[type="file"]::file-selector-button:hover {
    background: #de265e !important;
}