/* Full-width shell fix: removes theme top spacing around the hub when it is placed as the first content block. */
.entry-content:has(> .tvm-video-hub:first-child),
.wp-block-post-content:has(> .tvm-video-hub:first-child),
.site-main:has(.tvm-video-hub:first-child),
main:has(.tvm-video-hub:first-child) {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.entry-content > .tvm-video-hub:first-child,
.wp-block-post-content > .tvm-video-hub:first-child,
.site-main > .tvm-video-hub:first-child,
main > .tvm-video-hub:first-child {
    margin-top: 0 !important;
}

.tvm-hero {
    display: grid;
    gap: 18px;
    width: 100%;
    margin: 0 0 24px;
    padding: var(--tvm-header-pad-y) 0 max(8px, calc(var(--tvm-header-pad-y) - 4px));
    background:
        radial-gradient(circle at 50% 50%, rgba(181, 63, 43, 0.08), transparent 38%),
        var(--tvm-header-bg);
    border-bottom: 1px solid rgba(32, 24, 20, 0.06);
}

.tvm-hero__top,
.tvm-category-nav,
.tvm-layout,
.tvm-footer__inner {
    width: min(var(--tvm-shell-max), calc(100% - 64px));
    margin-left: auto;
    margin-right: auto;
}

.tvm-hero__top {
    display: grid;
    grid-template-columns: minmax(0, var(--tvm-header-left-col)) minmax(80px, var(--tvm-header-logo-col)) minmax(0, var(--tvm-header-right-col));
    width: min(var(--tvm-header-max), calc(100% - var(--tvm-header-side-pad)));
    align-items: center;
    gap: var(--tvm-header-gap);
    min-height: var(--tvm-header-min-h);
}

.tvm-hero__brand-col,
.tvm-hero__logo-col,
.tvm-hero__live-col {
    display: flex;
    min-width: 0;
}

.tvm-hero__brand-col {
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    height: 100%;
}

.tvm-hero__brand-copy {
    display: grid;
    gap: 8px;
    min-width: 0;
    max-width: 420px;
    text-align: left;
}

.tvm-hero__logo-col {
    align-items: center;
    justify-content: center;
    height: 100%;
}

.tvm-hero__live-col {
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.tvm-site-logo {
    width: clamp(92px, var(--tvm-logo-size), 150px);
    height: clamp(92px, var(--tvm-logo-size), 150px);
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
    opacity: var(--tvm-logo-opacity);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.tvm-site-logo__placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
    background: linear-gradient(135deg, #171717, var(--tvm-accent));
}

.tvm-site-logo:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 18px 36px rgba(180, 32, 32, 0.24);
    opacity: 1;
}

.tvm-site-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tvm-eyebrow {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    color: var(--tvm-accent);
}

.tvm-hero h2 {
    margin: 0;
    font-size: clamp(34px, 4.6vw, 54px);
    line-height: 1.02;
    font-weight: 760;
    letter-spacing: -0.045em;
    color: #201814;
}

.tvm-intro {
    max-width: 24ch;
    margin: 12px 0 0;
    font-size: 18px;
}

.tvm-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tvm-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.tvm-live-box {
    border: 0;
    border-radius: 24px;
    padding: 18px 20px;
    width: min(100%, 400px);
    min-height: 126px;
    background: linear-gradient(135deg, #a61922, #5f1015);
    box-shadow: 0 20px 42px rgba(166, 25, 34, 0.24);
    text-align: left;
    cursor: pointer;
    color: #ffffff;
    display: grid;
    align-content: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.tvm-live-box:disabled {
    cursor: default;
}

.tvm-live-box.is-offline {
    cursor: default;
    background: linear-gradient(135deg, rgba(35, 28, 25, 0.94), rgba(24, 18, 16, 0.92));
    box-shadow: 0 18px 34px rgba(32, 24, 20, 0.16);
}

.tvm-live-box__status {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.tvm-live-box.is-live .tvm-live-box__status {
    background: rgba(255, 255, 255, 0.2);
}

.tvm-live-box.is-offline .tvm-live-box__status {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.tvm-live-box__body {
    display: flex;
    gap: 12px;
    align-items: center;
}

.tvm-live-box__logo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    flex: 0 0 auto;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.tvm-live-box__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tvm-live-box__logo--placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    background: linear-gradient(135deg, #171717, var(--tvm-accent));
}

.tvm-live-box__meta {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.tvm-live-box__meta strong,
.tvm-live-box__meta small {
    color: #ffffff;
}

.tvm-live-box__meta strong {
    line-height: 1.25;
}

.tvm-live-box.is-live:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(180, 32, 32, 0.3);
}

 .tvm-live-box__meta small:last-child {
    opacity: 0.86;
    line-height: 1.35;
}

.tvm-socials__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--tvm-panel-bg);
    color: #1f1a17;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.tvm-socials__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--tvm-accent);
    color: #fff;
    font-weight: 700;
}

.tvm-category-nav a,
.tvm-footer button,
.tvm-contact-form button {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 12px 16px;
    background: #201814;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.tvm-category-nav a.is-active {
    background: var(--tvm-accent);
}

.tvm-category-nav a:hover,
.tvm-socials__link:hover,
.tvm-footer button:hover,
.tvm-contact-form button:hover {
    transform: translateY(-1px);
}

.tvm-category-nav a:focus-visible,
.tvm-socials__link:focus-visible,
.tvm-top10__button:focus-visible,
.tvm-card__button:focus-visible,
.tvm-footer button:focus-visible,
.tvm-contact-form button:focus-visible,
.tvm-pagination a:focus-visible {
    outline: 2px solid var(--tvm-accent);
    outline-offset: 3px;
}

.tvm-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.tvm-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 30px;
    align-items: start;
    padding-bottom: 24px;
}

.tvm-main {
    min-width: 0;
}

.tvm-sidebar {
    position: sticky;
    top: 24px;
}

.tvm-top10 {
    background: var(--tvm-panel-bg);
    border-radius: 24px;
    padding: 24px 22px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
}

.tvm-top10 h3 {
    margin: 0 0 18px;
    font-size: 24px;
}

.tvm-top10__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.tvm-top10__button {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    text-align: center;
    cursor: pointer;
    padding: 14px;
    color: #161616;
    transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.tvm-top10__button img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
}

.tvm-top10__media {
    position: relative;
}

.tvm-top10__icon {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #111111;
    color: #ffffff;
    font-size: 15px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
}

.tvm-top10__text {
    display: grid;
    gap: 6px;
    justify-items: center;
    padding: 0 8px;
}

.tvm-top10__button strong {
    color: #181818;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 15ch;
    font-size: 17px;
}

.tvm-top10__button small {
    color: #3a3a3a;
}

.tvm-top10__button:hover {
    background: #b42020;
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(180, 32, 32, 0.24);
    transform: translateY(-2px);
}

.tvm-top10__button:hover strong,
.tvm-top10__button:hover small {
    color: #ffffff;
}

.tvm-top10__button:hover .tvm-top10__icon {
    background: #ffffff;
    color: #b42020;
}

.tvm-pagination {
    margin-top: 26px;
}

.tvm-pagination .page-numbers {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.tvm-pagination a,
.tvm-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--tvm-panel-bg);
    color: #1f1a17;
    text-decoration: none;
}

.tvm-pagination .current {
    background: var(--tvm-accent);
    color: #fff;
}

.tvm-card {
    background: var(--tvm-panel-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.tvm-card[hidden] {
    display: none;
}

.tvm-card__button {
    display: grid;
    grid-template-rows: auto 1fr;
    width: 100%;
    height: 100%;
    padding: 0;
    text-align: left;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #161616;
}

.tvm-card__thumb {
    width: min(76%, 320px);
    margin: 16px auto 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 18px;
    background: #111;
}

.tvm-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tvm-card__content {
    display: grid;
    gap: 12px;
    width: min(84%, 320px);
    margin: 0 auto;
    padding: 18px 0 20px;
    align-content: start;
    min-height: 190px;
}

.tvm-card__title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    color: #151515;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tvm-card__description {
    color: #353535;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15px;
}

.tvm-card:hover {
    background: #1566b2;
    transform: translateY(-3px);
    box-shadow: 0 24px 46px rgba(21, 102, 178, 0.2);
}

.tvm-card:hover .tvm-card__title,
.tvm-card:hover .tvm-card__description {
    color: #ffffff;
}

.tvm-footer {
    width: 100%;
    margin: 26px 0 0;
    padding: 28px 0 30px;
    background: var(--tvm-footer-bg);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.tvm-footer__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.tvm-footer__copy {
    display: grid;
    gap: 6px;
    color: #fff5ed;
}

.tvm-footer__copy strong {
    font-size: 22px;
    line-height: 1.1;
}

.tvm-footer__copy span {
    color: rgba(255, 245, 237, 0.78);
}

.tvm-footer__menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.tvm-footer button {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.tvm-footer button:hover {
    background: var(--tvm-accent);
}

.tvm-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 28%),
        linear-gradient(135deg, rgba(181, 63, 43, 0.2), transparent 42%);
    pointer-events: none;
}

.tvm-empty {
    grid-column: 1 / -1;
}

@media (max-width: 1360px) {
    .tvm-layout {
        grid-template-columns: minmax(0, 1fr) 260px;
    }
}

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

    .tvm-hero__top {
        grid-template-columns: 1fr;
        width: min(var(--tvm-shell-max), calc(100% - 28px));
        gap: 20px;
    }

    .tvm-hero__brand-col,
    .tvm-hero__live-col {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .tvm-socials {
        justify-content: center;
    }

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

    .tvm-sidebar {
        position: static;
    }

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

@media (max-width: 767px) {
    .tvm-hero__top {
        grid-template-columns: 1fr;
        width: min(var(--tvm-shell-max), calc(100% - 28px));
        gap: 20px;
    }

    .tvm-hero__brand-col,
    .tvm-hero__live-col {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .tvm-socials {
        justify-content: center;
    }

    .tvm-hero,
    .tvm-layout,
    .tvm-footer {
        width: 100%;
    }

    .tvm-card__content {
        width: min(88%, 260px);
        min-height: 148px;
        padding: 14px 0 16px;
    }

    .tvm-card__thumb {
        width: min(82%, 260px);
        margin-top: 12px;
        border-radius: 16px;
    }

    .tvm-card__title {
        font-size: 17px;
        -webkit-line-clamp: 3;
    }

    .tvm-top10__list {
        grid-template-columns: 1fr;
    }

    .tvm-footer__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tvm-footer__menu {
        justify-content: center;
    }
}

.tvm-live-box:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(180, 32, 32, 0.32);
    filter: saturate(1.08);
}

/* v1.0.19 — clean filters and live badge card */
.tvm-category-nav a,
.tvm-category-nav a:hover,
.tvm-category-nav a:focus,
.tvm-category-nav a:visited,
.tvm-category-nav a:active {
    text-decoration: none !important;
}

.tvm-live-box {
    text-decoration: none;
}

.tvm-live-box.is-offline,
.tvm-live-box.is-live {
    min-height: 118px;
}

.tvm-live-box.is-offline {
    display: grid;
    align-content: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(42, 34, 31, 0.92), rgba(24, 19, 17, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.tvm-live-box.is-offline .tvm-live-box__status {
    justify-self: start;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    box-shadow: none;
}

.tvm-live-box.is-offline .tvm-live-box__body {
    display: flex;
}

.tvm-live-box.is-live .tvm-live-box__status {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

/* v1.0.21 — calmer default header / cleaner live bridge */
.tvm-hero {
    margin-top: 0;
}

.tvm-hero h2 {
    font-size: clamp(38px, 4.2vw, 62px);
    font-weight: 760;
    letter-spacing: -0.055em;
    color: #211a16;
    text-wrap: balance;
}

.tvm-hero__brand-copy {
    gap: 10px;
}

.tvm-intro {
    color: #2b2420;
    line-height: 1.55;
}

.tvm-live-box {
    width: min(100%, 360px);
    min-height: 112px;
    border-radius: 24px;
    padding: 16px 18px;
}

.tvm-live-box.is-live {
    background: linear-gradient(135deg, #c4272e, #771116);
    box-shadow: 0 20px 42px rgba(196, 39, 46, 0.24);
}

.tvm-live-box.is-offline {
    background: linear-gradient(135deg, rgba(55, 46, 42, 0.96), rgba(31, 25, 22, 0.96));
    box-shadow: 0 18px 34px rgba(31, 25, 22, 0.16);
}

.tvm-live-box__status {
    margin-bottom: 11px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.18);
}

.tvm-category-nav {
    align-items: center;
}

/* v1.0.22 — cleaner video cards and stable category tabs */
.tvm-category-nav a {
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(31, 24, 20, 0.08);
}

.tvm-card {
    border: 1px solid rgba(32, 24, 20, 0.06);
}

.tvm-card__button {
    grid-template-rows: auto 1fr;
}

.tvm-card__thumb {
    width: calc(100% - 28px);
    margin: 14px auto 0;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(32, 24, 20, 0.12);
}

.tvm-card__content {
    width: calc(100% - 36px);
    min-height: 210px;
    padding: 16px 0 18px;
    gap: 10px;
}

.tvm-card__title {
    font-size: 20px;
    line-height: 1.18;
    -webkit-line-clamp: 3;
}

.tvm-card__categories,
.tvm-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.tvm-card__categories span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(201, 65, 50, 0.11);
    color: var(--tvm-accent);
    font-size: 12px;
    font-weight: 800;
}

.tvm-card__description {
    min-height: 62px;
    margin-top: 2px;
}

.tvm-card__meta {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(32, 24, 20, 0.08);
    justify-content: space-between;
    color: #6d5e52;
    font-size: 13px;
    font-weight: 700;
}

.tvm-card:hover .tvm-card__categories span {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.tvm-card:hover .tvm-card__meta {
    border-top-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.tvm-live-box__status {
    letter-spacing: 0.12em;
}

/* v1.0.23 — stable client-side category tabs and cleaner two-layer card. */
.tvm-category-nav a {
    line-height: 1;
    user-select: none;
}

.tvm-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.72), var(--tvm-panel-bg));
}

.tvm-card__button {
    gap: 0;
}

.tvm-card__thumb {
    position: relative;
    width: calc(100% - 24px);
    margin: 12px auto 0;
    border-radius: 22px;
}

.tvm-card__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 -42px 54px rgba(0,0,0,0.18);
    pointer-events: none;
}

.tvm-card__content {
    width: calc(100% - 34px);
    min-height: 220px;
    padding: 18px 0 20px;
    grid-template-rows: auto auto minmax(48px, auto) 1fr;
}

.tvm-card__title {
    font-size: 20px;
    line-height: 1.16;
    letter-spacing: -0.02em;
}

.tvm-card__categories {
    min-height: 28px;
}

.tvm-card__description {
    min-height: 58px;
    color: #433a34;
}

.tvm-card__meta {
    align-self: end;
    min-height: 44px;
}

.tvm-card__rating,
.tvm-card__views {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 32px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(32,24,20,0.06);
}

.tvm-card__rating span[aria-hidden="true"] {
    color: #d99a18;
}

.tvm-card:hover .tvm-card__rating,
.tvm-card:hover .tvm-card__views {
    background: rgba(255,255,255,0.18);
    color: #fff;
}

.tvm-rating__star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 1;
    color: #856b55;
}

.tvm-rating__star .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* v1.0.24 — audited canonical header/live/card polish. */
.tvm-hero {
    gap: 20px;
    padding: var(--tvm-header-pad-y) 0 22px;
    background:
        radial-gradient(circle at 50% 44%, rgba(23, 132, 195, 0.075), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.12)),
        var(--tvm-header-bg);
}

.tvm-hero__top {
    grid-template-columns: minmax(360px, 1fr) minmax(120px, var(--tvm-header-logo-col)) minmax(360px, 1fr);
    gap: var(--tvm-header-gap);
    min-height: var(--tvm-header-min-h);
}

.tvm-hero__brand-col {
    justify-content: flex-start;
}

.tvm-hero__brand-copy {
    max-width: none;
    gap: 11px;
}

.tvm-eyebrow {
    margin: 0;
    color: rgba(32, 24, 20, 0.64);
    letter-spacing: 0.24em;
    font-size: 11px;
    font-weight: 800;
}

.tvm-hero h2 {
    font-size: clamp(34px, 3.3vw, 48px);
    line-height: 1.02;
    font-weight: 780;
    letter-spacing: -0.055em;
    color: rgba(32, 24, 20, 0.96);
    text-wrap: nowrap;
}

.tvm-intro {
    max-width: none;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.35;
    color: rgba(16, 21, 26, 0.88);
    white-space: nowrap;
}

.tvm-site-logo {
    width: clamp(108px, var(--tvm-logo-size), 160px);
    height: clamp(108px, var(--tvm-logo-size), 160px);
    box-shadow: 0 20px 42px rgba(16, 75, 112, 0.18), 0 8px 20px rgba(32, 24, 20, 0.10);
}

.tvm-hero__live-col {
    justify-content: flex-end;
}

.tvm-live-box,
.tvm-live-box.is-offline,
.tvm-live-box.is-live {
    width: min(100%, 360px);
    min-height: 116px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(24, 126, 188, 0.28);
    background: rgba(255, 255, 255, 0.82);
    color: #171717;
    box-shadow: 0 18px 38px rgba(20, 40, 56, 0.11);
}

.tvm-live-box:not(:disabled):hover,
.tvm-live-box.is-live:hover,
.tvm-live-box.is-offline:hover {
    background: linear-gradient(135deg, #c93a32, #941d22);
    border-color: rgba(201, 58, 50, 0.9);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(148, 29, 34, 0.22);
}

.tvm-live-box__status,
.tvm-live-box.is-offline .tvm-live-box__status,
.tvm-live-box.is-live .tvm-live-box__status {
    margin-bottom: 12px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(201, 58, 50, 0.10);
    color: #941d22;
    box-shadow: inset 0 0 0 1px rgba(201, 58, 50, 0.14);
    letter-spacing: 0.12em;
}

.tvm-live-box:hover .tvm-live-box__status,
.tvm-live-box.is-live:hover .tvm-live-box__status,
.tvm-live-box.is-offline:hover .tvm-live-box__status {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.tvm-live-box__body {
    gap: 14px;
}

.tvm-live-box__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 18px;
    background: rgba(24, 126, 188, 0.10);
    color: #177ebc;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    box-shadow: inset 0 0 0 1px rgba(24, 126, 188, 0.16);
}

.tvm-live-box:hover .tvm-live-box__icon {
    background: rgba(255, 255, 255, 0.20);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.tvm-live-box__meta strong,
.tvm-live-box__meta small,
.tvm-live-box.is-offline .tvm-live-box__meta strong,
.tvm-live-box.is-offline .tvm-live-box__meta small {
    color: inherit;
}

.tvm-live-box__meta strong {
    font-size: 16px;
    line-height: 1.2;
}

.tvm-live-box__meta small {
    opacity: 0.86;
    line-height: 1.3;
}

.tvm-card__content {
    display: grid;
    grid-template-rows: auto auto minmax(54px, auto) auto;
    align-content: start;
}

.tvm-card__description {
    color: rgba(32, 24, 20, 0.74);
    line-height: 1.45;
}

.tvm-card:hover .tvm-card__description {
    color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 980px) {
    .tvm-hero__top {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .tvm-hero__brand-col,
    .tvm-hero__live-col {
        justify-content: center;
        text-align: center;
    }

    .tvm-hero__brand-copy {
        text-align: center;
    }

    .tvm-hero h2,
    .tvm-intro {
        white-space: normal;
    }
}

.tvm-footer__rights {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 245, 237, 0.72);
}

.tvm-footer__rights a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
}

.tvm-footer__rights a:hover {
    color: #7cc7ef;
}

.tvm-cookie-banner[hidden] {
    display: none;
}

.tvm-cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 10000;
    transform: translateX(-50%);
    width: min(920px, calc(100vw - 28px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 16px 15px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    color: #1f1a17;
    border: 1px solid rgba(21, 102, 178, 0.18);
    box-shadow: 0 18px 46px rgba(20, 28, 40, 0.22);
    backdrop-filter: blur(10px);
}

.tvm-cookie-banner__text {
    display: grid;
    gap: 3px;
    font-size: 14px;
    line-height: 1.35;
}

.tvm-cookie-banner__text strong {
    font-size: 15px;
    color: #1566b2;
}

.tvm-cookie-banner__text span {
    color: rgba(31, 26, 23, 0.78);
}

.tvm-cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.tvm-cookie-banner button {
    border: 0;
    border-radius: 999px;
    padding: 10px 15px;
    font-weight: 900;
    cursor: pointer;
    font-family: inherit;
}

.tvm-cookie-banner__link {
    background: rgba(21, 102, 178, 0.08);
    color: #1566b2;
}

.tvm-cookie-banner__accept {
    background: #1566b2;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(21, 102, 178, 0.22);
}

.tvm-cookie-banner__link:hover,
.tvm-cookie-banner__accept:hover {
    transform: translateY(-1px);
}

@media (max-width: 720px) {
    .tvm-cookie-banner {
        align-items: stretch;
        flex-direction: column;
    }

    .tvm-cookie-banner__actions {
        justify-content: flex-end;
        flex-wrap: wrap;
    }
}

/* v1.0.27 — footer owner text is intentionally not a link */
.tvm-footer__owner { color: inherit; font-weight: 700; text-decoration: none; }

.tvm-live-actions {
    width: min(100%, 400px);
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.tvm-live-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 44px;
    padding: 11px 16px;
    border-radius: 999px;
    background: #ffffff;
    color: #177ebc;
    border: 1px solid rgba(24, 126, 188, 0.24);
    box-shadow: 0 12px 26px rgba(17, 40, 58, 0.08);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.tvm-live-action:hover,
.tvm-live-action:focus-visible {
    background: #c93a32;
    color: #ffffff;
    border-color: rgba(201, 58, 50, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(148, 29, 34, 0.20);
    text-decoration: none;
}

.tvm-live-action__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(24, 126, 188, 0.10);
    color: inherit;
    font-size: 11px;
    line-height: 1;
}

.tvm-live-action:hover .tvm-live-action__icon,
.tvm-live-action:focus-visible .tvm-live-action__icon {
    background: rgba(255, 255, 255, 0.22);
}

/* v1.0.32 — live actions sit under the live card, centered as one module. */
.tvm-hero__live-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.tvm-hero__live-col .tvm-live-box,
.tvm-hero__live-col .tvm-live-actions {
    width: min(100%, 360px);
}

.tvm-hero__live-col .tvm-live-actions {
    margin: 12px 0 0;
    display: flex;
    justify-content: center;
}

.tvm-hero__live-col .tvm-live-action {
    width: 100%;
    max-width: 360px;
}

/* v1.0.33 — akcje pod relacją + moduł wydarzeń */
.tvm-live-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(100%, 400px);
    margin-top: 12px;
}

.tvm-live-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    padding: 11px 16px;
    background: #201814;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 26px rgba(32, 24, 20, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.tvm-live-action:hover,
.tvm-live-action:focus-visible {
    transform: translateY(-1px);
    background: #0f6ea8;
    box-shadow: 0 16px 30px rgba(15, 110, 168, 0.18);
}

.tvm-live-action__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 13px;
}

.tvm-live-action--listen { background: #0f6ea8; }
.tvm-live-action--share { background: #1f1815; }
.tvm-live-action--event { background: #b42020; }
.tvm-live-action--events { background: #0d5b44; }

.tvm-events-hub .tvm-hero__top,
.tvm-events-hero__top {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
}

.tvm-events-hero__actions {
    display: grid;
    gap: 10px;
    align-content: center;
}

.tvm-event-card__thumb {
    aspect-ratio: 4 / 5;
}

.tvm-event-card__share {
    display: inline-flex;
    width: fit-content;
    margin-top: 4px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 110, 168, 0.1);
    color: #0f6ea8;
    font-weight: 800;
    font-size: 13px;
}

.tvm-event-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

@media (max-width: 767px) {
    .tvm-live-actions {
        width: 100%;
    }

    .tvm-events-hero__actions {
        width: 100%;
    }
}

/* v1.0.34 — poprawiony układ akcji, kart wydarzeń i udostępniania */
.tvm-hero-actions {
    width: min(var(--tvm-shell-max), calc(100% - 32px));
    margin: 12px auto 18px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3px;
    flex-wrap: nowrap;
}

.tvm-hero-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-family: inherit;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(20, 28, 40, 0.12);
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.tvm-hero-action:hover,
.tvm-hero-action:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(20, 28, 40, 0.18);
}

.tvm-hero-action__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
}

.tvm-hero-action--event { background: #0d6b53; }
.tvm-hero-action--patron { background: #b42020; }

.tvm-events-strip {
    width: min(var(--tvm-shell-max), calc(100% - 32px));
    margin: 0 auto 24px;
}

.tvm-events-strip__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.tvm-events-strip__head h3 {
    margin: 0 0 4px;
    font-size: clamp(22px, 2.3vw, 30px);
    color: #17110d;
}

.tvm-events-strip__head p {
    margin: 0;
    color: rgba(23,17,13,.72);
}

.tvm-events-strip__head a {
    flex: 0 0 auto;
    color: #0f6ea8;
    font-weight: 900;
    text-decoration: underline;
}

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

.tvm-card--event .tvm-card__thumb {
    aspect-ratio: 4 / 5;
    background: #f2ece4;
    position: relative;
}

.tvm-card__thumb--event img {
    object-fit: cover;
}

.tvm-card__event-icon {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 107, 83, .94);
    color: #fff;
    font-size: 18px;
    box-shadow: 0 12px 22px rgba(0,0,0,.22);
}

.tvm-card__share,
.tvm-modal__share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border: 0;
    border-radius: 999px;
    padding: 9px 13px;
    margin: 0 0 16px 8%;
    background: rgba(15, 110, 168, 0.10);
    color: #0f6ea8;
    font-family: inherit;
    font-weight: 900;
    cursor: pointer;
}

.tvm-card__share:hover,
.tvm-card__share:focus-visible,
.tvm-modal__share:hover,
.tvm-modal__share:focus-visible {
    background: #0f6ea8;
    color: #fff;
}

.tvm-modal__share {
    margin: 14px 0 0;
}

@media (max-width: 880px) {
    .tvm-hero-actions {
        justify-content: center;
    }
    .tvm-grid--events {
        grid-template-columns: 1fr;
    }
    .tvm-events-strip__head {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* v1.0.35 — kompaktowe udostępnianie w kartach i opis półautomatu */
.tvm-card__share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 110, 168, 0.10);
    color: #0f6ea8;
    font-family: inherit;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
}

.tvm-card__share-icon:hover,
.tvm-card__share-icon:focus-visible {
    background: #0f6ea8;
    color: #ffffff;
}

.tvm-card:hover .tvm-card__share-icon,
.tvm-card:focus-within .tvm-card__share-icon {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.tvm-card:hover .tvm-card__share-icon:hover,
.tvm-card:focus-within .tvm-card__share-icon:focus-visible {
    background: #ffffff;
    color: #0f6ea8;
}

.tvm-event-form-note {
    margin: -4px 0 16px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(15, 110, 168, 0.08);
    color: rgba(23, 17, 13, 0.78);
    font-size: 14px;
    line-height: 1.45;
}

/* TVM 1.0.38 — filtry wydarzeń/patronatów */
.tvm-event-filters {
    max-width: var(--tvm-shell-max, 1180px);
    margin: 0 auto 18px;
    padding: 12px 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 10px;
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(25,20,17,.08);
    border-radius: 20px;
}
.tvm-event-filters label { display: grid; gap: 4px; font-weight: 700; color: #191411; }
.tvm-event-filters label span { font-size: 12px; opacity: .75; }
.tvm-event-filters input { min-height: 40px; border-radius: 12px; border: 1px solid rgba(25,20,17,.16); padding: 0 12px; background: #fff; }
.tvm-event-filters button,
.tvm-event-filters a { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; padding: 0 16px; border-radius: 999px; border: 0; background: var(--tvm-accent, #c94132); color: #fff; font-weight: 800; text-decoration: none; cursor: pointer; }
.tvm-event-filters a { background: rgba(25,20,17,.75); }
@media (max-width: 720px) {
    .tvm-event-filters { margin-left: 12px; margin-right: 12px; align-items: stretch; }
    .tvm-event-filters label { width: 100%; }
    .tvm-event-filters button, .tvm-event-filters a { width: 100%; }
}

/* v1.0.39 — czysty dół kart, bez widocznego licznika wyświetleń. */
.tvm-card__views,
.tvm-rating__views {
    display: none !important;
}

.tvm-card__button {
    cursor: pointer;
}

.tvm-card__button:focus-visible {
    outline: 3px solid rgba(15, 110, 168, 0.35);
    outline-offset: 3px;
}

.tvm-card__meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
    border-top: 1px solid rgba(32, 24, 20, 0.08);
    padding-top: 10px;
    margin-top: auto;
}

.tvm-card__rating {
    flex: 0 0 auto;
    white-space: nowrap;
}

.tvm-card__share-icon {
    flex: 0 0 32px;
}

.tvm-card .tvm-card__content {
    min-height: 178px;
    grid-template-rows: auto auto minmax(42px, auto) auto;
}

.tvm-card__thumb::after {
    box-shadow: inset 0 -22px 34px rgba(0,0,0,0.13);
}

.tvm-live-box.is-offline,
.tvm-live-box.is-live {
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(15, 110, 168, 0.28);
    box-shadow: 0 16px 34px rgba(15, 110, 168, 0.10);
}

.tvm-live-action--listen {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 126, 176, 0.94), rgba(11, 103, 147, 0.94));
    box-shadow: 0 12px 24px rgba(15, 110, 168, 0.18);
    border: 1px solid rgba(255,255,255,0.35);
}

.tvm-modal__video {
    position: relative;
}

.tvm-modal__info-toggle {
    display: none;
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 3;
    border: 0;
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(0,0,0,0.62);
    color: #fff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

/* v1.0.40 — poprawka: spokojny live box, delikatny listen button, czysty spód kart. */
.tvm-live-action--listen,
.tvm-live-action--listen:visited,
.tvm-live-action--listen:hover,
.tvm-live-action--listen:focus,
.tvm-live-action--listen:active {
    text-decoration: none !important;
}

.tvm-live-action--listen span,
.tvm-live-action--listen:hover span,
.tvm-live-action--listen:focus span,
.tvm-live-action--listen:active span {
    text-decoration: none !important;
}

.tvm-live-action--listen {
    background: linear-gradient(135deg, rgba(41, 147, 184, 0.92), rgba(32, 123, 166, 0.92)) !important;
    border: 1px solid rgba(121, 190, 216, 0.72) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 22px rgba(24, 126, 188, 0.16) !important;
}

.tvm-live-action--listen:hover,
.tvm-live-action--listen:focus-visible {
    background: linear-gradient(135deg, rgba(48, 154, 191, 0.95), rgba(37, 130, 171, 0.95)) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 13px 25px rgba(24, 126, 188, 0.19) !important;
}

.tvm-live-box,
.tvm-live-box.is-offline,
.tvm-live-box.is-offline:hover {
    background: rgba(255, 255, 255, 0.84) !important;
    border-color: rgba(24, 126, 188, 0.28) !important;
    color: #171717 !important;
    box-shadow: 0 18px 38px rgba(20, 40, 56, 0.11) !important;
    filter: none !important;
}

.tvm-live-box:not(.is-live):hover,
.tvm-live-box.is-offline:hover {
    transform: translateY(-2px) scale(1.012);
}

.tvm-live-box.is-live,
.tvm-live-box.is-live:hover {
    background: linear-gradient(135deg, #c93a32, #941d22) !important;
    border-color: rgba(201, 58, 50, 0.9) !important;
    color: #ffffff !important;
    box-shadow: 0 22px 44px rgba(148, 29, 34, 0.22) !important;
}

.tvm-live-box:not(.is-live) .tvm-live-box__status,
.tvm-live-box:not(.is-live):hover .tvm-live-box__status,
.tvm-live-box.is-offline .tvm-live-box__status,
.tvm-live-box.is-offline:hover .tvm-live-box__status {
    background: rgba(24, 126, 188, 0.10) !important;
    color: #0f6ea8 !important;
    box-shadow: inset 0 0 0 1px rgba(24, 126, 188, 0.15) !important;
}

.tvm-live-box:not(.is-live) .tvm-live-box__meta strong,
.tvm-live-box:not(.is-live) .tvm-live-box__meta small,
.tvm-live-box:not(.is-live):hover .tvm-live-box__meta strong,
.tvm-live-box:not(.is-live):hover .tvm-live-box__meta small,
.tvm-live-box.is-offline .tvm-live-box__meta strong,
.tvm-live-box.is-offline .tvm-live-box__meta small,
.tvm-live-box.is-offline:hover .tvm-live-box__meta strong,
.tvm-live-box.is-offline:hover .tvm-live-box__meta small {
    color: #171717 !important;
}

.tvm-card__meta {
    justify-content: space-between !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
}

.tvm-card__rating {
    flex: 0 0 auto !important;
}

.tvm-card__share-icon {
    margin-left: auto !important;
    flex: 0 0 32px !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    background: rgba(24, 126, 188, 0.12) !important;
    color: #0f6ea8 !important;
    font-size: 0 !important;
    text-indent: 0 !important;
    overflow: hidden !important;
}

.tvm-card__share-icon::before {
    content: "↗";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 15px;
    line-height: 1;
    color: currentColor;
}

.tvm-card__share-icon:hover,
.tvm-card__share-icon:focus-visible,
.tvm-card:hover .tvm-card__share-icon,
.tvm-card:focus-within .tvm-card__share-icon {
    background: rgba(24, 126, 188, 0.18) !important;
    color: #0f6ea8 !important;
}


/* TVM 1.0.41 — stabilizacja OFF, subtelny guzik słuchania, gwiazdki i udostępnianie kart. */
.tvm-live-box.is-offline,
.tvm-live-box.is-offline:hover,
.tvm-live-box:not(.is-live):hover {
    border-color: rgba(24,126,188,.28) !important;
    background: rgba(255,255,255,.72) !important;
    color: #17110d !important;
    transform: translateY(-1px) scale(1.01) !important;
    box-shadow: 0 14px 28px rgba(24,126,188,.10) !important;
}
.tvm-live-box.is-offline .tvm-live-box__status,
.tvm-live-box.is-offline:hover .tvm-live-box__status {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #007fc0 !important;
    background: rgba(24,126,188,.11) !important;
    border-color: rgba(24,126,188,.18) !important;
}
.tvm-live-box.is-live,
.tvm-live-box.is-live:hover {
    border-color: rgba(201,58,50,.38) !important;
    background: rgba(255,255,255,.78) !important;
}
.tvm-live-action--listen,
.tvm-live-action--listen:visited {
    background: linear-gradient(135deg, #178bb6, #1aa6bd) !important;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 12px 24px rgba(24,126,188,.16) !important;
}
.tvm-live-action--listen:hover,
.tvm-live-action--listen:focus-visible {
    background: linear-gradient(135deg, #167fa7, #1598ad) !important;
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-1px) !important;
}
.tvm-live-action--listen *,
.tvm-live-action--listen:hover * { text-decoration: none !important; }
.tvm-card__meta {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    width: 100% !important;
    padding-top: 10px !important;
    border-top: 1px solid rgba(32,24,20,.08) !important;
}
.tvm-card__rating {
    display: inline-flex !important;
    align-items: center !important;
    min-width: 0 !important;
    max-width: calc(100% - 44px) !important;
}
.tvm-card__stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(245,180,35,.12);
    color: #d89516;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1;
}
.tvm-card__stars .is-empty { opacity: .28; }
.tvm-card__rating-number {
    margin-left: 5px;
    color: rgba(23,17,13,.64);
    font-size: 12px;
    font-weight: 800;
}
.tvm-card:hover .tvm-card__rating-number,
.tvm-card:focus-within .tvm-card__rating-number { color: rgba(255,255,255,.86); }
.tvm-card__share-icon {
    margin-left: auto !important;
    flex: 0 0 32px !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(24,126,188,.12) !important;
    color: #0f6ea8 !important;
    border: 0 !important;
    box-shadow: none !important;
}
.tvm-card__share-icon::before { content: "↗" !important; }
@media (max-width: 720px) {
    .tvm-card__stars { gap: 0; padding: 0 7px; font-size: 11px; max-width: 145px; }
    .tvm-card__rating-number { font-size: 11px; margin-left: 4px; }
    .tvm-card__share-icon { flex-basis: 30px !important; width: 30px !important; height: 30px !important; min-width: 30px !important; }
}

/* TVM 1.0.42 — final card footer / votes / mobile Top 3 cleanup. */
.tvm-card__meta {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    width: 100% !important;
    padding-top: 10px !important;
    border-top: 1px solid rgba(32,24,20,.08) !important;
}
.tvm-card__stars {
    display: inline-flex !important;
    align-items: center !important;
    gap: 1px !important;
    height: 30px !important;
    padding: 0 9px !important;
    border-radius: 999px !important;
    background: rgba(245,180,35,.13) !important;
    color: #d89516 !important;
    white-space: nowrap !important;
    font-size: 12px !important;
    line-height: 1 !important;
}
.tvm-card__stars .is-empty { opacity: .28; }
.tvm-card__rating-number {
    margin-left: 5px !important;
    color: rgba(23,17,13,.68) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
}
.tvm-card__votes {
    margin-left: 6px !important;
    min-width: 20px !important;
    height: 20px !important;
    padding: 0 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: rgba(24,126,188,.12) !important;
    color: #0f6ea8 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
}
.tvm-card__share-icon {
    margin-left: auto !important;
    flex: 0 0 32px !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgba(24,126,188,.12) !important;
    color: #0f6ea8 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    cursor: pointer !important;
}
.tvm-card__share-icon::before { content: "↗" !important; font-size: 14px !important; line-height: 1 !important; }
.tvm-card:hover .tvm-card__stars,
.tvm-card:hover .tvm-card__votes,
.tvm-card:hover .tvm-card__share-icon {
    background: rgba(255,255,255,.18) !important;
    color: #fff !important;
}
.tvm-card:hover .tvm-card__rating-number { color: rgba(255,255,255,.9) !important; }
.tvm-mobile-shell__card { cursor: pointer; }
.tvm-mobile-shell__meta {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    width: 100% !important;
}
.tvm-mobile-shell__rating {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    min-height: 30px !important;
    padding: 0 10px !important;
    border-radius: 999px !important;
    background: rgba(24,126,188,.12) !important;
    color: #113f5c !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
}
.tvm-mobile-shell__rating small {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 20px !important;
    height: 20px !important;
    padding: 0 6px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.5) !important;
    color: #0f6ea8 !important;
    font-size: 11px !important;
    font-weight: 900 !important;
}
.tvm-mobile-shell__share {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgba(24,126,188,.13) !important;
    color: #0f6ea8 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
    cursor: pointer !important;
}

/* TVM 1.0.44 — Top 3 desktop play icon pinned to thumbnail, not text. */
.tvm-top10__button {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 78px 1fr !important;
    align-items: center !important;
    column-gap: 12px !important;
}

.tvm-top10__button > img {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 78px !important;
    height: 58px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
}

.tvm-top10__button .tvm-top10__media {
    position: absolute !important;
    left: 39px !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 34px !important;
    height: 34px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    pointer-events: none !important;
    z-index: 2 !important;
}

.tvm-top10__button .tvm-top10__text {
    grid-column: 2 !important;
    min-width: 0 !important;
}

.tvm-top10__button .tvm-top10__icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 999px !important;
    background: rgba(210, 31, 45, .92) !important;
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(0,0,0,.18) !important;
}

.tvm-mobile-shell__share::before,
.tvm-card__share-icon::before {
    content: "↗" !important;
}

/* 1.0.47 — sidebar latest event/patronat + cleaner Top 3 */
.tvm-top10 h3 {
    text-align: center;
}

.tvm-sidebar-promos {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.tvm-sidebar-promo {
    background: var(--tvm-panel-bg);
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.tvm-sidebar-promo__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.tvm-sidebar-promo__head h3 {
    margin: 0;
    font-size: 19px;
    color: #17110d;
}

.tvm-sidebar-promo__head a {
    font-weight: 900;
    font-size: 13px;
    color: #0f6ea8;
    text-decoration: none;
}

.tvm-sidebar-promo__card {
    width: 100%;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    border: 0;
    padding: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: inherit;
}

.tvm-sidebar-promo__thumb {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    background: #efe8dd;
}

.tvm-sidebar-promo__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tvm-sidebar-promo__thumb span {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 107, 83, .95);
    color: #fff;
    font-size: 13px;
    box-shadow: 0 8px 16px rgba(0,0,0,.18);
}

.tvm-sidebar-promo--patron .tvm-sidebar-promo__thumb span {
    background: rgba(180, 32, 32, .95);
}

.tvm-sidebar-promo__body {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.tvm-sidebar-promo__body strong {
    font-size: 16px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tvm-sidebar-promo__body small {
    font-size: 13px;
    color: rgba(23, 17, 13, .7);
    line-height: 1.25;
}

.tvm-sidebar-promo__card:hover .tvm-sidebar-promo__body strong,
.tvm-sidebar-promo__card:focus-visible .tvm-sidebar-promo__body strong {
    color: #0f6ea8;
}

.tvm-card--event .tvm-card__button {
    min-height: 100%;
}


/* v1.0.48 — sidebar promo readability */
.tvm-sidebar-promo__card {
    background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(245,250,252,.9)) !important;
    color: #122234 !important;
}
.tvm-sidebar-promo__body strong,
.tvm-sidebar-promo__body small {
    color: #122234 !important;
}
.tvm-sidebar-promo__head a {
    color: #0078a8;
}

/* TVM 1.0.50 — stabilizacja boxa relacji offline + bezpieczny routing zakładek wydarzeń/patronatu. */
.tvm-live-box,
.tvm-live-box.is-offline,
.tvm-live-box.is-offline:hover,
.tvm-live-box:not(.is-live):hover {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 18px !important;
    min-height: 150px !important;
    background: rgba(255, 255, 255, 0.78) !important;
    border: 1px solid rgba(42, 169, 213, 0.38) !important;
    box-shadow: 0 16px 42px rgba(15, 42, 60, 0.08) !important;
    color: #111827 !important;
    transform: none !important;
}

.tvm-live-box.is-offline:hover,
.tvm-live-box:not(.is-live):hover {
    transform: translateY(-3px) !important;
    background: rgba(255, 255, 255, 0.78) !important;
    border-color: rgba(42, 169, 213, 0.38) !important;
    color: #111827 !important;
}

.tvm-live-box.is-live,
.tvm-live-box.is-live:hover {
    background: linear-gradient(135deg, #cf2424, #a31414) !important;
    border-color: rgba(207, 36, 36, 0.78) !important;
    color: #fff !important;
}

.tvm-live-box__status,
.tvm-live-box.is-offline .tvm-live-box__status,
.tvm-live-box.is-offline:hover .tvm-live-box__status,
.tvm-live-box:not(.is-live):hover .tvm-live-box__status {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    min-width: 132px !important;
    height: 34px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    background: #e6f5fb !important;
    border: 1px solid #b9dceb !important;
    color: #008ac2 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.tvm-live-box.is-live .tvm-live-box__status,
.tvm-live-box.is-live:hover .tvm-live-box__status {
    background: rgba(255,255,255,0.22) !important;
    border-color: rgba(255,255,255,0.4) !important;
    color: #fff !important;
}

.tvm-live-box__body,
.tvm-live-box.is-offline .tvm-live-box__body,
.tvm-live-box.is-offline:hover .tvm-live-box__body,
.tvm-live-box:not(.is-live):hover .tvm-live-box__body {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    text-align: left !important;
}

.tvm-live-box__icon,
.tvm-live-box.is-offline .tvm-live-box__icon,
.tvm-live-box.is-offline:hover .tvm-live-box__icon,
.tvm-live-box:not(.is-live):hover .tvm-live-box__icon {
    opacity: 1 !important;
    visibility: visible !important;
    color: #008ac2 !important;
    background: #e6f5fb !important;
    border: 1px solid #b9dceb !important;
    transform: none !important;
}

.tvm-live-box:hover .tvm-live-box__icon,
.tvm-live-box.is-offline:hover .tvm-live-box__icon,
.tvm-live-box:not(.is-live):hover .tvm-live-box__icon {
    transform: none !important;
}

.tvm-live-box__meta strong,
.tvm-live-box__meta small,
.tvm-live-box.is-offline .tvm-live-box__meta strong,
.tvm-live-box.is-offline .tvm-live-box__meta small,
.tvm-live-box.is-offline:hover .tvm-live-box__meta strong,
.tvm-live-box.is-offline:hover .tvm-live-box__meta small,
.tvm-live-box:not(.is-live):hover .tvm-live-box__meta strong,
.tvm-live-box:not(.is-live):hover .tvm-live-box__meta small {
    color: #111827 !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-decoration: none !important;
}

/* v1.0.51: live box inactive state - stable hover, centered status */
.tvm-live-box,
.tvm-live-box.is-offline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.tvm-live-box__status {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
}
.tvm-live-box.is-offline:hover,
.tvm-live-box.is-offline:not(:disabled):hover,
.tvm-live-box:not(.is-live):hover {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(24, 126, 188, 0.28);
    color: #171717;
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(20, 40, 56, 0.13);
}
.tvm-live-box.is-offline:hover .tvm-live-box__status,
.tvm-live-box:not(.is-live):hover .tvm-live-box__status {
    background: rgba(24, 126, 188, 0.10);
    color: #177ebc;
    box-shadow: inset 0 0 0 1px rgba(24, 126, 188, 0.16);
}
.tvm-live-box.is-offline:hover .tvm-live-box__icon,
.tvm-live-box:not(.is-live):hover .tvm-live-box__icon {
    background: rgba(24, 126, 188, 0.10);
    color: #177ebc;
    box-shadow: inset 0 0 0 1px rgba(24, 126, 188, 0.16);
}
.tvm-live-box.is-live:hover {
    background: linear-gradient(135deg, #c93a32, #941d22);
    border-color: rgba(201, 58, 50, 0.9);
    color: #ffffff;
}


/* v1.0.56 — Zajawki: mniejsze karty, 4 w rzędzie na desktopie */
.tvm-grid:has(.tvm-card--teaser:not([hidden])) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.tvm-card--teaser {
    border-radius: 18px;
}

.tvm-card--teaser .tvm-card__thumb {
    width: min(84%, 240px);
    margin-top: 12px;
    border-radius: 14px;
}

.tvm-card--teaser .tvm-card__content {
    width: min(86%, 240px);
    min-height: 150px;
    gap: 8px;
    padding: 13px 0 16px;
}

.tvm-card--teaser .tvm-card__title {
    font-size: 16px;
    -webkit-line-clamp: 3;
}

.tvm-card--teaser .tvm-card__description {
    font-size: 13px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
}

@media (max-width: 1180px) {
    .tvm-grid:has(.tvm-card--teaser:not([hidden])) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .tvm-grid:has(.tvm-card--teaser:not([hidden])) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .tvm-grid:has(.tvm-card--teaser:not([hidden])) {
        grid-template-columns: 1fr;
    }
}


/* v1.0.57 — dopracowanie kart, paddingów, tagów i zajawek */
.tvm-grid { align-items: stretch; }
.tvm-card { display: flex; min-width: 0; }
.tvm-card__button { min-width: 0; align-items: start; }
.tvm-card__thumb { width: calc(100% - clamp(44px, 5vw, 68px)); margin: clamp(22px, 2.2vw, 30px) auto 0; }
.tvm-card__content { width: calc(100% - clamp(52px, 6vw, 76px)); margin-inline: auto; padding: clamp(18px, 2vw, 26px) 0 clamp(24px, 2.5vw, 34px); text-align: left; justify-items: start; }
.tvm-card__title { width: 100%; text-align: left; }
.tvm-card__description { width: 100%; padding-left: clamp(10px, 1.5vw, 18px); border-left: 3px solid rgba(15, 110, 168, 0.18); color: #2f3438; }
.tvm-card__categories, .tvm-card__tags, .tvm-card__meta { width: 100%; }
.tvm-card__categories span { opacity: 0.76; min-height: 22px; padding: 4px 8px; font-size: 11px; font-weight: 760; }
.tvm-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: -2px; }
.tvm-card__tag, .tvm-tag-results__tag, .tvm-tags button { appearance: none; border: 1px solid rgba(15, 110, 168, 0.12); border-radius: 999px; background: rgba(15, 110, 168, 0.055); color: rgba(15, 83, 126, 0.82); font: inherit; font-size: 10.5px; font-weight: 760; line-height: 1; padding: 5px 8px; cursor: pointer; text-decoration: none; transition: transform .16s ease, background-color .16s ease, color .16s ease, border-color .16s ease; }
.tvm-card__tag:hover, .tvm-card__tag:focus-visible, .tvm-tag-results__tag:hover, .tvm-tag-results__tag:focus-visible, .tvm-tags button:hover, .tvm-tags button:focus-visible { transform: translateY(-1px); background: rgba(15, 110, 168, 0.12); color: #0f4d73; border-color: rgba(15, 110, 168, 0.28); outline: none; }
.tvm-card:hover .tvm-card__description { border-left-color: rgba(255,255,255,.35); }
.tvm-card:hover .tvm-card__tag { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.24); color: rgba(255,255,255,.88); }
.tvm-card--event .tvm-card__thumb, .tvm-card--patron .tvm-card__thumb { width: calc(100% - clamp(48px, 5vw, 72px)); }
.tvm-card--event .tvm-card__content, .tvm-card--patron .tvm-card__content { width: calc(100% - clamp(56px, 6vw, 82px)); }
.tvm-grid:has(.tvm-card--teaser:not([hidden])) { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 1.8vw, 22px); }
.tvm-card--teaser .tvm-card__thumb { width: calc(100% - clamp(36px, 4vw, 52px)); margin-top: clamp(18px, 1.9vw, 24px); }
.tvm-card--teaser .tvm-card__content { width: calc(100% - clamp(42px, 5vw, 62px)); min-height: 168px; padding-top: 16px; padding-bottom: 22px; }
.tvm-card--teaser .tvm-card__description { font-size: 13px; min-height: 42px; -webkit-line-clamp: 2; }
.tvm-static-modal--tag-results .tvm-static-modal__glass { max-height: min(760px, calc(100vh - 80px)); display: grid; grid-template-rows: auto 1fr; }
.tvm-tag-results { display: grid; gap: 12px; overflow: auto; padding-bottom: 6px !important; }
.tvm-tag-results__item { display: grid; grid-template-columns: 108px minmax(0, 1fr); gap: 14px; align-items: center; width: 100%; border: 1px solid rgba(15,110,168,.12); border-radius: 18px; background: rgba(255,255,255,.72); padding: 10px; text-align: left; cursor: pointer; }
.tvm-tag-results__item:hover, .tvm-tag-results__item:focus-visible { background: rgba(15,110,168,.07); outline: 2px solid rgba(15,110,168,.22); }
.tvm-tag-results__thumb { width: 100%; aspect-ratio: 16 / 9; border-radius: 12px; object-fit: cover; background: #111; }
.tvm-tag-results__body { min-width: 0; display: grid; gap: 5px; }
.tvm-tag-results__body strong { color: #161616; font-size: 15px; line-height: 1.2; }
.tvm-tag-results__body span { color: #555; font-size: 13px; line-height: 1.35; }
@media (max-width: 1180px) { .tvm-grid:has(.tvm-card--teaser:not([hidden])) { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 860px) { .tvm-card__thumb, .tvm-card--event .tvm-card__thumb, .tvm-card--patron .tvm-card__thumb { width: calc(100% - 38px); margin-top: 20px; } .tvm-card__content, .tvm-card--event .tvm-card__content, .tvm-card--patron .tvm-card__content { width: calc(100% - 44px); padding-top: 18px; padding-bottom: 24px; } .tvm-grid:has(.tvm-card--teaser:not([hidden])) { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .tvm-card__thumb, .tvm-card--teaser .tvm-card__thumb, .tvm-card--event .tvm-card__thumb, .tvm-card--patron .tvm-card__thumb { width: calc(100% - 28px); margin-top: 14px; } .tvm-card__content, .tvm-card--teaser .tvm-card__content, .tvm-card--event .tvm-card__content, .tvm-card--patron .tvm-card__content { width: calc(100% - 32px); padding-top: 14px; padding-bottom: 18px; } .tvm-grid:has(.tvm-card--teaser:not([hidden])) { grid-template-columns: 1fr; } .tvm-tag-results__item { grid-template-columns: 88px minmax(0, 1fr); gap: 10px; padding: 8px; } }


/* v1.0.59 — kompaktowa stopka tagów: mniejsze, niższe, bez dominowania nad stopką */
.tvm-card__content > .tvm-card__tags { display: none !important; }
.tvm-footer-tags {
    width: min(100%, 760px);
    display: grid;
    gap: 5px;
    justify-items: center;
    text-align: center;
    padding: 8px 18px 2px;
    margin: 0 auto;
}
.tvm-footer-tags__label {
    color: rgba(255,255,255,.44);
    font-size: 9.5px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .075em;
    text-transform: uppercase;
}
.tvm-footer-tags__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px 6px;
    max-width: 720px;
    max-height: 58px;
    overflow: hidden;
}
.tvm-footer-tags__tag {
    appearance: none;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.045);
    color: rgba(255,255,255,.56);
    cursor: pointer;
    font: inherit;
    font-size: 9.8px;
    font-weight: 680;
    line-height: 1;
    max-width: 210px;
    padding: 5px 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}
.tvm-footer-tags__tag:hover,
.tvm-footer-tags__tag:focus-visible {
    background: rgba(255,255,255,.105);
    border-color: rgba(255,255,255,.18);
    color: rgba(255,255,255,.9);
    outline: none;
    transform: translateY(-1px);
}
.tvm-modal .tvm-tags button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 760px) {
    .tvm-footer-tags { width: min(100%, 94vw); padding: 7px 6px 0; gap: 4px; }
    .tvm-footer-tags__label { font-size: 9px; }
    .tvm-footer-tags__list { gap: 4px; max-height: 52px; }
    .tvm-footer-tags__tag { font-size: 9px; max-width: 156px; padding: 4.5px 7px; }
}

/* v1.0.60 — stopka zbalansowana: lewa informacja, środek tagi tagów, prawa akcje */
.tvm-footer { padding: 22px 0 22px; }
.tvm-footer__inner { display: grid; grid-template-columns: minmax(210px,1fr) minmax(240px,.9fr) minmax(170px,1fr); align-items: center; gap: clamp(14px,2.6vw,34px); }
.tvm-footer__copy { justify-self: start; min-width: 0; max-width: 360px; }
.tvm-footer__copy strong { font-size: clamp(16px,1.25vw,19px); }
.tvm-footer__copy span { font-size: 12px; line-height: 1.35; }
.tvm-footer-tags { justify-self: center; width: min(100%,370px); max-width: 370px; gap: 4px; padding: 0; margin: 0; }
.tvm-footer-tags__label { font-size: 8.2px; letter-spacing: .07em; opacity: .82; }
.tvm-footer-tags__list { justify-content: center; gap: 4px 5px; max-width: 370px; max-height: 46px; overflow: hidden; }
.tvm-footer-tags__tag { font-size: 8.8px; font-weight: 650; max-width: 118px; padding: 4px 6px; color: rgba(255,255,255,.52); background: rgba(255,255,255,.038); border-color: rgba(255,255,255,.07); }
.tvm-footer__menu { justify-self: end; align-items: center; gap: 8px; }
.tvm-footer__menu button { font-size: 12px; line-height: 1; padding: 10px 14px; border-radius: 999px; }
@media (max-width: 920px) { .tvm-footer__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 14px; } .tvm-footer__copy, .tvm-footer-tags, .tvm-footer__menu { justify-self: center; } .tvm-footer-tags { width: min(100%,420px); max-width: 420px; } .tvm-footer-tags__list { max-width: 420px; max-height: 44px; } }
@media (max-width: 560px) { .tvm-footer { padding: 18px 0 20px; } .tvm-footer__inner { gap: 12px; } .tvm-footer-tags { width: min(100%,92vw); } .tvm-footer-tags__label { font-size: 8px; } .tvm-footer-tags__list { max-height: 42px; gap: 4px; } .tvm-footer-tags__tag { font-size: 8.4px; max-width: 104px; padding: 3.8px 5.5px; } .tvm-footer__menu button { font-size: 11.5px; padding: 9px 12px; } }



/* v1.0.61 — tagi tagów tylko w pasku nad stopką; bez tagów na kartach głównych */
.tvm-card .tvm-card__tags,
.tvm-card__content .tvm-card__tags,
.tvm-grid .tvm-card__tags {
    display: none !important;
}
.tvm-footer .tvm-footer-tags {
    display: none !important;
}
.tvm-seo-tags-strip {
    width: 100%;
    padding: 12px clamp(18px, 4vw, 44px) 8px;
    margin: 8px auto 0;
    box-sizing: border-box;
}
.tvm-seo-tags-strip__inner {
    width: min(100%, var(--tvm-shell-max, 1180px));
    margin: 0 auto;
    display: grid;
    justify-items: center;
    gap: 5px;
    text-align: center;
}
.tvm-seo-tags-strip__label {
    color: rgba(34, 55, 66, .52);
    font-size: 9px;
    line-height: 1.1;
    font-weight: 750;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.tvm-seo-tags-strip__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 6px;
    max-width: 760px;
    max-height: 46px;
    overflow: hidden;
}
.tvm-seo-tags-strip__tag {
    appearance: none;
    border: 1px solid rgba(15, 110, 168, .11);
    border-radius: 999px;
    background: rgba(255,255,255,.52);
    color: rgba(15, 83, 126, .55);
    font: inherit;
    font-size: 9.5px;
    line-height: 1;
    font-weight: 650;
    padding: 4.5px 7px;
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: color .16s ease, background-color .16s ease, border-color .16s ease, transform .16s ease;
}
.tvm-seo-tags-strip__tag:hover,
.tvm-seo-tags-strip__tag:focus-visible {
    color: rgba(15, 83, 126, .86);
    background: rgba(255,255,255,.78);
    border-color: rgba(15, 110, 168, .25);
    transform: translateY(-1px);
    outline: none;
}
@media (max-width: 720px) {
    .tvm-seo-tags-strip { padding: 10px 14px 6px; }
    .tvm-seo-tags-strip__list { max-width: 92vw; max-height: 44px; gap: 4px; }
    .tvm-seo-tags-strip__tag { font-size: 8.8px; max-width: 118px; padding: 4px 6px; }
}

/* TVM 1.0.62 — finalne dopięcie kart, tagów i responsywności zakładek */
.tvm-layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
}

.tvm-grid {
    width: 100%;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: clamp(18px, 2vw, 28px);
    justify-items: stretch;
}

.tvm-card,
.tvm-card--teaser,
.tvm-card--event,
.tvm-card--patron {
    width: 100%;
    max-width: none;
    min-width: 0;
    border-radius: 24px;
}

.tvm-card__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100%;
    padding: clamp(18px, 2vw, 28px) clamp(22px, 2.4vw, 34px);
    box-sizing: border-box;
    overflow: visible;
}

.tvm-card__thumb,
.tvm-card--teaser .tvm-card__thumb,
.tvm-card--event .tvm-card__thumb,
.tvm-card--patron .tvm-card__thumb {
    width: 100%;
    max-width: 100%;
    margin: 0 auto clamp(14px, 1.4vw, 20px);
    aspect-ratio: 16 / 9;
    flex: 0 0 auto;
}

.tvm-card__content,
.tvm-card--teaser .tvm-card__content,
.tvm-card--event .tvm-card__content,
.tvm-card--patron .tvm-card__content {
    width: 100%;
    min-width: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    align-content: start;
    overflow: visible;
}

.tvm-card__title,
.tvm-card--teaser .tvm-card__title,
.tvm-card--event .tvm-card__title,
.tvm-card--patron .tvm-card__title {
    display: block;
    width: 100%;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    overflow-wrap: anywhere;
    word-break: normal;
    line-height: 1.16;
    max-height: none !important;
    font-size: clamp(15px, 1.12vw, 18px);
}

.tvm-card__description,
.tvm-card--teaser .tvm-card__description,
.tvm-card--event .tvm-card__description,
.tvm-card--patron .tvm-card__description {
    display: block;
    width: 100%;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    max-height: none !important;
    line-height: 1.42;
    font-size: clamp(12.5px, .92vw, 14px);
    padding-left: 14px;
    border-left: 3px solid rgba(9, 133, 190, .22);
    opacity: .92;
}

.tvm-card__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tvm-card__categories span {
    font-size: 10.5px;
    padding: 5px 8px;
}

.tvm-card__meta {
    margin-top: 4px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.tvm-seo-tags-strip {
    margin: 18px auto 0;
    max-width: var(--tvm-shell-max, 1180px);
    padding: 0 clamp(18px, 4vw, 34px);
}

.tvm-seo-tags-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px 10px;
    flex-wrap: wrap;
    max-height: 64px;
    overflow: hidden;
    text-align: center;
}

.tvm-seo-tags-strip__label {
    font-size: 11px;
    font-weight: 800;
    color: rgba(26, 20, 17, .56);
}

.tvm-seo-tags-strip__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 7px;
}

.tvm-seo-tags-strip__tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 10.5px;
    line-height: 1.1;
    font-weight: 750;
    text-decoration: none;
    color: rgba(20, 91, 132, .78);
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(20, 91, 132, .14);
}

.tvm-seo-tags-strip__tag:hover,
.tvm-seo-tags-strip__tag:focus-visible {
    color: rgba(20, 91, 132, 1);
    background: rgba(255, 255, 255, .86);
    outline: none;
}

@media (max-width: 1180px) {
    .tvm-layout { grid-template-columns: 1fr; }
    .tvm-sidebar { position: static; }
}

@media (max-width: 980px) {
    .tvm-grid { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}

@media (max-width: 620px) {
    .tvm-grid { grid-template-columns: 1fr; }
    .tvm-card__button { padding: 18px 20px; }
    .tvm-card__description { padding-left: 10px; }
    .tvm-seo-tags-strip__inner { max-height: 58px; }
}

/* TVM 1.0.63 — poprawka kart zajawek, tagów i routingu bez fizycznych podstron */
.tvm-grid:has(.tvm-card--teaser:not([hidden])) {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(24px, 3vw, 38px) !important;
}
.tvm-card--teaser {
    overflow: hidden;
    min-width: 0;
}
.tvm-card--teaser .tvm-card__button {
    padding: clamp(22px, 2.4vw, 32px) clamp(28px, 3vw, 38px) !important;
    min-width: 0;
}
.tvm-card--teaser .tvm-card__thumb {
    width: 100% !important;
    max-width: 230px;
    margin: 0 auto clamp(14px, 1.5vw, 18px) !important;
}
.tvm-card--teaser .tvm-card__content {
    width: 100% !important;
    max-width: 260px;
    min-height: 0 !important;
    padding: 0 0 clamp(8px, 1.2vw, 14px) !important;
    gap: 10px;
    overflow: hidden;
}
.tvm-card--teaser .tvm-card__title {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 4 !important;
    overflow: hidden !important;
    max-width: 100%;
    font-size: clamp(17px, 1.45vw, 20px) !important;
    line-height: 1.12 !important;
    word-break: normal;
    overflow-wrap: anywhere;
}
.tvm-card--teaser .tvm-card__description {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 5 !important;
    overflow: hidden !important;
    max-width: 100%;
    min-height: 0 !important;
    padding: 0 0 0 14px !important;
    border-left: 3px solid rgba(15, 110, 168, 0.16);
    color: #4b4f52;
    font-size: clamp(13px, 1.05vw, 15px) !important;
    line-height: 1.42 !important;
    overflow-wrap: anywhere;
}
.tvm-card--teaser .tvm-card__categories span {
    border-radius: 999px;
    background: rgba(201, 65, 50, 0.09);
    color: rgba(201, 65, 50, 0.76);
    font-size: 10.5px;
    font-weight: 760;
    text-decoration: none !important;
}
.tvm-card--teaser .tvm-card__meta {
    margin-top: 8px !important;
    padding-top: 12px !important;
}
.tvm-card__tag,
.tvm-seo-tags-strip__tag,
.tvm-tag-results__tag,
.tvm-tags button {
    text-decoration: none !important;
}
.tvm-seo-tags-strip__tag {
    box-shadow: none;
}
@media (max-width: 1180px) {
    .tvm-grid:has(.tvm-card--teaser:not([hidden])) { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 620px) {
    .tvm-grid:has(.tvm-card--teaser:not([hidden])) { grid-template-columns: 1fr !important; }
    .tvm-card--teaser .tvm-card__button { padding: 20px 22px !important; }
    .tvm-card--teaser .tvm-card__content { max-width: none; }
}

/* v1.0.64 — final polish: buttons row, cards, footer tags, mobile category menu */
.tvm-hero__brand-col > .tvm-socials { display: none !important; }
.tvm-hero-actions {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
}
.tvm-socials--inline {
    display: inline-flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
}
.tvm-socials--inline .tvm-socials__link {
    min-height: 44px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 12px 28px rgba(40,32,22,.08);
}
.tvm-socials--inline .tvm-socials__icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
}
.tvm-seo-tags-strip { display: none !important; }
.tvm-grid:has(.tvm-card--teaser:not([hidden])),
.tvm-grid:has(.tvm-card--event:not([hidden])),
.tvm-grid:has(.tvm-card--patron:not([hidden])) {
    grid-template-columns: repeat(3, minmax(230px, 1fr));
    gap: clamp(20px, 2.1vw, 30px);
}
.tvm-card,
.tvm-card--teaser,
.tvm-card--event,
.tvm-card--patron {
    min-width: 0;
    overflow: hidden;
}
.tvm-card__button {
    width: 100%;
    overflow: hidden;
}
.tvm-card__thumb,
.tvm-card--teaser .tvm-card__thumb,
.tvm-card--event .tvm-card__thumb,
.tvm-card--patron .tvm-card__thumb {
    width: calc(100% - 56px);
    max-width: 270px;
}
.tvm-card__content,
.tvm-card--teaser .tvm-card__content,
.tvm-card--event .tvm-card__content,
.tvm-card--patron .tvm-card__content {
    width: calc(100% - 58px);
    max-width: 290px;
    min-width: 0;
}
.tvm-card__title,
.tvm-card--teaser .tvm-card__title,
.tvm-card--event .tvm-card__title,
.tvm-card--patron .tvm-card__title {
    font-size: clamp(16px, 1.18vw, 19px);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
    max-height: none;
    -webkit-line-clamp: 4;
}
.tvm-card__description,
.tvm-card--teaser .tvm-card__description,
.tvm-card--event .tvm-card__description,
.tvm-card--patron .tvm-card__description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    font-size: 13.5px;
    line-height: 1.42;
    color: rgba(30, 35, 40, .76);
    background: rgba(255,255,255,.28);
    border-left: 3px solid rgba(14, 156, 210, .22);
    border-radius: 0 12px 12px 0;
    padding: 8px 10px 8px 14px;
}
.tvm-card--teaser .tvm-card__description { -webkit-line-clamp: 4; min-height: 58px; }
.tvm-card:hover .tvm-card__description { border-left-color: rgba(14,156,210,.32); }
.tvm-card__categories span {
    border-radius: 999px;
    text-decoration: none !important;
    background: rgba(218, 58, 51, .075);
    color: rgba(190, 45, 40, .78);
}
.tvm-category-toggle {
    display: none;
    width: min(100%, 360px);
    margin: 16px auto 0;
    border: 1px solid rgba(16, 111, 150, .18);
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    color: #111827;
    font: inherit;
    font-weight: 850;
    padding: 13px 18px;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(25,34,42,.08);
}
.tvm-category-toggle span { margin-left: 8px; }
.tvm-footer__inner {
    grid-template-columns: minmax(220px, 1fr) minmax(220px, .9fr) minmax(190px, 1fr) !important;
}
.tvm-footer-tags {
    justify-self: center;
    width: min(100%, 390px);
    display: grid;
    gap: 6px;
    text-align: center;
}
.tvm-footer-tags__label {
    color: rgba(255,255,255,.52);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 850;
}
.tvm-footer-tags__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 7px;
    max-height: 50px;
    overflow: hidden;
}
.tvm-footer-tags__tag {
    color: rgba(255,255,255,.68);
    font-size: 9.5px;
    font-weight: 700;
    text-decoration: none !important;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;
    background: rgba(255,255,255,.045);
    padding: 5px 7px;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tvm-footer-tags__tag:hover,
.tvm-footer-tags__tag:focus-visible {
    color: rgba(255,255,255,.95);
    background: rgba(255,255,255,.10);
    outline: none;
}
@media (max-width: 1180px) {
    .tvm-grid:has(.tvm-card--teaser:not([hidden])),
    .tvm-grid:has(.tvm-card--event:not([hidden])),
    .tvm-grid:has(.tvm-card--patron:not([hidden])) { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}
@media (max-width: 760px) {
    .tvm-category-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .tvm-category-nav {
        display: none !important;
        width: min(100%, 360px);
        margin: 10px auto 0;
        padding: 10px;
        border-radius: 24px;
        background: rgba(255,255,255,.86);
        box-shadow: 0 18px 42px rgba(24,31,38,.10);
        overflow: visible !important;
        white-space: normal !important;
    }
    .tvm-category-nav.is-open { display: grid !important; grid-template-columns: 1fr; gap: 7px; }
    .tvm-category-nav a { width: 100%; justify-content: center; text-align: center; }
    .tvm-hero-actions { justify-content: center; }
    .tvm-socials--inline { justify-content: center; }
    .tvm-grid:has(.tvm-card--teaser:not([hidden])),
    .tvm-grid:has(.tvm-card--event:not([hidden])),
    .tvm-grid:has(.tvm-card--patron:not([hidden])) { grid-template-columns: 1fr; }
    .tvm-card__thumb,
    .tvm-card--teaser .tvm-card__thumb,
    .tvm-card--event .tvm-card__thumb,
    .tvm-card--patron .tvm-card__thumb { width: calc(100% - 36px); max-width: 320px; }
    .tvm-card__content,
    .tvm-card--teaser .tvm-card__content,
    .tvm-card--event .tvm-card__content,
    .tvm-card--patron .tvm-card__content { width: calc(100% - 38px); max-width: 340px; }
    .tvm-footer__inner { grid-template-columns: 1fr !important; }
}

/* TVM 1.0.65 — przywrócenie eleganckich kart i porządek sidebarów */
.tvm-socials__link,
.tvm-socials__link:visited,
.tvm-socials__label,
.tvm-socials--inline .tvm-socials__link,
.tvm-socials--inline .tvm-socials__label {
    text-decoration: none !important;
}
.tvm-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 340px) !important;
    gap: clamp(28px, 3.5vw, 52px) !important;
}
.tvm-grid {
    grid-template-columns: repeat(3, minmax(260px, 1fr)) !important;
    gap: clamp(24px, 2.6vw, 36px) !important;
    align-items: start !important;
}
.tvm-card,
.tvm-card--teaser,
.tvm-card--event,
.tvm-card--patron {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 360px !important;
    justify-self: center !important;
    border-radius: 24px !important;
    overflow: hidden !important;
}
.tvm-card__button,
.tvm-card--teaser .tvm-card__button,
.tvm-card--event .tvm-card__button,
.tvm-card--patron .tvm-card__button {
    padding: 26px 30px 24px !important;
    min-height: 0 !important;
    overflow: hidden !important;
}
.tvm-card__thumb,
.tvm-card--teaser .tvm-card__thumb,
.tvm-card--event .tvm-card__thumb,
.tvm-card--patron .tvm-card__thumb {
    width: 100% !important;
    max-width: 250px !important;
    margin: 0 auto 18px !important;
    border-radius: 16px !important;
}
.tvm-card__content,
.tvm-card--teaser .tvm-card__content,
.tvm-card--event .tvm-card__content,
.tvm-card--patron .tvm-card__content {
    width: 100% !important;
    max-width: 250px !important;
    margin: 0 auto !important;
    gap: 10px !important;
    overflow: visible !important;
}
.tvm-card__title,
.tvm-card--teaser .tvm-card__title,
.tvm-card--event .tvm-card__title,
.tvm-card--patron .tvm-card__title {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
    font-size: clamp(17px, 1.35vw, 20px) !important;
    line-height: 1.1 !important;
    max-height: none !important;
}
.tvm-card__description,
.tvm-card--teaser .tvm-card__description,
.tvm-card--event .tvm-card__description,
.tvm-card--patron .tvm-card__description {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 4 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    padding: 8px 10px 8px 14px !important;
    min-height: 74px !important;
    max-height: 104px !important;
    border-left: 3px solid rgba(14,156,210,.22) !important;
    border-radius: 0 12px 12px 0 !important;
    background: rgba(255,255,255,.24) !important;
    color: rgba(30,35,40,.72) !important;
    font-size: 13.5px !important;
    line-height: 1.42 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
}
.tvm-card__meta {
    position: relative !important;
    margin-top: 10px !important;
    padding-top: 10px !important;
    border-top: 1px solid rgba(26,20,17,.08) !important;
    z-index: 2 !important;
}
.tvm-card__categories {
    min-height: 24px !important;
}
.tvm-card__categories span {
    font-size: 10px !important;
    font-weight: 760 !important;
    padding: 5px 8px !important;
    opacity: .86 !important;
    text-decoration: none !important;
}
.tvm-card--teaser,
.tvm-card--event,
.tvm-card--patron {
    max-width: 380px !important;
}
.tvm-card--teaser .tvm-card__thumb,
.tvm-card--event .tvm-card__thumb,
.tvm-card--patron .tvm-card__thumb,
.tvm-card--teaser .tvm-card__content,
.tvm-card--event .tvm-card__content,
.tvm-card--patron .tvm-card__content {
    max-width: 270px !important;
}
.tvm-card--event .tvm-card__description,
.tvm-card--patron .tvm-card__description {
    min-height: 58px !important;
    max-height: 86px !important;
    -webkit-line-clamp: 3 !important;
}
.tvm-sidebar {
    display: grid !important;
    gap: 18px !important;
    align-content: start !important;
}
.tvm-top10[hidden] { display: none !important; }
.tvm-top10 {
    margin: 0 !important;
}
.tvm-sidebar-promos { display: none !important; }
@media (max-width: 1240px) {
    .tvm-layout { grid-template-columns: 1fr !important; }
    .tvm-grid { grid-template-columns: repeat(3, minmax(230px, 1fr)) !important; }
    .tvm-sidebar { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}
@media (max-width: 900px) {
    .tvm-grid { grid-template-columns: repeat(2, minmax(240px, 1fr)) !important; }
}
@media (max-width: 620px) {
    .tvm-grid { grid-template-columns: 1fr !important; }
    .tvm-card,
    .tvm-card--teaser,
    .tvm-card--event,
    .tvm-card--patron { max-width: min(100%, 380px) !important; }
    .tvm-card__button,
    .tvm-card--teaser .tvm-card__button,
    .tvm-card--event .tvm-card__button,
    .tvm-card--patron .tvm-card__button { padding: 22px 24px !important; }
    .tvm-card__content,
    .tvm-card__thumb,
    .tvm-card--teaser .tvm-card__content,
    .tvm-card--teaser .tvm-card__thumb,
    .tvm-card--event .tvm-card__content,
    .tvm-card--event .tvm-card__thumb,
    .tvm-card--patron .tvm-card__content,
    .tvm-card--patron .tvm-card__thumb { max-width: 100% !important; }
}

/* TVM 1.0.66 — finalny lifting kart, topów, tagów i mobile */
.tvm-video-hub *, .tvm-video-hub *::before, .tvm-video-hub *::after { box-sizing: border-box; }
.tvm-socials__link, .tvm-socials__link:visited, .tvm-socials__link:hover, .tvm-socials__label { text-decoration: none !important; }
.tvm-actions { display: flex !important; flex-wrap: wrap !important; align-items: center !important; gap: 12px !important; }
.tvm-socials--inline { display: inline-flex !important; align-items: center !important; gap: 10px !important; margin: 0 !important; }
.tvm-layout { align-items: start !important; grid-template-columns: minmax(0, 1fr) minmax(310px, 360px) !important; }
.tvm-main { min-width: 0 !important; }
.tvm-grid { grid-template-columns: repeat(3, minmax(255px, 1fr)) !important; gap: clamp(26px, 3vw, 44px) !important; align-items: stretch !important; justify-items: center !important; }
.tvm-grid:has(.tvm-card--teaser:not([hidden])), .tvm-grid:has(.tvm-card--event:not([hidden])), .tvm-grid:has(.tvm-card--patron:not([hidden])) { grid-template-columns: repeat(3, minmax(275px, 1fr)) !important; }
.tvm-card, .tvm-card--teaser, .tvm-card--event, .tvm-card--patron { width: 100% !important; max-width: 390px !important; min-width: 0 !important; border-radius: 25px !important; overflow: hidden !important; background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,252,247,.92)) !important; box-shadow: 0 22px 44px rgba(31,24,20,.075) !important; }
.tvm-card__button, .tvm-card--teaser .tvm-card__button, .tvm-card--event .tvm-card__button, .tvm-card--patron .tvm-card__button { display: flex !important; flex-direction: column !important; height: 100% !important; min-height: 0 !important; padding: clamp(24px, 2.2vw, 34px) clamp(28px, 2.8vw, 40px) clamp(22px, 2.2vw, 32px) !important; overflow: hidden !important; }
.tvm-card__thumb, .tvm-card--teaser .tvm-card__thumb, .tvm-card--event .tvm-card__thumb, .tvm-card--patron .tvm-card__thumb { width: 100% !important; max-width: 275px !important; margin: 0 auto 18px !important; aspect-ratio: 16/9 !important; border-radius: 16px !important; flex: 0 0 auto !important; }
.tvm-card__content, .tvm-card--teaser .tvm-card__content, .tvm-card--event .tvm-card__content, .tvm-card--patron .tvm-card__content { display: flex !important; flex-direction: column !important; width: 100% !important; max-width: 275px !important; margin: 0 auto !important; padding: 0 !important; min-height: 0 !important; flex: 1 1 auto !important; gap: 12px !important; overflow: hidden !important; }
.tvm-card__title, .tvm-card--teaser .tvm-card__title, .tvm-card--event .tvm-card__title, .tvm-card--patron .tvm-card__title { display: block !important; overflow: visible !important; text-overflow: unset !important; max-height: none !important; font-size: clamp(18px, 1.55vw, 21px) !important; line-height: 1.08 !important; letter-spacing: -.03em !important; font-weight: 860 !important; color: #0d0d0d !important; overflow-wrap: normal !important; word-break: normal !important; hyphens: none !important; }
.tvm-card__categories { display: flex !important; flex-wrap: wrap !important; gap: 6px !important; min-height: 24px !important; align-items: center !important; }
.tvm-card__categories span { border-radius: 999px !important; padding: 5px 9px !important; background: rgba(210,63,55,.09) !important; color: rgba(210,63,55,.8) !important; font-size: 10.5px !important; line-height: 1 !important; font-weight: 820 !important; text-decoration: none !important; }
.tvm-card__description, .tvm-card--teaser .tvm-card__description, .tvm-card--event .tvm-card__description, .tvm-card--patron .tvm-card__description { display: block !important; min-height: 82px !important; max-height: 82px !important; padding: 10px 12px 10px 15px !important; margin: 0 !important; overflow: hidden !important; border-left: 3px solid rgba(0,165,220,.2) !important; border-radius: 0 12px 12px 0 !important; background: rgba(255,255,255,.32) !important; color: rgba(42,47,52,.74) !important; font-size: 13.6px !important; line-height: 1.46 !important; overflow-wrap: normal !important; word-break: normal !important; hyphens: none !important; }
.tvm-card--event .tvm-card__description, .tvm-card--patron .tvm-card__description { min-height: 58px !important; max-height: 58px !important; }
.tvm-card__meta { display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 10px !important; margin-top: auto !important; padding-top: 12px !important; border-top: 1px solid rgba(31,24,20,.08) !important; min-height: 48px !important; }
.tvm-card__rating { min-width: 0 !important; max-width: calc(100% - 44px) !important; overflow: hidden !important; }
.tvm-card__stars { display: inline-flex !important; align-items: center !important; gap: 2px !important; max-width: 100% !important; min-height: 34px !important; padding: 0 11px !important; border-radius: 999px !important; background: rgba(31,24,20,.055) !important; white-space: nowrap !important; }
.tvm-card__rating-number { margin-left: 5px !important; font-size: 12px !important; font-weight: 850 !important; color: #2d2521 !important; }
.tvm-card__votes { flex: 0 0 auto !important; }
.tvm-card__share-icon { flex: 0 0 34px !important; width: 34px !important; height: 34px !important; min-width: 34px !important; margin-left: auto !important; }
.tvm-card:hover { background: linear-gradient(180deg, #2889bf, #1f7eb4) !important; box-shadow: 0 26px 54px rgba(24,126,188,.22) !important; }
.tvm-card:hover .tvm-card__title, .tvm-card:hover .tvm-card__description { color: #fff !important; }
.tvm-card:hover .tvm-card__description { background: rgba(255,255,255,.13) !important; border-left-color: rgba(255,255,255,.42) !important; }
.tvm-sidebar { display: grid !important; gap: 20px !important; align-content: start !important; min-width: 0 !important; }
.tvm-top10 { border-radius: 24px !important; padding: 24px !important; background: rgba(255,255,255,.56) !important; box-shadow: 0 18px 38px rgba(31,24,20,.07) !important; }
.tvm-top10 h3 { margin: 0 0 16px !important; font-size: 23px !important; line-height: 1.12 !important; text-align: center !important; letter-spacing: -.03em !important; }
.tvm-top10__list { display: grid !important; gap: 12px !important; margin: 0 !important; padding: 0 !important; list-style: none !important; }
.tvm-top10__button { min-width: 0 !important; width: 100% !important; border-radius: 16px !important; }
.tvm-top10__text strong { display: -webkit-box !important; -webkit-box-orient: vertical !important; -webkit-line-clamp: 2 !important; overflow: hidden !important; text-overflow: ellipsis !important; overflow-wrap: normal !important; word-break: normal !important; }
.tvm-footer__inner { width: min(100% - 32px, var(--tvm-shell-max)) !important; margin: 0 auto !important; display: grid !important; grid-template-columns: minmax(220px, 1fr) minmax(260px, .8fr) auto !important; align-items: center !important; gap: 18px !important; }
.tvm-footer-tags__list, .tvm-seo-tags-strip__list { display: flex !important; flex-wrap: wrap !important; gap: 6px !important; justify-content: center !important; }
.tvm-footer-tags__tag, .tvm-seo-tags-strip__tag { text-decoration: none !important; white-space: nowrap !important; }
.tvm-mobile-bottom-top { display: none; }
@media (max-width: 1240px) { .tvm-layout { grid-template-columns: 1fr !important; } .tvm-grid, .tvm-grid:has(.tvm-card--teaser:not([hidden])), .tvm-grid:has(.tvm-card--event:not([hidden])), .tvm-grid:has(.tvm-card--patron:not([hidden])) { grid-template-columns: repeat(3, minmax(240px, 1fr)) !important; } .tvm-sidebar { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important; } }
@media (max-width: 940px) { .tvm-grid, .tvm-grid:has(.tvm-card--teaser:not([hidden])), .tvm-grid:has(.tvm-card--event:not([hidden])), .tvm-grid:has(.tvm-card--patron:not([hidden])) { grid-template-columns: repeat(2, minmax(250px, 1fr)) !important; } .tvm-footer__inner { grid-template-columns: 1fr !important; text-align: center !important; justify-items: center !important; } }
@media (max-width: 720px) { .tvm-actions { justify-content: center !important; } .tvm-category-toggle { display: inline-flex !important; align-items: center !important; justify-content: center !important; width: min(100%, 360px) !important; margin: 8px auto 0 !important; } .tvm-category-nav:not(.is-open) { display: none !important; } .tvm-category-nav.is-open { display: grid !important; grid-template-columns: 1fr !important; gap: 8px !important; width: min(100%, 360px) !important; margin: 8px auto 0 !important; } .tvm-grid, .tvm-grid:has(.tvm-card--teaser:not([hidden])), .tvm-grid:has(.tvm-card--event:not([hidden])), .tvm-grid:has(.tvm-card--patron:not([hidden])) { grid-template-columns: 1fr !important; gap: 22px !important; } .tvm-card, .tvm-card--teaser, .tvm-card--event, .tvm-card--patron { max-width: min(100%, 390px) !important; } .tvm-card__button, .tvm-card--teaser .tvm-card__button, .tvm-card--event .tvm-card__button, .tvm-card--patron .tvm-card__button { padding: 22px 26px 24px !important; } .tvm-card__thumb, .tvm-card__content, .tvm-card--teaser .tvm-card__thumb, .tvm-card--teaser .tvm-card__content, .tvm-card--event .tvm-card__thumb, .tvm-card--event .tvm-card__content, .tvm-card--patron .tvm-card__thumb, .tvm-card--patron .tvm-card__content { max-width: 100% !important; } .tvm-sidebar { display: grid !important; grid-template-columns: 1fr !important; } .tvm-top10:not([data-top-scope="wszystkie-filmy"]):not([hidden]) { order: -2 !important; } .tvm-sidebar .tvm-top10[data-top-scope="wszystkie-filmy"] { order: 9 !important; } .tvm-seo-tags-strip__tag:nth-of-type(n+4), .tvm-footer-tags__tag:nth-of-type(n+4) { display: none !important; } .tvm-mobile-bottom-top { display: block !important; width: min(100% - 28px, 390px) !important; margin: 26px auto 0 !important; padding: 18px !important; border-radius: 22px !important; background: rgba(255,255,255,.6) !important; box-shadow: 0 16px 32px rgba(31,24,20,.07) !important; } .tvm-mobile-bottom-top h3 { margin: 0 0 12px !important; text-align: center !important; font-size: 20px !important; } .tvm-mobile-bottom-top__list { display: grid !important; gap: 9px !important; } .tvm-mobile-bottom-top__item { display: grid !important; grid-template-columns: 72px 1fr !important; align-items: center !important; gap: 10px !important; padding: 9px !important; border: 0 !important; border-radius: 14px !important; background: rgba(255,255,255,.78) !important; text-align: left !important; font-weight: 800 !important; } .tvm-mobile-bottom-top__item img { width: 72px !important; aspect-ratio: 16/9 !important; object-fit: cover !important; border-radius: 10px !important; } }
@media (max-width: 420px) { .tvm-card__button { padding-left: 20px !important; padding-right: 20px !important; } .tvm-card__title { font-size: 19px !important; } .tvm-card__description { font-size: 13.2px !important; } }

/* TVM 1.0.67 — porządki kart, filtrów i responsywności bez nachodzenia elementów */
.tvm-video-hub *,
.tvm-video-hub *::before,
.tvm-video-hub *::after{box-sizing:border-box}
.tvm-content-filters{max-width:var(--tvm-shell-max,1180px);margin:0 auto 26px;padding:16px 24px;display:grid;grid-template-columns:repeat(5,minmax(120px,1fr)) auto auto;gap:12px;align-items:end;background:rgba(255,250,241,.82);border:1px solid rgba(25,20,17,.08);border-radius:24px;box-shadow:0 12px 34px rgba(25,20,17,.07)}
.tvm-content-filters label{display:flex;flex-direction:column;gap:6px;min-width:0;font-weight:700;font-size:12px;color:#33251d}
.tvm-content-filters input,.tvm-content-filters select{width:100%;min-height:40px;border:1px solid rgba(25,20,17,.12);border-radius:14px;background:#fff;padding:0 12px;font:inherit;color:#241813;outline:none}
.tvm-content-filters button,.tvm-filter-clear{min-height:40px;display:inline-flex;align-items:center;justify-content:center;border:0;border-radius:999px;padding:0 18px;background:#007d62;color:#fff;font-weight:800;text-decoration:none;cursor:pointer;white-space:nowrap}
.tvm-filter-clear{background:#1b120e;color:#fff!important}
.tvm-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,250px),1fr));gap:28px;align-items:stretch;overflow:visible}
.tvm-layout{align-items:start;gap:36px;overflow:visible}.tvm-main{min-width:0}.tvm-sidebar{min-width:280px}
.tvm-card{width:100%;max-width:310px;min-width:0;margin:0 auto;overflow:visible}.tvm-card__button{height:100%;min-height:405px;display:flex;flex-direction:column;align-items:stretch;justify-content:flex-start;padding:28px 28px 24px;overflow:hidden}.tvm-card__content{display:flex;flex-direction:column;gap:14px;min-width:0;min-height:0;flex:1}.tvm-card__thumb{align-self:center;width:100%;max-width:196px;aspect-ratio:16/9;border-radius:16px;overflow:hidden;flex:0 0 auto}.tvm-card__title{font-size:19px;line-height:1.08;font-weight:900;letter-spacing:-.02em;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;word-break:normal;overflow-wrap:normal;text-wrap:balance}.tvm-card__description{font-size:14px;line-height:1.45;color:rgba(25,20,17,.72);padding:12px 14px 12px 18px;border-left:3px solid rgba(0,160,200,.22);background:rgba(255,255,255,.36);border-radius:0 12px 12px 0;display:-webkit-box;-webkit-line-clamp:5;-webkit-box-orient:vertical;overflow:hidden;word-break:normal;overflow-wrap:break-word}.tvm-card__categories{display:flex;gap:8px;flex-wrap:wrap;min-height:22px}.tvm-card__categories span,.tvm-card__tag{display:inline-flex;align-items:center;justify-content:center;min-height:22px;padding:5px 10px;border-radius:999px;background:rgba(201,65,50,.09);color:#d94b40;font-size:11px;font-weight:800;text-decoration:none;border:0}.tvm-card__meta{margin-top:auto;padding-top:14px;border-top:1px solid rgba(25,20,17,.08);display:flex;align-items:center;justify-content:space-between;gap:10px;min-width:0}.tvm-card__rating{min-width:0}.tvm-card__stars{display:inline-flex;align-items:center;gap:2px;max-width:100%;padding:8px 12px;border-radius:999px;background:rgba(246,229,205,.58);white-space:nowrap;font-size:13px}.tvm-card__share-icon{flex:0 0 34px;width:34px;height:34px;border-radius:999px}
.tvm-card--teaser,.tvm-card--event{max-width:320px}.tvm-card--teaser .tvm-card__button,.tvm-card--event .tvm-card__button{min-height:390px}.tvm-card--event .tvm-card__title,.tvm-card--teaser .tvm-card__title{-webkit-line-clamp:3}.tvm-card--event .tvm-card__description,.tvm-card--teaser .tvm-card__description{-webkit-line-clamp:4}
.tvm-card.is-active,.tvm-card:hover{transform:none}.tvm-card.is-active .tvm-card__button{background:linear-gradient(180deg,rgba(59,151,211,.88),rgba(37,135,193,.96));color:#fff}.tvm-card.is-active .tvm-card__description{background:rgba(255,255,255,.22);color:rgba(255,255,255,.86);border-left-color:rgba(255,255,255,.46)}
.tvm-socials__link,.tvm-socials__link:hover,.tvm-socials__link:focus{text-decoration:none!important}.tvm-socials__label{text-decoration:none!important}
.tvm-top10{overflow:hidden}.tvm-top10__button{min-width:0}.tvm-top10__text strong{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;word-break:normal;overflow-wrap:break-word}
@media (max-width:1024px){.tvm-content-filters{grid-template-columns:repeat(3,minmax(0,1fr));padding:14px 16px}.tvm-layout{grid-template-columns:1fr}.tvm-sidebar{min-width:0}.tvm-grid{grid-template-columns:repeat(auto-fit,minmax(min(100%,230px),1fr));gap:22px}.tvm-card{max-width:300px}.tvm-card__button{min-height:380px;padding:24px 24px 22px}}
@media (max-width:720px){.tvm-content-filters{grid-template-columns:1fr 1fr;gap:10px;margin:0 14px 20px}.tvm-content-filters button,.tvm-filter-clear{grid-column:auto}.tvm-grid{grid-template-columns:1fr;padding-inline:14px}.tvm-card{max-width:340px}.tvm-card__button{min-height:auto;padding:24px 22px}.tvm-card__description{-webkit-line-clamp:4}.tvm-card__meta{gap:8px}.tvm-card__stars{font-size:12px;padding:7px 10px}.tvm-sidebar{display:none}.tvm-mobile-bottom-top,.tvm-mobile-shell{display:block}}
@media (max-width:420px){.tvm-content-filters{grid-template-columns:1fr}.tvm-card{max-width:100%}.tvm-card__thumb{max-width:210px}.tvm-card__title{font-size:18px}.tvm-card__description{font-size:13px}}
@media (max-width:720px){.tvm-seo-tags-strip__tag:nth-of-type(n+4),.tvm-footer-tags__tag:nth-of-type(n+4){display:none!important}}

/* TVM 1.0.68 — dopracowanie filtrów, topów i kart bez przepisywania struktury. */
.tvm-video-hub{overflow-x:clip!important}
.tvm-hero-actions{display:flex!important;align-items:center!important;justify-content:flex-start!important;flex-wrap:wrap!important;gap:12px!important;max-width:var(--tvm-shell-max,1180px)!important;margin-left:auto!important;margin-right:auto!important}
.tvm-hero-action,.tvm-socials__link{min-height:44px!important;border-radius:999px!important;font-weight:850!important;box-shadow:0 12px 26px rgba(25,20,17,.08)!important;text-decoration:none!important}
.tvm-socials--inline{display:flex!important;align-items:center!important;gap:10px!important;margin:0!important}.tvm-socials__label{text-decoration:none!important}.tvm-socials__link:hover .tvm-socials__label{text-decoration:none!important}
.tvm-category-nav{max-width:var(--tvm-shell-max,1180px)!important;margin-left:auto!important;margin-right:auto!important}
.tvm-content-filters{width:min(calc(100% - 48px),var(--tvm-shell-max,1180px))!important;margin:0 auto 24px!important;grid-template-columns:repeat(5,minmax(116px,1fr)) auto auto!important;gap:12px!important;padding:15px 20px!important;border-radius:22px!important}
.tvm-content-filters input,.tvm-content-filters select{min-height:42px!important;border-radius:14px!important}.tvm-content-filters button,.tvm-filter-clear{min-height:42px!important;padding-inline:18px!important}
.tvm-layout{width:min(calc(100% - 48px),var(--tvm-shell-max,1180px))!important;margin:0 auto!important;display:grid!important;grid-template-columns:minmax(0,1fr) 260px!important;gap:24px!important;align-items:start!important;overflow:visible!important}.tvm-main{min-width:0!important}.tvm-sidebar{width:260px!important;min-width:0!important;position:sticky!important;top:20px!important;display:grid!important;gap:14px!important}.tvm-top10,.tvm-sidebar-promo{border-radius:22px!important;padding:18px!important}.tvm-top10 h3{font-size:20px!important;line-height:1.14!important;margin:0 0 14px!important}.tvm-top10__button{grid-template-columns:72px minmax(0,1fr)!important;gap:12px!important;padding:10px!important}.tvm-top10__thumb{width:72px!important}.tvm-top10__text strong{font-size:14px!important;line-height:1.16!important}.tvm-sidebar-promos{margin-top:0!important;gap:14px!important}.tvm-sidebar-promo__card{grid-template-columns:76px minmax(0,1fr)!important}.tvm-sidebar-promo__body strong{font-size:14px!important}.tvm-sidebar-promo__body small{font-size:12px!important}
.tvm-grid{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))!important;gap:24px!important;align-items:stretch!important}.tvm-card{max-width:286px!important;min-width:0!important;width:100%!important}.tvm-card--teaser,.tvm-card--event,.tvm-card--patron{max-width:300px!important}.tvm-card__button{min-height:382px!important;padding:24px 24px 20px!important;display:flex!important;flex-direction:column!important;gap:0!important;overflow:hidden!important}.tvm-card__content{flex:1 1 auto!important;display:flex!important;flex-direction:column!important;gap:12px!important;min-height:0!important;overflow:hidden!important}.tvm-card__thumb{max-width:184px!important;margin-inline:auto!important}.tvm-card__title{font-size:18px!important;line-height:1.1!important;font-weight:900!important;letter-spacing:-.025em!important;-webkit-line-clamp:3!important;min-height:0!important}.tvm-card__description{font-size:13.5px!important;line-height:1.42!important;-webkit-line-clamp:4!important;max-height:calc(13.5px * 1.42 * 4 + 26px)!important;padding:11px 13px 11px 16px!important;margin:0!important;overflow:hidden!important}.tvm-card__categories{gap:7px!important;min-height:24px!important}.tvm-card__categories span,.tvm-card__tag{font-size:10.5px!important;min-height:22px!important;padding:5px 9px!important;text-decoration:none!important}.tvm-card__meta{margin-top:auto!important;flex:0 0 auto!important;min-height:42px!important;padding-top:12px!important;gap:8px!important}.tvm-card__stars{height:30px!important;max-width:172px!important;padding:0 9px!important;font-size:12px!important}.tvm-card__votes{height:19px!important;min-width:19px!important;padding:0 6px!important}.tvm-card__share-icon{flex:0 0 32px!important;width:32px!important;height:32px!important;min-width:32px!important}.tvm-card.is-active .tvm-card__button{background:linear-gradient(180deg,rgba(38,143,194,.92),rgba(15,128,178,.98))!important}.tvm-card.is-active .tvm-card__description{max-height:calc(13.5px * 1.42 * 4 + 26px)!important}
@media (min-width:1180px){.tvm-grid{grid-template-columns:repeat(3,minmax(220px,1fr))!important}.tvm-card{justify-self:center!important}}
@media (max-width:1120px){.tvm-layout{grid-template-columns:1fr!important}.tvm-sidebar{position:static!important;width:100%!important;grid-template-columns:repeat(auto-fit,minmax(230px,1fr))!important}.tvm-grid{grid-template-columns:repeat(auto-fit,minmax(230px,1fr))!important}.tvm-card{max-width:300px!important}}
@media (max-width:780px){.tvm-content-filters{width:min(calc(100% - 28px),420px)!important;grid-template-columns:1fr 1fr!important;padding:14px!important}.tvm-layout{width:100%!important}.tvm-main{width:100%!important}.tvm-grid{grid-template-columns:1fr!important;padding-inline:14px!important;gap:22px!important}.tvm-card,.tvm-card--teaser,.tvm-card--event,.tvm-card--patron{max-width:min(100%,360px)!important}.tvm-card__button{min-height:auto!important;padding:22px 22px 20px!important}.tvm-card__description{-webkit-line-clamp:4!important}.tvm-sidebar{display:none!important}.tvm-mobile-shell{display:block!important}.tvm-category-nav.is-open{width:min(calc(100% - 28px),380px)!important}.tvm-category-nav.is-open a{text-align:center!important}.tvm-socials--inline{width:100%!important}.tvm-hero-actions{justify-content:center!important}.tvm-content-filters button,.tvm-filter-clear{width:100%!important}}
@media (max-width:460px){.tvm-content-filters{grid-template-columns:1fr!important}.tvm-card__thumb{max-width:210px!important}.tvm-card__title{font-size:18px!important}.tvm-card__stars{font-size:11px!important;padding:0 7px!important}.tvm-card__share-icon{width:30px!important;height:30px!important;min-width:30px!important;flex-basis:30px!important}}

/* TVM 1.0.70 — porządek filtrów, guzików i kart po usunięciu osobnej zakładki Zajawki */
.tvm-hero-actions,
.tvm-socials--inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.tvm-hero-action,
.tvm-socials__link,
.tvm-live-action {
    min-height: 44px;
    border: 1px solid rgba(20, 15, 12, .08);
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(25, 20, 17, .08);
    text-decoration: none !important;
    font-weight: 800;
    letter-spacing: -.01em;
}
.tvm-hero-action--event,
.tvm-event-filters button[type="submit"] {
    background: linear-gradient(135deg, #007c67, #009378);
    color: #fff;
}
.tvm-socials__link {
    background: rgba(255,255,255,.82);
    color: #1b1411 !important;
    padding: 10px 18px 10px 12px;
}
.tvm-socials__link:hover,
.tvm-live-action:hover,
.tvm-hero-action:hover,
.tvm-event-filters button[type="submit"]:hover {
    transform: translateY(-1px);
    text-decoration: none !important;
}
.tvm-socials__label { text-decoration: none !important; }
.tvm-socials__icon {
    background: #d83d35;
    color: #fff;
    box-shadow: none;
}
.tvm-live-action--listen {
    background: linear-gradient(135deg, #0497b5, #04aec3);
    color: #fff !important;
    justify-content: center;
}
.tvm-content-filters,
.tvm-event-filters {
    max-width: min(100%, var(--tvm-content-width, 1180px));
    display: grid;
    grid-template-columns: repeat(5, minmax(120px, 1fr)) auto auto;
    gap: 12px;
    align-items: end;
    padding: 18px 20px;
}
.tvm-event-filters label { min-width: 0; }
.tvm-event-filters select,
.tvm-event-filters input {
    height: 44px;
    border-radius: 14px;
}
.tvm-filter-clear {
    background: rgba(40, 34, 30, .76);
    color: #fff !important;
    border-radius: 999px;
    min-height: 44px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-weight: 800;
}
.tvm-grid-shell {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 300px);
    gap: clamp(22px, 3vw, 38px);
}
.tvm-sidebar { max-width: 300px; }
.tvm-top10 {
    width: 100%;
    padding: 22px 20px;
    border-radius: 24px;
}
.tvm-top10__button {
    min-height: 76px;
    padding: 10px 12px;
    gap: 12px;
}
.tvm-top10__button img {
    width: 76px;
    height: 48px;
    flex: 0 0 76px;
}
.tvm-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: clamp(22px, 3vw, 34px);
    align-items: stretch;
}
.tvm-card {
    width: 100%;
    max-width: 292px;
    min-width: 0;
    margin-inline: auto;
    overflow: hidden;
}
.tvm-card__button {
    height: 100%;
    min-height: 430px;
    padding: 26px 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
}
.tvm-card__thumb {
    width: 100%;
    max-width: 190px;
    margin-inline: auto;
}
.tvm-card__content {
    min-width: 0;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}
.tvm-card__title {
    font-size: clamp(18px, 1.55vw, 22px);
    line-height: 1.05;
    min-height: 3.15em;
    max-height: 3.15em;
    overflow: hidden;
    text-wrap: balance;
}
.tvm-card__description {
    margin-top: 0;
    padding: 10px 12px 10px 16px;
    border-left: 3px solid rgba(0, 174, 207, .28);
    border-radius: 0 12px 12px 0;
    line-height: 1.42;
    max-height: 6.1em;
    overflow: hidden;
    color: rgba(25, 20, 17, .72);
}
.tvm-card.is-featured .tvm-card__description,
.tvm-card:hover .tvm-card__description {
    color: inherit;
}
.tvm-card__meta {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}
.tvm-card__rating { min-width: 0; max-width: calc(100% - 42px); }
.tvm-card__share-icon { flex: 0 0 36px; }
@media (max-width: 1040px) {
    .tvm-grid-shell { grid-template-columns: 1fr; }
    .tvm-sidebar { display: none; }
    .tvm-content-filters,
    .tvm-event-filters { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 680px) {
    .tvm-content-filters,
    .tvm-event-filters { grid-template-columns: 1fr; padding: 14px; }
    .tvm-grid { grid-template-columns: minmax(0, 1fr); }
    .tvm-card { max-width: min(100%, 330px); }
    .tvm-card__button { min-height: 390px; padding: 22px 20px; }
}

/* TVM 1.0.71 — spokojny, jeden typ kart + delikatny hover */
.tvm-grid {
    align-items: stretch;
}
.tvm-card,
.tvm-card--teaser,
.tvm-card--event,
.tvm-card--patron {
    width: 100% !important;
    max-width: 270px !important;
    min-height: 0 !important;
    border-radius: 24px !important;
    overflow: visible !important;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease !important;
}
.tvm-card:hover,
.tvm-card:focus-within {
    transform: translateY(-6px) !important;
    box-shadow: 0 24px 46px rgba(31,24,20,.16) !important;
}
.tvm-card__button {
    min-height: 0 !important;
    height: auto !important;
    padding: 22px 24px 20px !important;
    gap: 14px !important;
    overflow: hidden !important;
}
.tvm-card__thumb,
.tvm-card--teaser .tvm-card__thumb,
.tvm-card--event .tvm-card__thumb,
.tvm-card--patron .tvm-card__thumb {
    width: 100% !important;
    max-width: 176px !important;
    height: 92px !important;
    margin: 0 auto 4px !important;
    border-radius: 14px !important;
}
.tvm-card--event .tvm-card__thumb,
.tvm-card--patron .tvm-card__thumb { max-width: 168px !important; }
.tvm-card__content,
.tvm-card--teaser .tvm-card__content,
.tvm-card--event .tvm-card__content,
.tvm-card--patron .tvm-card__content {
    width: 100% !important;
    max-width: 210px !important;
    min-height: 0 !important;
    padding: 0 !important;
    gap: 10px !important;
    justify-content: flex-start !important;
    margin: 0 auto !important;
}
.tvm-card__title,
.tvm-card--teaser .tvm-card__title,
.tvm-card--event .tvm-card__title,
.tvm-card--patron .tvm-card__title {
    font-size: clamp(17px, 1.45vw, 21px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.045em !important;
    max-height: calc(1.04em * 3) !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
}
.tvm-card__description,
.tvm-card--teaser .tvm-card__description,
.tvm-card--event .tvm-card__description,
.tvm-card--patron .tvm-card__description {
    font-size: 13.5px !important;
    line-height: 1.35 !important;
    min-height: 0 !important;
    max-height: calc(1.35em * 3) !important;
    padding: 8px 0 8px 13px !important;
    border-left: 3px solid rgba(14,156,210,.24) !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
}
.tvm-card__categories { gap: 6px !important; min-height: 0 !important; }
.tvm-card__categories span {
    font-size: 10px !important;
    padding: 5px 8px !important;
    border-radius: 999px !important;
    text-decoration: none !important;
}
.tvm-card__meta {
    width: 100% !important;
    margin-top: 6px !important;
    padding-top: 10px !important;
    border-top: 1px solid rgba(31,24,20,.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    position: static !important;
}
.tvm-card__rating { min-width: 0 !important; max-width: calc(100% - 44px) !important; }
.tvm-card__share-icon { flex: 0 0 34px !important; width: 34px !important; height: 34px !important; position: static !important; }
.tvm-card:hover .tvm-card__title,
.tvm-card:hover .tvm-card__description { color: inherit !important; }
.tvm-card:hover .tvm-card__categories span { background: rgba(201,65,50,.10) !important; color: var(--tvm-accent) !important; }
@media (min-width: 920px) {
    .tvm-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 270px)) !important; gap: clamp(22px, 2.6vw, 34px) !important; }
}
@media (max-width: 680px) {
    .tvm-card, .tvm-card--teaser, .tvm-card--event, .tvm-card--patron { max-width: none !important; }
    .tvm-card__content { max-width: none !important; }
}

/* TVM 1.0.72 — stopka społecznościowa, przycisk dodawania przy filtrach, tagi zakładek */
.tvm-hero__brand-col > .tvm-socials,
.tvm-hero-actions .tvm-socials,
.tvm-socials--inline {
    display: none !important;
}
.tvm-hero-actions {
    display: flex !important;
    max-width: var(--tvm-shell-max,1180px) !important;
    margin: 0 auto 10px !important;
    gap: 10px !important;
}
.tvm-content-filters,
.tvm-event-filters {
    grid-template-columns: repeat(5,minmax(110px,1fr)) minmax(190px,auto) !important;
    align-items: end !important;
}
.tvm-filter-actions {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: wrap !important;
    gap: 9px !important;
    min-width: 0 !important;
}
.tvm-filter-submit,
.tvm-filter-clear,
.tvm-filter-add-event {
    min-height: 42px !important;
    border: 0 !important;
    border-radius: 999px !important;
    padding: 0 17px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-weight: 850 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    box-shadow: 0 10px 22px rgba(31,24,20,.08) !important;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease !important;
}
.tvm-filter-submit {
    background: linear-gradient(135deg, #077c66, #0a987d) !important;
    color: #fff !important;
}
.tvm-filter-clear {
    background: rgba(31,24,20,.76) !important;
    color: #fff !important;
}
.tvm-filter-add-event {
    background: linear-gradient(135deg, #0b6f5d, #0d8a71) !important;
    color: #fff !important;
}
.tvm-filter-add-event__icon {
    width: 22px !important;
    height: 22px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255,255,255,.16) !important;
    line-height: 1 !important;
}
.tvm-filter-submit:hover,
.tvm-filter-clear:hover,
.tvm-filter-add-event:hover,
.tvm-footer-socials__icon:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 28px rgba(31,24,20,.13) !important;
    text-decoration: none !important;
}
.tvm-seo-tags-strip {
    display: block !important;
    width: 100% !important;
    padding: 10px 16px 4px !important;
    background: transparent !important;
}
.tvm-seo-tags-strip__inner {
    width: min(calc(100% - 32px), var(--tvm-shell-max,1180px)) !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px 12px !important;
    flex-wrap: wrap !important;
    max-height: 54px !important;
    overflow: hidden !important;
}
.tvm-seo-tags-strip__label {
    font-size: 10px !important;
    font-weight: 850 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    color: rgba(31,24,20,.48) !important;
}
.tvm-seo-tags-strip__list {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 5px !important;
    max-height: 46px !important;
    overflow: hidden !important;
}
.tvm-seo-tags-strip__tag,
.tvm-footer-tags__tag {
    text-decoration: none !important;
    border-radius: 999px !important;
}
.tvm-seo-tags-strip__tag {
    font-size: 9.2px !important;
    font-weight: 750 !important;
    padding: 4px 7px !important;
    color: rgba(31,24,20,.52) !important;
    background: rgba(255,255,255,.48) !important;
    border: 1px solid rgba(31,24,20,.07) !important;
}
.tvm-footer__inner {
    grid-template-columns: minmax(220px,1fr) auto minmax(260px,.9fr) auto !important;
    gap: 16px !important;
}
.tvm-footer-socials {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}
.tvm-footer-socials__icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    color: #fff !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    box-shadow: 0 12px 26px rgba(31,24,20,.12) !important;
    transition: transform .18s ease, box-shadow .18s ease !important;
}
.tvm-footer-socials__icon--facebook { background: #1877f2 !important; }
.tvm-footer-socials__icon--youtube { background: #ff0033 !important; font-size: 18px !important; }
.tvm-footer-socials__icon span { transform: translateY(-1px); }
.tvm-footer-socials__icon--youtube span { transform: translateX(1px); }
.tvm-footer-socials__icon:focus-visible,
.tvm-filter-add-event:focus-visible,
.tvm-filter-submit:focus-visible,
.tvm-filter-clear:focus-visible {
    outline: 3px solid rgba(0,160,200,.28) !important;
    outline-offset: 3px !important;
}
.tvm-footer-tags {
    justify-self: center !important;
}
.tvm-footer__menu {
    justify-self: end !important;
}
@media (max-width: 1080px) {
    .tvm-content-filters,
    .tvm-event-filters {
        grid-template-columns: repeat(3,minmax(0,1fr)) !important;
    }
    .tvm-filter-actions {
        grid-column: 1 / -1 !important;
        justify-content: center !important;
    }
    .tvm-footer__inner {
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        text-align: center !important;
    }
    .tvm-footer__copy,
    .tvm-footer-tags,
    .tvm-footer__menu {
        justify-self: center !important;
    }
}
@media (max-width: 720px) {
    .tvm-content-filters,
    .tvm-event-filters {
        grid-template-columns: 1fr !important;
        width: min(calc(100% - 28px), 430px) !important;
    }
    .tvm-filter-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }
    .tvm-filter-submit,
    .tvm-filter-clear,
    .tvm-filter-add-event {
        width: 100% !important;
    }
    .tvm-seo-tags-strip__inner {
        width: min(calc(100% - 28px), 430px) !important;
        max-height: 48px !important;
    }
    .tvm-seo-tags-strip__tag:nth-of-type(n+4),
    .tvm-footer-tags__tag:nth-of-type(n+4) {
        display: none !important;
    }
}

/* TVM 1.0.73 — porządek zakładek, filtrów, kart i stopki */
.tvm-tabs-bar{
    width:min(calc(100% - 48px), var(--tvm-shell-max,1180px));
    margin: 16px auto 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
}
.tvm-tabs-row{order:2;display:flex;align-items:center;justify-content:flex-end;gap:10px;flex:0 0 auto;margin:0!important;}
.tvm-category-nav{order:1;flex:1 1 auto;margin:0!important;min-width:0;max-width:none!important;}
.tvm-tabs-add-event{
    min-height:42px;border:0;border-radius:999px;padding:0 17px;display:inline-flex;align-items:center;justify-content:center;gap:8px;
    background:linear-gradient(135deg,rgba(2,113,96,.95),rgba(7,143,119,.95));color:#fff;font-weight:850;cursor:pointer;
    box-shadow:0 10px 22px rgba(31,24,20,.08);white-space:nowrap;transition:transform .18s ease,box-shadow .18s ease,filter .18s ease;
}
.tvm-tabs-add-event:hover,.tvm-tabs-add-event:focus-visible{transform:translateY(-2px);box-shadow:0 14px 28px rgba(31,24,20,.13);outline:none;}
.tvm-content-filters,.tvm-event-filters{
    grid-template-columns:repeat(5,minmax(120px,1fr)) auto!important;
    background:rgba(255,255,255,.38)!important;border:1px solid rgba(31,24,20,.06)!important;box-shadow:0 14px 34px rgba(31,24,20,.045)!important;
}
.tvm-filter-actions{display:flex!important;gap:8px!important;justify-content:flex-end!important;align-items:end!important;}
.tvm-filter-submit,.tvm-filter-clear{
    min-height:38px!important;padding:0 15px!important;border-radius:999px!important;font-size:14px!important;box-shadow:none!important;border:1px solid rgba(31,24,20,.08)!important;
}
.tvm-filter-submit{background:rgba(7,126,104,.92)!important;color:#fff!important;}
.tvm-filter-clear{background:rgba(255,255,255,.70)!important;color:rgba(31,24,20,.72)!important;}
.tvm-filter-submit:hover,.tvm-filter-clear:hover{transform:translateY(-1px)!important;box-shadow:0 8px 18px rgba(31,24,20,.08)!important;text-decoration:none!important;}
.tvm-card,.tvm-card--teaser,.tvm-card--event,.tvm-card--patron{max-width:282px!important;overflow:visible!important;}
.tvm-card__button{min-height:348px!important;padding:22px 22px 18px!important;overflow:hidden!important;}
.tvm-card__thumb,.tvm-card--teaser .tvm-card__thumb,.tvm-card--event .tvm-card__thumb,.tvm-card--patron .tvm-card__thumb{max-width:178px!important;height:92px!important;margin:0 auto 8px!important;}
.tvm-card__content,.tvm-card--teaser .tvm-card__content,.tvm-card--event .tvm-card__content,.tvm-card--patron .tvm-card__content{max-width:216px!important;gap:9px!important;overflow:hidden!important;}
.tvm-card__title,.tvm-card--teaser .tvm-card__title,.tvm-card--event .tvm-card__title,.tvm-card--patron .tvm-card__title{
    font-size:clamp(16px,1.18vw,18px)!important;line-height:1.08!important;letter-spacing:-.035em!important;-webkit-line-clamp:3!important;
}
.tvm-card__description,.tvm-card--teaser .tvm-card__description,.tvm-card--event .tvm-card__description,.tvm-card--patron .tvm-card__description{
    display:block!important;font-size:12.7px!important;line-height:1.36!important;max-height:none!important;min-height:0!important;overflow:visible!important;
    padding:7px 0 7px 12px!important;border-left:3px solid rgba(14,156,210,.22)!important;background:transparent!important;color:rgba(35,39,43,.70)!important;
    word-break:normal!important;overflow-wrap:normal!important;hyphens:none!important;
}
.tvm-card__meta{min-height:38px!important;padding-top:9px!important;margin-top:auto!important;}
.tvm-card__stars{height:28px!important;font-size:11.5px!important;padding:0 8px!important;}
.tvm-card__share-icon{width:31px!important;height:31px!important;min-width:31px!important;flex-basis:31px!important;}
.tvm-card:hover,.tvm-card:focus-within{transform:translateY(-5px)!important;}
.tvm-card:hover .tvm-card__description{color:rgba(35,39,43,.70)!important;border-left-color:rgba(14,156,210,.30)!important;background:transparent!important;}
.tvm-mobile-bottom-top{display:none!important;}
.tvm-footer{background:linear-gradient(180deg,rgba(25,20,17,1),rgba(16,13,11,1))!important;border-top:1px solid rgba(255,255,255,.06);}
.tvm-footer__inner{grid-template-columns:minmax(230px,1fr) auto minmax(260px,.9fr) auto!important;align-items:center!important;gap:20px!important;}
.tvm-footer__copy{display:grid!important;gap:3px!important;}
.tvm-footer__signature{font-style:normal;color:rgba(255,255,255,.58);font-size:12px;font-weight:750;letter-spacing:.02em;}
.tvm-footer__menu{display:flex!important;gap:8px!important;}
.tvm-footer__menu button{border:1px solid rgba(255,255,255,.10)!important;background:rgba(255,255,255,.055)!important;color:rgba(255,255,255,.76)!important;border-radius:999px!important;text-decoration:none!important;}
.tvm-footer__menu button:hover{background:rgba(255,255,255,.10)!important;color:#fff!important;}
@media (max-width:1080px){.tvm-tabs-bar{flex-direction:column;align-items:stretch}.tvm-tabs-row{order:1;justify-content:flex-end}.tvm-category-nav{order:2}.tvm-content-filters,.tvm-event-filters{grid-template-columns:repeat(3,minmax(0,1fr)) auto!important}.tvm-footer__inner{grid-template-columns:1fr!important;justify-items:center!important;text-align:center!important}.tvm-footer__menu{justify-content:center!important}}
@media (max-width:760px){.tvm-tabs-bar{width:min(calc(100% - 28px),430px);gap:10px}.tvm-tabs-row{width:100%;justify-content:space-between}.tvm-tabs-add-event{min-height:40px;padding:0 13px;font-size:13px}.tvm-category-toggle{margin:0!important;width:auto!important;min-width:0;flex:1}.tvm-category-nav{width:100%!important}.tvm-content-filters,.tvm-event-filters{grid-template-columns:1fr!important;width:min(calc(100% - 28px),430px)!important}.tvm-filter-actions{display:grid!important;grid-template-columns:1fr 1fr!important}.tvm-card{max-width:min(100%,340px)!important}.tvm-card__button{min-height:auto!important}.tvm-card__content{max-width:100%!important}.tvm-card__thumb{max-width:220px!important}.tvm-footer-socials__icon{width:38px!important;height:38px!important}.tvm-footer__menu{flex-wrap:wrap}}

/* TVM 1.0.74 — finalny lifting: hover biel/czerwień, filtry mobile, karty bez nachodzenia */
.tvm-hero-actions { display: none !important; }
.tvm-live-action--listen,
.tvm-filter-submit,
.tvm-tabs-add-event {
    background: linear-gradient(135deg, rgba(201,65,50,.96), rgba(226,61,50,.96)) !important;
    color: #fff !important;
    border: 1px solid rgba(201,65,50,.22) !important;
    box-shadow: 0 10px 24px rgba(201,65,50,.13) !important;
}
.tvm-filter-clear,
.tvm-filter-mobile-toggle {
    background: rgba(255,255,255,.78) !important;
    color: rgba(31,24,20,.78) !important;
    border: 1px solid rgba(31,24,20,.08) !important;
    box-shadow: 0 8px 20px rgba(31,24,20,.055) !important;
}
.tvm-filter-clear:hover,
.tvm-filter-mobile-toggle:hover,
.tvm-filter-mobile-toggle.has-active-filters {
    background: rgba(201,65,50,.10) !important;
    color: var(--tvm-accent,#c94132) !important;
    border-color: rgba(201,65,50,.20) !important;
}
.tvm-content-filters,
.tvm-event-filters {
    position: relative !important;
    z-index: 2 !important;
    margin-bottom: 28px !important;
}
.tvm-filter-mobile-toggle {
    display: none;
    width: min(calc(100% - 28px), 430px);
    margin: 16px auto 10px;
    min-height: 42px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 850;
    cursor: pointer;
}
.tvm-card,
.tvm-card--teaser,
.tvm-card--event,
.tvm-card--patron {
    width: min(100%, 274px) !important;
    max-width: 274px !important;
    align-self: stretch !important;
}
.tvm-grid {
    align-items: stretch !important;
    grid-auto-rows: 1fr !important;
    gap: 30px !important;
}
.tvm-card__button {
    height: 100% !important;
    min-height: 330px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    background: rgba(255,255,255,.80) !important;
    color: #1f1814 !important;
    border: 1px solid rgba(31,24,20,.055) !important;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease !important;
}
.tvm-card.is-active .tvm-card__button,
.tvm-card:hover .tvm-card__button,
.tvm-card:focus-within .tvm-card__button {
    background: #fff !important;
    color: #1f1814 !important;
    border-color: rgba(201,65,50,.22) !important;
    box-shadow: 0 24px 44px rgba(31,24,20,.10) !important;
}
.tvm-card:hover,
.tvm-card:focus-within { transform: translateY(-5px) !important; }
.tvm-card.is-active,
.tvm-card.is-active:hover { transform: translateY(-5px) !important; }
.tvm-card__content {
    width: 100% !important;
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
}
.tvm-card__title {
    color: #080604 !important;
    font-size: clamp(15px, 1.05vw, 17px) !important;
    line-height: 1.12 !important;
    letter-spacing: -.025em !important;
    -webkit-line-clamp: 3 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.tvm-card__categories span,
.tvm-card__tag {
    background: rgba(201,65,50,.09) !important;
    color: rgba(201,65,50,.84) !important;
    border-color: rgba(201,65,50,.08) !important;
    text-decoration: none !important;
}
.tvm-card__description {
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    max-height: 4.1em !important;
    color: rgba(31,24,20,.66) !important;
    border-left-color: rgba(201,65,50,.28) !important;
    background: transparent !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
}
.tvm-card:hover .tvm-card__title,
.tvm-card:hover .tvm-card__description,
.tvm-card.is-active .tvm-card__title,
.tvm-card.is-active .tvm-card__description {
    color: inherit !important;
}
.tvm-card:hover .tvm-card__description,
.tvm-card.is-active .tvm-card__description {
    background: transparent !important;
    border-left-color: rgba(201,65,50,.42) !important;
}
.tvm-card__meta {
    width: 100% !important;
    margin-top: auto !important;
    padding-top: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    border-top: 1px solid rgba(31,24,20,.07) !important;
}
.tvm-card__stars {
    max-width: calc(100% - 42px) !important;
    color: #e89222 !important;
    background: rgba(250,241,225,.86) !important;
}
.tvm-card__share-icon {
    background: rgba(201,65,50,.10) !important;
    color: var(--tvm-accent,#c94132) !important;
}
.tvm-card:hover .tvm-card__share-icon,
.tvm-card.is-active .tvm-card__share-icon {
    background: rgba(201,65,50,.16) !important;
    color: var(--tvm-accent,#c94132) !important;
}
.tvm-top10 {
    width: min(100%, 300px) !important;
    padding: 22px 20px !important;
}
.tvm-top10__button {
    min-height: 70px !important;
    padding: 10px 12px !important;
}
.tvm-submit-choice { width: min(100%, 820px); margin: 0 auto; }
.tvm-submit-choice__tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0 0 16px;
}
.tvm-submit-choice__tabs button {
    border: 1px solid rgba(31,24,20,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.75);
    color: rgba(31,24,20,.78);
    padding: 10px 18px;
    font-weight: 850;
    cursor: pointer;
}
.tvm-submit-choice__tabs button.is-active {
    background: var(--tvm-accent,#c94132);
    color: #fff;
    border-color: rgba(201,65,50,.25);
}
.tvm-submit-choice__panel { display: block; }
.tvm-submit-choice__panel[hidden] { display: none !important; }
@media (max-width: 760px) {
    .tvm-filter-mobile-toggle { display: flex !important; }
    .tvm-content-filters,
    .tvm-event-filters {
        display: none !important;
        margin-top: 0 !important;
        padding: 16px !important;
        border-radius: 22px !important;
    }
    .tvm-content-filters.is-open,
    .tvm-event-filters.is-open { display: grid !important; }
    .tvm-filter-actions { grid-template-columns: 1fr !important; }
    .tvm-filter-submit::after { content: ' ustawienia'; }
    .tvm-card,
    .tvm-card--teaser,
    .tvm-card--event,
    .tvm-card--patron { width: min(100%, 348px) !important; max-width: 348px !important; }
    .tvm-card__button { min-height: 320px !important; padding: 22px 22px 18px !important; }
    .tvm-card__title { font-size: 17px !important; }
    .tvm-card__description { -webkit-line-clamp: 3 !important; }
    .tvm-top10 { width: min(100%, 430px) !important; }
}

/* TVM 1.0.75 — dopięcie hoveru, mobile filtrów i czytelnych kart bez niepotrzebnego niebieskiego aktywnego stanu. */
.tvm-video-hub .tvm-card,
.tvm-video-hub .tvm-card.is-active,
.tvm-video-hub .tvm-card:hover,
.tvm-video-hub .tvm-card:focus-within {
    background: transparent !important;
    box-shadow: none !important;
}
.tvm-video-hub .tvm-card .tvm-card__button,
.tvm-video-hub .tvm-card.is-active .tvm-card__button,
.tvm-video-hub .tvm-card:hover .tvm-card__button,
.tvm-video-hub .tvm-card:focus-within .tvm-card__button {
    background: rgba(255,255,255,.86) !important;
    color: #1f1814 !important;
    border: 1px solid rgba(31,24,20,.06) !important;
}
.tvm-video-hub .tvm-card:hover .tvm-card__button,
.tvm-video-hub .tvm-card.is-active .tvm-card__button,
.tvm-video-hub .tvm-card:focus-within .tvm-card__button {
    background: #fff !important;
    box-shadow: 0 24px 44px rgba(31,24,20,.11) !important;
    border-color: rgba(201,65,50,.20) !important;
}
.tvm-video-hub .tvm-card:hover .tvm-card__title,
.tvm-video-hub .tvm-card:hover .tvm-card__description,
.tvm-video-hub .tvm-card.is-active .tvm-card__title,
.tvm-video-hub .tvm-card.is-active .tvm-card__description {
    color: inherit !important;
}
.tvm-video-hub .tvm-card__button {
    min-height: 318px !important;
    padding: 24px 24px 18px !important;
    overflow: hidden !important;
}
.tvm-video-hub .tvm-card__title {
    font-size: clamp(15px, .98vw, 16.5px) !important;
    line-height: 1.13 !important;
    -webkit-line-clamp: 3 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
}
.tvm-video-hub .tvm-card__description {
    font-size: 13px !important;
    line-height: 1.45 !important;
    -webkit-line-clamp: 2 !important;
    max-height: calc(13px * 1.45 * 2 + 24px) !important;
    min-height: 0 !important;
    padding: 10px 12px 10px 15px !important;
    overflow: hidden !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
}
.tvm-video-hub .tvm-card__meta {
    min-height: 40px !important;
    padding-top: 11px !important;
}
.tvm-video-hub .tvm-filter-mobile-toggle {
    background: rgba(255,255,255,.78) !important;
    color: rgba(31,24,20,.86) !important;
    border: 1px solid rgba(31,24,20,.08) !important;
    box-shadow: 0 12px 28px rgba(31,24,20,.06) !important;
}
.tvm-video-hub .tvm-filter-mobile-toggle.has-active-filters {
    background: rgba(201,65,50,.10) !important;
    color: var(--tvm-accent,#c94132) !important;
    border-color: rgba(201,65,50,.20) !important;
}
.tvm-video-hub .tvm-filter-submit,
.tvm-video-hub .tvm-filter-clear {
    text-decoration: none !important;
    border: 1px solid rgba(31,24,20,.08) !important;
}
.tvm-video-hub .tvm-filter-submit {
    background: rgba(7,126,104,.88) !important;
    color: #fff !important;
}
.tvm-video-hub .tvm-filter-clear {
    background: rgba(255,255,255,.76) !important;
    color: rgba(31,24,20,.74) !important;
}
@media (max-width: 760px) {
    .tvm-video-hub .tvm-filter-mobile-toggle {
        display: flex !important;
    }
    .tvm-video-hub .tvm-content-filters,
    .tvm-video-hub .tvm-event-filters {
        display: none !important;
        width: min(calc(100% - 28px), 430px) !important;
        margin: 0 auto 22px !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 16px !important;
        border-radius: 22px !important;
        background: rgba(255,255,255,.80) !important;
        box-shadow: 0 18px 36px rgba(31,24,20,.08) !important;
    }
    .tvm-video-hub .tvm-content-filters.is-open,
    .tvm-video-hub .tvm-event-filters.is-open {
        display: grid !important;
    }
    .tvm-video-hub .tvm-filter-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        width: 100% !important;
    }
    .tvm-video-hub .tvm-filter-submit::after { content: '' !important; }
    .tvm-video-hub .tvm-filter-submit,
    .tvm-video-hub .tvm-filter-clear {
        width: 100% !important;
        min-height: 42px !important;
        padding-inline: 12px !important;
    }
    .tvm-video-hub .tvm-card,
    .tvm-video-hub .tvm-card--teaser,
    .tvm-video-hub .tvm-card--event,
    .tvm-video-hub .tvm-card--patron {
        max-width: min(100%, 350px) !important;
    }
    .tvm-video-hub .tvm-card__button {
        min-height: 306px !important;
    }
}

/* TVM 1.0.76 — final hover na biel, mobilny hamburger filtrów w linii zakładek, krótkie opisy bez cięcia słów. */
.tvm-video-hub .tvm-card,
.tvm-video-hub .tvm-card:hover,
.tvm-video-hub .tvm-card:focus-within,
.tvm-video-hub .tvm-card.is-active {
    background: transparent !important;
    box-shadow: none !important;
}
.tvm-video-hub .tvm-card .tvm-card__button {
    background: rgba(255,255,255,.88) !important;
    color: #1f1814 !important;
    border: 1px solid rgba(31,24,20,.06) !important;
}
.tvm-video-hub .tvm-card:hover .tvm-card__button,
.tvm-video-hub .tvm-card:focus-within .tvm-card__button,
.tvm-video-hub .tvm-card.is-active .tvm-card__button {
    background: #fff !important;
    color: #1f1814 !important;
    border-color: rgba(201,65,50,.18) !important;
    box-shadow: 0 22px 42px rgba(31,24,20,.11) !important;
}
.tvm-video-hub .tvm-card:hover .tvm-card__title,
.tvm-video-hub .tvm-card:hover .tvm-card__description,
.tvm-video-hub .tvm-card:focus-within .tvm-card__title,
.tvm-video-hub .tvm-card:focus-within .tvm-card__description,
.tvm-video-hub .tvm-card.is-active .tvm-card__title,
.tvm-video-hub .tvm-card.is-active .tvm-card__description {
    color: #1f1814 !important;
}
.tvm-video-hub .tvm-card__title {
    font-size: clamp(15px,.92vw,16px) !important;
    line-height: 1.14 !important;
    min-height: 3.35em !important;
    max-height: 3.35em !important;
}
.tvm-video-hub .tvm-card__description {
    display: block !important;
    font-size: 13px !important;
    line-height: 1.42 !important;
    min-height: 2.85em !important;
    max-height: 2.85em !important;
    overflow: hidden !important;
    text-overflow: clip !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: initial !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
}
.tvm-video-hub .tvm-card__description::after { content: none !important; }
.tvm-video-hub .tvm-card__meta {
    flex-shrink: 0 !important;
    position: relative !important;
    z-index: 2 !important;
}
.tvm-video-hub .tvm-card__stars {
    overflow: hidden !important;
    white-space: nowrap !important;
}
.tvm-video-hub .tvm-card:hover .tvm-card__categories span,
.tvm-video-hub .tvm-card.is-active .tvm-card__categories span,
.tvm-video-hub .tvm-card:hover .tvm-card__tag,
.tvm-video-hub .tvm-card.is-active .tvm-card__tag {
    background: rgba(201,65,50,.09) !important;
    color: rgba(201,65,50,.84) !important;
    border-color: rgba(201,65,50,.10) !important;
}
.tvm-video-hub .tvm-tabs-row {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}
.tvm-video-hub .tvm-filter-mobile-toggle {
    display: none !important;
    margin: 0 !important;
    width: auto !important;
    min-height: 42px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
}
@media (max-width:760px) {
    .tvm-video-hub .tvm-tabs-row {
        width: min(calc(100% - 28px),430px) !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    .tvm-video-hub .tvm-category-toggle,
    .tvm-video-hub .tvm-filter-mobile-toggle {
        display: flex !important;
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        justify-content: center !important;
        min-height: 42px !important;
        font-size: 13px !important;
    }
    .tvm-video-hub .tvm-tabs-add-event {
        grid-column: 1 / -1 !important;
        justify-self: stretch !important;
        justify-content: center !important;
        width: 100% !important;
    }
    .tvm-video-hub .tvm-content-filters,
    .tvm-video-hub .tvm-event-filters {
        width: min(calc(100% - 28px),430px) !important;
        margin: 10px auto 22px !important;
        padding: 16px !important;
        border-radius: 22px !important;
        background: rgba(255,255,255,.86) !important;
        border: 1px solid rgba(31,24,20,.07) !important;
        box-shadow: 0 18px 36px rgba(31,24,20,.08) !important;
    }
    .tvm-video-hub .tvm-content-filters:not(.is-open),
    .tvm-video-hub .tvm-event-filters:not(.is-open) {
        display: none !important;
    }
    .tvm-video-hub .tvm-content-filters.is-open,
    .tvm-video-hub .tvm-event-filters.is-open {
        display: grid !important;
    }
    .tvm-video-hub .tvm-filter-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    .tvm-video-hub .tvm-card__title {
        font-size: 16px !important;
        min-height: auto !important;
        max-height: 3.45em !important;
    }
    .tvm-video-hub .tvm-card__description {
        min-height: 2.8em !important;
        max-height: 2.8em !important;
    }
}

/* TVM 1.0.77 — opis kart z większym oddechem + hover biały z delikatnym morskim overlayem. */
.tvm-video-hub .tvm-card {
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease !important;
}
.tvm-video-hub .tvm-card__content {
    gap: 14px !important;
}
.tvm-video-hub .tvm-card__description {
    padding: 8px 12px 9px 14px !important;
    min-height: 3.55em !important;
    max-height: 4.45em !important;
    line-height: 1.46 !important;
    background: rgba(255,255,255,.42) !important;
    border-radius: 0 12px 12px 0 !important;
    overflow: hidden !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
}
.tvm-video-hub .tvm-card:hover,
.tvm-video-hub .tvm-card:focus-within,
.tvm-video-hub .tvm-card.is-active {
    background: linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 58%, rgba(0,150,180,.14) 100%) !important;
    color: #1f1814 !important;
    border-color: rgba(0,150,180,.18) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 24px 48px rgba(0,118,150,.16), 0 10px 26px rgba(31,24,20,.08) !important;
}
.tvm-video-hub .tvm-card:hover .tvm-card__title,
.tvm-video-hub .tvm-card:hover .tvm-card__description,
.tvm-video-hub .tvm-card:focus-within .tvm-card__title,
.tvm-video-hub .tvm-card:focus-within .tvm-card__description,
.tvm-video-hub .tvm-card.is-active .tvm-card__title,
.tvm-video-hub .tvm-card.is-active .tvm-card__description {
    color: #1f1814 !important;
}
.tvm-video-hub .tvm-card:hover .tvm-card__description,
.tvm-video-hub .tvm-card:focus-within .tvm-card__description,
.tvm-video-hub .tvm-card.is-active .tvm-card__description {
    background: rgba(0,150,180,.09) !important;
    border-left-color: rgba(0,150,180,.36) !important;
}
@media (max-width:760px) {
    .tvm-video-hub .tvm-card__content { gap: 12px !important; }
    .tvm-video-hub .tvm-card__description {
        padding: 7px 11px 8px 13px !important;
        min-height: 3.25em !important;
        max-height: 4.25em !important;
    }
}

/* TVM 1.0.79 — porządkująca warstwa końcowa: karty, CTA, gwiazdki, czytelność. */
.tvm-video-hub .tvm-hero {
    position: relative;
    z-index: 1;
    overflow: visible;
}
.tvm-video-hub .tvm-hero__top {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.tvm-video-hub .tvm-hero-actions {
    justify-content: center !important;
    padding-inline: 24px !important;
}
.tvm-video-hub .tvm-hero-action,
.tvm-video-hub .tvm-live-action,
.tvm-video-hub .tvm-tabs-add-event {
    background: linear-gradient(135deg, #0f7c95, #07576f) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    box-shadow: 0 16px 34px rgba(7, 87, 111, .22) !important;
    text-decoration: none !important;
}
.tvm-video-hub .tvm-hero-action:hover,
.tvm-video-hub .tvm-live-action:hover,
.tvm-video-hub .tvm-tabs-add-event:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 42px rgba(7, 87, 111, .28) !important;
}
.tvm-video-hub .tvm-card {
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(244,249,251,.86)) !important;
    border: 1px solid rgba(7, 87, 111, .13) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 18px 42px rgba(20, 32, 45, .10) !important;
}
.tvm-video-hub .tvm-card:hover,
.tvm-video-hub .tvm-card:focus-within {
    border-color: rgba(7, 124, 149, .25) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 24px 54px rgba(20, 32, 45, .15) !important;
}
.tvm-video-hub .tvm-card__button {
    background: transparent !important;
}
.tvm-video-hub .tvm-card__title {
    color: #162631 !important;
    text-shadow: 0 1px 0 rgba(255,255,255,.55);
}
.tvm-video-hub .tvm-card__description {
    color: rgba(22, 38, 49, .78) !important;
    background: rgba(255,255,255,.56) !important;
    border-left-color: rgba(7, 124, 149, .34) !important;
}
.tvm-video-hub .tvm-card__stars {
    display: inline-flex !important;
    align-items: center !important;
    gap: 3px !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    min-height: 32px !important;
    padding: 6px 10px !important;
    color: #a86800 !important;
    background: rgba(255, 246, 219, .86) !important;
    border: 1px solid rgba(168, 104, 0, .20) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72) !important;
}
.tvm-video-hub .tvm-card__stars .is-full { color: #d58a00 !important; }
.tvm-video-hub .tvm-card__stars .is-empty { color: rgba(168,104,0,.25) !important; }
.tvm-video-hub .tvm-card__rating-number {
    margin-left: 6px !important;
    color: #5c3a00 !important;
    font-weight: 900 !important;
}
.tvm-video-hub .tvm-card__votes,
.tvm-video-hub .tvm-mobile-shell__rating small {
    display: none !important;
}

/* v1.0.82 — czytelniejsze karty, delikatny niebieski hover i szybka nawigacja video. */
.tvm-video-hub .tvm-card {
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(238,248,253,.94)) !important;
    border: 1px solid rgba(11,94,132,.12) !important;
    box-shadow: 0 14px 34px rgba(5,42,62,.10), inset 0 1px 0 rgba(255,255,255,.92) !important;
    color: #102736 !important;
    transform: translateZ(0);
}
.tvm-video-hub .tvm-card__button { color: inherit !important; }
.tvm-video-hub .tvm-card__thumb {
    box-shadow: 0 10px 24px rgba(4,43,63,.14) !important;
    border: 1px solid rgba(255,255,255,.74) !important;
}
.tvm-video-hub .tvm-card__title { color: #102736 !important; }
.tvm-video-hub .tvm-card__description { color: rgba(16,39,54,.78) !important; }
.tvm-video-hub .tvm-card__categories span {
    background: rgba(7,105,149,.09) !important;
    color: rgba(16,39,54,.76) !important;
}
.tvm-video-hub .tvm-card:hover,
.tvm-video-hub .tvm-card:focus-within {
    background: linear-gradient(145deg, #0c79ad, #075b87) !important;
    color: #fff !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 44px rgba(7,91,135,.26), inset 0 1px 0 rgba(255,255,255,.22) !important;
    border-color: rgba(255,255,255,.18) !important;
}
.tvm-video-hub .tvm-card:hover .tvm-card__title,
.tvm-video-hub .tvm-card:hover .tvm-card__description,
.tvm-video-hub .tvm-card:hover .tvm-card__categories,
.tvm-video-hub .tvm-card:focus-within .tvm-card__title,
.tvm-video-hub .tvm-card:focus-within .tvm-card__description,
.tvm-video-hub .tvm-card:focus-within .tvm-card__categories { color: #fff !important; }
.tvm-video-hub .tvm-card:hover .tvm-card__categories span,
.tvm-video-hub .tvm-card:focus-within .tvm-card__categories span {
    background: rgba(255,255,255,.16) !important;
    color: rgba(255,255,255,.92) !important;
}
.tvm-video-hub .tvm-card:hover .tvm-card__meta,
.tvm-video-hub .tvm-card:focus-within .tvm-card__meta { border-color: rgba(255,255,255,.22) !important; }
.tvm-video-hub .tvm-card:hover .tvm-card__stars,
.tvm-video-hub .tvm-card:focus-within .tvm-card__stars {
    background: rgba(255,255,255,.18) !important;
    color: #fff !important;
}
.tvm-video-hub .tvm-card:hover .tvm-card__share-icon,
.tvm-video-hub .tvm-card:focus-within .tvm-card__share-icon {
    background: rgba(255,255,255,.18) !important;
    color: #fff !important;
}
.tvm-modal__dialog { position: relative; }
.tvm-modal__nav {
    position: absolute;
    top: min(34vw, 260px);
    z-index: 9;
    width: 48px;
    height: 72px;
    border: 0;
    border-radius: 18px;
    background: rgba(7,91,135,.72);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(0,0,0,.22);
    backdrop-filter: blur(8px);
    transition: background .18s ease, transform .18s ease, opacity .18s ease;
}
.tvm-modal__nav span { font-size: 48px; line-height: 1; transform: translateY(-2px); }
.tvm-modal__nav--prev { left: 16px; }
.tvm-modal__nav--next { right: 16px; }
.tvm-modal__nav:hover,
.tvm-modal__nav:focus-visible {
    background: rgba(10,126,180,.90);
    transform: translateY(-1px);
    outline: none;
}
.tvm-video-suggestions {
    position: absolute;
    inset: auto 18px 18px 18px;
    z-index: 10;
    padding: 14px;
    border-radius: 22px;
    background: rgba(3,35,55,.86);
    color: #fff;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 42px rgba(0,0,0,.28);
}
.tvm-video-suggestions[hidden] { display: none !important; }
.tvm-video-suggestions__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}
.tvm-video-suggestions__head strong { font-size: 15px; letter-spacing: .01em; }
.tvm-video-suggestions__head button {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: #fff;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}
.tvm-video-suggestions__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.tvm-video-suggestions__item {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 10px;
    align-items: center;
    min-width: 0;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: rgba(255,255,255,.10);
    color: #fff;
    text-align: left;
    cursor: pointer;
}
.tvm-video-suggestions__item:hover,
.tvm-video-suggestions__item:focus-visible { background: rgba(255,255,255,.18); outline: none; }
.tvm-video-suggestions__thumb {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(0,0,0,.26);
}
.tvm-video-suggestions__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tvm-video-suggestions__title { font-size: 13px; font-weight: 800; line-height: 1.22; }
@media (max-width: 760px) {
    .tvm-modal__nav {
        top: 33vw;
        width: 40px;
        height: 58px;
        border-radius: 15px;
    }
    .tvm-modal__nav span { font-size: 40px; }
    .tvm-modal__nav--prev { left: 8px; }
    .tvm-modal__nav--next { right: 8px; }
    .tvm-video-suggestions {
        inset: auto 10px 10px 10px;
        padding: 10px;
        border-radius: 18px;
    }
    .tvm-video-suggestions__grid { grid-template-columns: 1fr; }
    .tvm-video-suggestions__item { grid-template-columns: 86px 1fr; }
}


/* v1.0.83 — naprawa czytelności hover: bez białego tekstu na jasnym tle, mocny aktywny stan karty. */
.tvm-video-hub .tvm-card:hover,
.tvm-video-hub .tvm-card:focus-within,
.tvm-video-hub .tvm-card.is-active {
    background: linear-gradient(180deg, #ffffff 0%, #eefaff 100%) !important;
    color: #102736 !important;
    border-color: rgba(0,120,170,.55) !important;
    transform: translateY(-6px) scale(1.012) !important;
    box-shadow: 0 0 0 2px rgba(0,135,190,.18), 0 28px 62px rgba(5,42,62,.24), inset 0 1px 0 rgba(255,255,255,.96) !important;
}
.tvm-video-hub .tvm-card:hover .tvm-card__title,
.tvm-video-hub .tvm-card:hover .tvm-card__description,
.tvm-video-hub .tvm-card:focus-within .tvm-card__title,
.tvm-video-hub .tvm-card:focus-within .tvm-card__description,
.tvm-video-hub .tvm-card.is-active .tvm-card__title,
.tvm-video-hub .tvm-card.is-active .tvm-card__description {
    color: #102736 !important;
    text-shadow: none !important;
}
.tvm-video-hub .tvm-card:hover .tvm-card__description,
.tvm-video-hub .tvm-card:focus-within .tvm-card__description,
.tvm-video-hub .tvm-card.is-active .tvm-card__description {
    background: rgba(220,244,252,.88) !important;
    border-left-color: rgba(0,121,173,.68) !important;
}
.tvm-video-hub .tvm-card:hover .tvm-card__categories span,
.tvm-video-hub .tvm-card:focus-within .tvm-card__categories span,
.tvm-video-hub .tvm-card.is-active .tvm-card__categories span {
    background: rgba(0,121,173,.12) !important;
    color: rgba(16,39,54,.78) !important;
}
.tvm-video-hub .tvm-card:hover .tvm-card__stars,
.tvm-video-hub .tvm-card:focus-within .tvm-card__stars,
.tvm-video-hub .tvm-card.is-active .tvm-card__stars {
    background: rgba(255,246,219,.96) !important;
    color: #a86800 !important;
    border-color: rgba(168,104,0,.22) !important;
}
.tvm-video-hub .tvm-card:hover .tvm-card__share-icon,
.tvm-video-hub .tvm-card:focus-within .tvm-card__share-icon,
.tvm-video-hub .tvm-card.is-active .tvm-card__share-icon {
    background: rgba(211,47,47,.10) !important;
    color: #d32f2f !important;
}

/* v1.0.90 — posterowy visual hub: morsko-niebieskie tło, karty eventów jak reklama, czyste mobile. */
.tvm-video-hub {
    font-family: Inter, "Noto Sans", "Open Sans", Roboto, Arial, sans-serif !important;
    background:
        radial-gradient(circle at 18% 5%, rgba(19, 149, 186, .26), transparent 34%),
        radial-gradient(circle at 82% 14%, rgba(17, 111, 145, .23), transparent 32%),
        linear-gradient(135deg, #061826 0%, #082235 46%, #05131f 100%) !important;
    color: rgba(255,255,255,.92) !important;
}
.tvm-video-hub .tvm-hero,
.tvm-video-hub .tvm-tabs-bar,
.tvm-video-hub .tvm-layout,
.tvm-video-hub .tvm-footer {
    position: relative;
    z-index: 1;
}
.tvm-video-hub .tvm-hero {
    background:
        linear-gradient(180deg, rgba(7, 62, 92, .72), rgba(5, 22, 35, .28)),
        radial-gradient(circle at 50% 15%, rgba(25, 168, 202, .22), transparent 46%) !important;
    border-bottom: 1px solid rgba(137, 218, 235, .16) !important;
}
.tvm-video-hub .tvm-tabs-bar,
.tvm-video-hub .tvm-content-filters,
.tvm-video-hub .tvm-event-filters {
    background: rgba(5, 23, 36, .72) !important;
    border: 1px solid rgba(137, 218, 235, .13) !important;
    box-shadow: 0 18px 46px rgba(0,0,0,.24) !important;
    backdrop-filter: blur(14px);
}
.tvm-video-hub .tvm-card,
.tvm-video-hub .tvm-top10,
.tvm-video-hub .tvm-mobile-bottom-top,
.tvm-video-hub .tvm-footer__inner {
    background: linear-gradient(145deg, rgba(10, 34, 52, .82), rgba(4, 17, 29, .88)) !important;
    border: 1px solid rgba(137, 218, 235, .14) !important;
    color: rgba(255,255,255,.90) !important;
    box-shadow: 0 22px 55px rgba(0,0,0,.26) !important;
}
.tvm-video-hub .tvm-card__title,
.tvm-video-hub .tvm-card__description,
.tvm-video-hub .tvm-top10,
.tvm-video-hub .tvm-top10 a,
.tvm-video-hub .tvm-footer,
.tvm-video-hub .tvm-footer a { color: rgba(255,255,255,.92) !important; }
.tvm-video-hub .tvm-card__description { border-left-color: rgba(35, 172, 206, .34) !important; }
.tvm-video-hub .tvm-category-nav a,
.tvm-video-hub .tvm-tabs-add-event,
.tvm-video-hub .tvm-filter-submit,
.tvm-video-hub .tvm-filter-clear {
    border-color: rgba(137, 218, 235, .18) !important;
}
.tvm-video-hub .tvm-category-nav a.is-active,
.tvm-video-hub .tvm-filter-submit,
.tvm-video-hub .tvm-tabs-add-event {
    background: linear-gradient(135deg, #0891bd, #0a5f86) !important;
    color: #fff !important;
}

.tvm-modal__dialog { position: relative; }
.tvm-modal__nav {
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 58px !important;
    height: 86px !important;
    border-radius: 999px !important;
    background: rgba(5, 31, 49, .78) !important;
    border: 1px solid rgba(137, 218, 235, .25) !important;
    box-shadow: 0 18px 46px rgba(0,0,0,.34) !important;
}
.tvm-modal__nav:hover,
.tvm-modal__nav:focus-visible { transform: translateY(-50%) scale(1.04) !important; background: rgba(8, 128, 177, .92) !important; }
.tvm-modal__nav--prev { left: max(14px, 1.4vw) !important; }
.tvm-modal__nav--next { right: max(14px, 1.4vw) !important; }
.tvm-modal.is-info-collapsed .tvm-modal__nav { top: 54% !important; }

@media (max-width: 920px) {
}
@media (max-width: 760px) {
    .tvm-video-hub .tvm-layout,
    .tvm-video-hub .tvm-hero__top,
    .tvm-video-hub .tvm-category-nav,
    .tvm-video-hub .tvm-footer__inner { width: min(calc(100% - 24px), 430px) !important; }
    .tvm-video-hub .tvm-card { max-width: 100% !important; border-radius: 24px !important; }
    .tvm-modal__nav { width: 44px !important; height: 64px !important; top: 42% !important; }
    .tvm-modal__nav--prev { left: 8px !important; }
    .tvm-modal__nav--next { right: 8px !important; }
}

/* v1.0.91 — dopieszczony poster UI, czytelne karty, spójny footer, mobile-first. */
.tvm-video-hub {
    color: rgba(255,255,255,.92) !important;
    background:
        radial-gradient(circle at 92% 30%, rgba(0, 166, 214, .22), transparent 31%),
        radial-gradient(circle at 8% 42%, rgba(8, 122, 147, .18), transparent 28%),
        linear-gradient(180deg, #03131f 0%, #052335 44%, #041622 100%) !important;
    font-family: Inter, Roboto, "Open Sans", "Noto Sans", Arial, sans-serif !important;
}
.tvm-video-hub * { box-sizing: border-box; }
.tvm-video-hub .tvm-hero {
    background:
        radial-gradient(circle at 50% 12%, rgba(0,166,214,.18), transparent 26%),
        linear-gradient(180deg, rgba(3,40,58,.98), rgba(4,24,36,.96)) !important;
    border-bottom: 1px solid rgba(120, 220, 240, .16) !important;
}
.tvm-video-hub .tvm-eyebrow { color: #78e8ff !important; font-weight: 900 !important; }
.tvm-video-hub .tvm-hero h2,
.tvm-video-hub .tvm-hero p,
.tvm-video-hub .tvm-intro { color: rgba(255,255,255,.96) !important; text-shadow: 0 8px 28px rgba(0,0,0,.32); }
.tvm-video-hub .tvm-category-nav {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px !important;
    border: 1px solid rgba(120,220,240,.18) !important;
    border-radius: 18px !important;
    background: rgba(1,18,30,.72) !important;
    box-shadow: 0 20px 54px rgba(0,0,0,.28) !important;
    backdrop-filter: blur(12px);
    overflow-x: auto !important;
}
.tvm-video-hub .tvm-category-nav a,
.tvm-video-hub .tvm-category-nav button,
.tvm-video-hub .tvm-tabs-add-event {
    border-radius: 14px !important;
    background: rgba(255,255,255,.07) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    color: #f7fbff !important;
    font-weight: 900 !important;
    letter-spacing: -.01em !important;
    min-height: 42px !important;
    padding: 10px 18px !important;
    box-shadow: none !important;
}
.tvm-video-hub .tvm-category-nav a[aria-current="page"],
.tvm-video-hub .tvm-category-nav .is-active,
.tvm-video-hub .tvm-category-nav button.is-active {
    background: linear-gradient(135deg, #008ec0, #00b7d4) !important;
    color: #fff !important;
    border-color: rgba(120,232,255,.38) !important;
    box-shadow: 0 12px 30px rgba(0,166,214,.24) !important;
}
.tvm-video-hub .tvm-filters {
    border-radius: 22px !important;
    background: rgba(1,18,30,.70) !important;
    border: 1px solid rgba(120,220,240,.14) !important;
    box-shadow: 0 18px 46px rgba(0,0,0,.26) !important;
}
.tvm-video-hub .tvm-filters label { color: rgba(255,255,255,.78) !important; font-weight: 800 !important; }
.tvm-video-hub .tvm-filters select,
.tvm-video-hub .tvm-filters input {
    background: rgba(255,255,255,.94) !important;
    color: #061826 !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255,255,255,.36) !important;
    font-weight: 800 !important;
}
.tvm-video-hub .tvm-grid { gap: 18px !important; }
.tvm-video-hub .tvm-card {
    overflow: hidden !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, rgba(8,33,49,.96), rgba(3,18,30,.98)) !important;
    border: 1px solid rgba(120,220,240,.18) !important;
    box-shadow: 0 22px 48px rgba(0,0,0,.32) !important;
    color: #fff !important;
    transform: translateZ(0);
}
.tvm-video-hub .tvm-card:hover {
    border-color: rgba(120,232,255,.34) !important;
    box-shadow: 0 26px 64px rgba(0,0,0,.44), 0 0 0 1px rgba(0,166,214,.12) inset !important;
    transform: translateY(-2px);
}
.tvm-video-hub .tvm-card__button {
    display: grid !important;
    min-height: 100% !important;
    background: transparent !important;
    color: inherit !important;
    text-align: left !important;
}
.tvm-video-hub .tvm-card__thumb {
    display: block !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    overflow: hidden !important;
    background: #061826 !important;
    border-radius: 0 !important;
    margin: 0 !important;
}
.tvm-video-hub .tvm-card__thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    filter: saturate(1.05) contrast(1.03) !important;
}
.tvm-video-hub .tvm-card__content {
    display: grid !important;
    gap: 11px !important;
    padding: 16px 16px 14px !important;
    align-content: start !important;
    color: #fff !important;
    text-align: left !important;
}
.tvm-video-hub .tvm-card__title {
    min-height: 2.7em !important;
    color: #fff !important;
    font-size: clamp(17px, 1.2vw, 21px) !important;
    line-height: 1.22 !important;
    font-weight: 950 !important;
    letter-spacing: -.025em !important;
    text-shadow: 0 6px 20px rgba(0,0,0,.35) !important;
}
.tvm-video-hub .tvm-card__description {
    min-height: 3.2em !important;
    color: rgba(235,247,255,.86) !important;
    font-size: 14px !important;
    line-height: 1.48 !important;
    font-weight: 600 !important;
}
.tvm-video-hub .tvm-card__categories { display: flex !important; flex-wrap: wrap !important; gap: 7px !important; order: -1 !important; }
.tvm-video-hub .tvm-card__categories span,
.tvm-video-hub .tvm-card__tag {
    display: inline-flex !important;
    align-items: center !important;
    border-radius: 999px !important;
    padding: 4px 9px !important;
    background: rgba(0,166,214,.16) !important;
    border: 1px solid rgba(120,232,255,.24) !important;
    color: #d7f7ff !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}
.tvm-video-hub .tvm-card__meta {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    margin-top: 4px !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255,255,255,.08) !important;
}
.tvm-video-hub .tvm-card__stars { color: #ffb13c !important; font-weight: 900 !important; }
.tvm-video-hub .tvm-card__rating-number { color: #fff !important; font-weight: 900 !important; margin-left: 6px !important; }
.tvm-video-hub .tvm-card__share-icon {
    width: 36px !important; height: 36px !important; border-radius: 50% !important;
    background: rgba(255,255,255,.08) !important; border: 1px solid rgba(120,232,255,.16) !important;
    color: #78e8ff !important; font-weight: 900 !important;
}
.tvm-video-hub .tvm-top10 {
    background: rgba(1,18,30,.66) !important;
    border: 1px solid rgba(120,220,240,.16) !important;
    border-radius: 20px !important;
    box-shadow: 0 22px 48px rgba(0,0,0,.30) !important;
}
.tvm-video-hub .tvm-top10 h3 { color: #f8fdff !important; font-weight: 950 !important; text-align: center !important; }
.tvm-video-hub .tvm-top10__button {
    background: rgba(255,255,255,.08) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    color: #f8fdff !important;
    border-radius: 14px !important;
}
.tvm-video-hub .tvm-top10__button strong { color: #fff !important; font-weight: 900 !important; line-height: 1.2 !important; }
.tvm-video-hub .tvm-top10__button img { border-radius: 10px !important; }
.tvm-video-hub .tvm-footer {
    background: linear-gradient(180deg, rgba(3,19,31,.96), rgba(2,11,18,.98)) !important;
    border-top: 1px solid rgba(120,220,240,.14) !important;
    color: rgba(255,255,255,.82) !important;
}
.tvm-video-hub .tvm-footer__inner {
    border: 1px solid rgba(120,220,240,.14) !important;
    border-radius: 18px !important;
    background: rgba(1,18,30,.58) !important;
    padding: 18px 22px !important;
}
.tvm-video-hub .tvm-footer__copy strong { color: #fff !important; }
.tvm-video-hub .tvm-footer a,
.tvm-video-hub .tvm-footer button { color: #eafaff !important; }
.tvm-video-hub .tvm-footer__menu button {
    background: rgba(255,255,255,.08) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    color: #fff !important;
}
.tvm-video-hub .tvm-modal__dialog,
.tvm-video-hub .tvm-static-modal__glass {
    background: rgba(3,18,30,.90) !important;
    border: 1px solid rgba(120,220,240,.18) !important;
    box-shadow: 0 34px 90px rgba(0,0,0,.56) !important;
}
.tvm-video-hub .tvm-video-detail__info,
.tvm-video-hub .tvm-video-detail__body {
    color: rgba(255,255,255,.92) !important;
}
.tvm-video-hub .tvm-video-detail__title,
.tvm-video-hub [data-video-title] { color: #fff !important; font-weight: 950 !important; }
@media (min-width: 1000px) {
    .tvm-video-hub .tvm-layout { grid-template-columns: minmax(0, 1fr) 270px !important; gap: 22px !important; }
    .tvm-video-hub .tvm-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}
@media (max-width: 999px) {
    .tvm-video-hub .tvm-layout { display: grid !important; grid-template-columns: 1fr !important; }
    .tvm-video-hub .tvm-sidebar { position: static !important; display: grid !important; grid-template-columns: 1fr !important; gap: 16px !important; }
    .tvm-video-hub .tvm-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 700px) {
    .tvm-video-hub .tvm-hero__top { grid-template-columns: 1fr !important; text-align: center !important; gap: 18px !important; }
    .tvm-video-hub .tvm-hero__brand-col,
    .tvm-video-hub .tvm-hero__logo-col,
    .tvm-video-hub .tvm-hero__live-col { justify-content: center !important; }
    .tvm-video-hub .tvm-hero__brand-copy { text-align: center !important; }
    .tvm-video-hub .tvm-grid { grid-template-columns: 1fr !important; }
    .tvm-video-hub .tvm-card__content { text-align: left !important; padding: 15px !important; }
    .tvm-video-hub .tvm-card__title { min-height: auto !important; font-size: 18px !important; }
    .tvm-video-hub .tvm-card__description { min-height: auto !important; }
    .tvm-video-hub .tvm-category-nav { border-radius: 16px !important; padding: 8px !important; }
    .tvm-video-hub .tvm-category-nav a,
    .tvm-video-hub .tvm-category-nav button { flex: 0 0 auto !important; min-height: 40px !important; padding: 9px 14px !important; }
}

/* v1.0.92 — finalny front: full-width header/tabs/footer, ciemne karty bez plastikowego hover, czytelne modale. */
.tvm-video-hub {
    --tvm-deep: #03131f;
    --tvm-ink: #061826;
    --tvm-card-bg: rgba(5, 24, 38, .86);
    --tvm-card-bg-2: rgba(7, 35, 53, .92);
    --tvm-line: rgba(137, 218, 235, .16);
    --tvm-soft-line: rgba(255,255,255,.08);
    --tvm-text: rgba(246, 252, 255, .96);
    --tvm-muted: rgba(218, 238, 247, .76);
    min-height: 100vh;
    overflow-x: clip;
}
.tvm-video-hub .tvm-hero {
    width: 100% !important;
    margin: 0 0 0 !important;
    padding: 30px 0 22px !important;
    background:
        radial-gradient(circle at 82% 18%, rgba(0, 166, 214, .24), transparent 30%),
        radial-gradient(circle at 14% 2%, rgba(3, 112, 145, .32), transparent 36%),
        linear-gradient(180deg, #07384e 0%, #05283a 46%, #041a29 100%) !important;
    border-bottom: 1px solid var(--tvm-line) !important;
}
.tvm-video-hub .tvm-hero__top {
    width: min(var(--tvm-shell-max), calc(100% - 64px)) !important;
    margin-inline: auto !important;
}
.tvm-video-hub .tvm-hero h2,
.tvm-video-hub .tvm-hero p,
.tvm-video-hub .tvm-intro,
.tvm-video-hub .tvm-eyebrow { color: var(--tvm-text) !important; }
.tvm-video-hub .tvm-eyebrow { opacity: .82 !important; color: #8defff !important; }
.tvm-video-hub .tvm-live-box,
.tvm-video-hub .tvm-live-box.is-offline,
.tvm-video-hub .tvm-live-box.is-live {
    background: rgba(5, 24, 38, .72) !important;
    border: 1px solid rgba(137,218,235,.22) !important;
    color: var(--tvm-text) !important;
    box-shadow: 0 20px 54px rgba(0,0,0,.25) !important;
}
.tvm-video-hub .tvm-live-box__status {
    background: rgba(0,166,214,.12) !important;
    color: #94f2ff !important;
    border: 1px solid rgba(137,218,235,.18) !important;
}
.tvm-video-hub .tvm-tabs-bar,
.tvm-video-hub .tvm-category-nav {
    width: 100% !important;
    max-width: none !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 11px max(18px, calc((100vw - var(--tvm-shell-max)) / 2)) !important;
    background: rgba(3, 19, 31, .88) !important;
    border-top: 1px solid rgba(137,218,235,.13) !important;
    border-bottom: 1px solid rgba(137,218,235,.15) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,.26) !important;
    backdrop-filter: blur(14px);
}
.tvm-video-hub .tvm-category-nav a,
.tvm-video-hub .tvm-tabs-add-event,
.tvm-video-hub .tvm-category-toggle {
    min-height: 40px !important;
    border-radius: 14px !important;
    background: rgba(255,255,255,.065) !important;
    color: var(--tvm-text) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    box-shadow: none !important;
}
.tvm-video-hub .tvm-category-nav a:hover,
.tvm-video-hub .tvm-tabs-add-event:hover {
    transform: translateY(-1px) !important;
    background: rgba(255,255,255,.10) !important;
}
.tvm-video-hub .tvm-category-nav a.is-active,
.tvm-video-hub .tvm-category-nav a[aria-current="page"] {
    background: linear-gradient(135deg, #0797c3, #0a6c97) !important;
    color: #fff !important;
    border-color: rgba(141,239,255,.36) !important;
}
.tvm-video-hub .tvm-layout,
.tvm-video-hub .tvm-content-filters,
.tvm-video-hub .tvm-event-filters {
    width: min(var(--tvm-shell-max), calc(100% - 64px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.tvm-video-hub .tvm-content-filters,
.tvm-video-hub .tvm-event-filters {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
    padding: 18px 20px !important;
    border-radius: 22px !important;
    background: rgba(3, 19, 31, .76) !important;
    border: 1px solid rgba(137,218,235,.14) !important;
    box-shadow: 0 18px 48px rgba(0,0,0,.22) !important;
}
.tvm-video-hub .tvm-content-filters label span,
.tvm-video-hub .tvm-event-filters label span { color: var(--tvm-muted) !important; font-weight: 800 !important; }
.tvm-video-hub .tvm-content-filters select,
.tvm-video-hub .tvm-content-filters input,
.tvm-video-hub .tvm-event-filters select,
.tvm-video-hub .tvm-event-filters input {
    background: rgba(255,255,255,.96) !important;
    color: #071d2a !important;
    border: 0 !important;
    border-radius: 13px !important;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.05) !important;
}
.tvm-video-hub .tvm-layout { padding-top: 0 !important; }
.tvm-video-hub .tvm-grid { gap: 18px !important; align-items: stretch !important; }
.tvm-video-hub .tvm-card,
.tvm-video-hub .tvm-card:hover,
.tvm-video-hub .tvm-card:focus-within,
.tvm-video-hub .tvm-card.is-active {
    max-width: none !important;
    min-height: 0 !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, var(--tvm-card-bg-2), var(--tvm-card-bg)) !important;
    color: var(--tvm-text) !important;
    border: 1px solid var(--tvm-line) !important;
    box-shadow: 0 20px 48px rgba(0,0,0,.26) !important;
    transform: none !important;
}
.tvm-video-hub .tvm-card:hover,
.tvm-video-hub .tvm-card:focus-within {
    transform: translateY(-2px) scale(1.01) !important;
    border-color: rgba(137,218,235,.28) !important;
    box-shadow: 0 26px 60px rgba(0,0,0,.34) !important;
}
.tvm-video-hub .tvm-card__button { display: grid !important; grid-template-rows: auto 1fr !important; color: inherit !important; }
.tvm-video-hub .tvm-card__thumb,
.tvm-video-hub .tvm-card__thumb--event {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    aspect-ratio: 16 / 9 !important;
    box-shadow: none !important;
    background: #000 !important;
}
.tvm-video-hub .tvm-card--event .tvm-card__thumb { aspect-ratio: 16 / 9 !important; }
.tvm-video-hub .tvm-card__thumb img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
.tvm-video-hub .tvm-card__content {
    width: 100% !important;
    max-width: none !important;
    min-height: 190px !important;
    padding: 16px 16px 15px !important;
    gap: 10px !important;
    text-align: left !important;
    color: var(--tvm-text) !important;
}
.tvm-video-hub .tvm-card__title,
.tvm-video-hub .tvm-card:hover .tvm-card__title,
.tvm-video-hub .tvm-card:focus-within .tvm-card__title {
    color: var(--tvm-text) !important;
    font-weight: 900 !important;
    font-size: clamp(17px, 1.18vw, 20px) !important;
    line-height: 1.24 !important;
    letter-spacing: -.02em !important;
    min-height: 2.45em !important;
    text-shadow: none !important;
}
.tvm-video-hub .tvm-card__description,
.tvm-video-hub .tvm-card:hover .tvm-card__description,
.tvm-video-hub .tvm-card:focus-within .tvm-card__description {
    min-height: 3.0em !important;
    background: transparent !important;
    border-left: 2px solid rgba(65, 198, 228, .55) !important;
    border-radius: 0 !important;
    padding-left: 10px !important;
    color: var(--tvm-muted) !important;
    font-size: 14px !important;
    line-height: 1.48 !important;
    text-shadow: none !important;
}
.tvm-video-hub .tvm-card__categories { order: -1 !important; min-height: 25px !important; }
.tvm-video-hub .tvm-card__categories span,
.tvm-video-hub .tvm-card:hover .tvm-card__categories span,
.tvm-video-hub .tvm-card:focus-within .tvm-card__categories span,
.tvm-video-hub .tvm-card__tag {
    background: rgba(0,166,214,.15) !important;
    color: #dff9ff !important;
    border: 1px solid rgba(137,218,235,.22) !important;
}
.tvm-video-hub .tvm-card__meta,
.tvm-video-hub .tvm-card:hover .tvm-card__meta,
.tvm-video-hub .tvm-card:focus-within .tvm-card__meta {
    border-top: 1px solid var(--tvm-soft-line) !important;
    color: var(--tvm-muted) !important;
}
.tvm-video-hub .tvm-card__stars,
.tvm-video-hub .tvm-card:hover .tvm-card__stars,
.tvm-video-hub .tvm-card:focus-within .tvm-card__stars {
    display: inline-flex !important;
    align-items: center !important;
    gap: 2px !important;
    padding: 7px 10px !important;
    border-radius: 999px !important;
    background: rgba(255,177,60,.10) !important;
    border: 1px solid rgba(255,177,60,.18) !important;
    color: #ffb13c !important;
}
.tvm-video-hub .tvm-card__rating-number { color: var(--tvm-text) !important; margin-left: 6px !important; }
.tvm-video-hub .tvm-card__share-icon,
.tvm-video-hub .tvm-card:hover .tvm-card__share-icon,
.tvm-video-hub .tvm-card:focus-within .tvm-card__share-icon {
    background: rgba(255,255,255,.07) !important;
    color: #8defff !important;
    border: 1px solid rgba(137,218,235,.16) !important;
}
.tvm-video-hub .tvm-card__share-icon:hover { background: rgba(0,166,214,.24) !important; color: #fff !important; }
.tvm-video-hub .tvm-top10 {
    background: rgba(3, 19, 31, .70) !important;
    border: 1px solid var(--tvm-line) !important;
    border-radius: 20px !important;
    padding: 20px !important;
}
.tvm-video-hub .tvm-top10 h3 { color: var(--tvm-text) !important; text-align: center !important; }
.tvm-video-hub .tvm-top10__button {
    grid-template-columns: 76px 1fr !important;
    align-items: center !important;
    text-align: left !important;
    background: rgba(255,255,255,.07) !important;
    color: var(--tvm-text) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 14px !important;
    padding: 9px !important;
}
.tvm-video-hub .tvm-top10__button img { width: 76px !important; border-radius: 10px !important; }
.tvm-video-hub .tvm-top10__button strong { color: var(--tvm-text) !important; max-width: none !important; font-size: 13px !important; }
.tvm-video-hub .tvm-top10__media { position: absolute !important; left: 36px; top: 50%; transform: translate(-50%, -50%); }
.tvm-video-hub .tvm-footer {
    width: 100% !important;
    margin-top: 40px !important;
    padding: 28px 0 !important;
    background: linear-gradient(180deg, #03131f, #020a11) !important;
    border-top: 1px solid var(--tvm-line) !important;
}
.tvm-video-hub .tvm-footer__inner {
    width: min(var(--tvm-shell-max), calc(100% - 64px)) !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.tvm-video-hub .tvm-footer__copy strong,
.tvm-video-hub .tvm-footer__copy span,
.tvm-video-hub .tvm-footer__rights,
.tvm-video-hub .tvm-footer a { color: rgba(255,255,255,.84) !important; }
.tvm-modal__nav { top: 50% !important; }

@media (max-width: 1100px) {
}
@media (max-width: 900px) {
    .tvm-video-hub .tvm-layout,
    .tvm-video-hub .tvm-content-filters,
    .tvm-video-hub .tvm-event-filters,
    .tvm-video-hub .tvm-hero__top,
    .tvm-video-hub .tvm-footer__inner { width: min(100% - 28px, 720px) !important; }
    .tvm-video-hub .tvm-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
    .tvm-video-hub .tvm-sidebar { display: grid !important; grid-template-columns: 1fr !important; gap: 16px !important; }
}
@media (max-width: 640px) {
    .tvm-video-hub .tvm-hero { padding: 22px 0 16px !important; }
    .tvm-video-hub .tvm-hero__top { grid-template-columns: 1fr !important; text-align: center !important; }
    .tvm-video-hub .tvm-grid { grid-template-columns: 1fr !important; }
    .tvm-video-hub .tvm-card__content { min-height: auto !important; }
    .tvm-video-hub .tvm-tabs-bar,
    .tvm-video-hub .tvm-category-nav { padding-left: 14px !important; padding-right: 14px !important; overflow-x: auto !important; }
    .tvm-video-hub .tvm-content-filters,
    .tvm-video-hub .tvm-event-filters { grid-template-columns: 1fr !important; }
    .tvm-video-hub .tvm-filter-actions { grid-template-columns: 1fr 1fr !important; }
}

/* ==========================================================
   Video Hub Core 1.0.94 — FINAL UI STABILIZATION
   Cel: spójny morsko-granatowy hub, czytelne karty, prawidłowe modale,
   full-width header/tabs/footer i stabilny układ mobile.
   ========================================================== */

.tvm-video-hub,
.tvm-video-hub * { box-sizing: border-box; }

.tvm-video-hub {
    --tvm-bg-deep: #001b26;
    --tvm-bg-mid: #003747;
    --tvm-bg-soft: rgba(0, 88, 112, .28);
    --tvm-surface: rgba(3, 31, 43, .88);
    --tvm-surface-2: rgba(6, 45, 59, .82);
    --tvm-border: rgba(130, 219, 232, .18);
    --tvm-border-strong: rgba(130, 219, 232, .38);
    --tvm-text: #f5fbff;
    --tvm-text-muted: rgba(226, 241, 247, .76);
    --tvm-accent-blue: #0b8fc0;
    --tvm-accent-cyan: #26c6dc;
    --tvm-accent-gold: #ffae3d;
    --tvm-card-green: rgba(0, 72, 79, .72);
    --tvm-card-green-2: rgba(5, 54, 65, .92);
    color: var(--tvm-text) !important;
    background:
        radial-gradient(circle at 82% 22%, rgba(38, 198, 220, .18), transparent 32%),
        radial-gradient(circle at 0 72%, rgba(0, 110, 130, .24), transparent 35%),
        linear-gradient(180deg, #002f3c 0%, #001b26 50%, #001420 100%) !important;
    font-family: Inter, Roboto, "Open Sans", "Noto Sans", Arial, sans-serif !important;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.tvm-video-hub a { color: inherit; }

.tvm-video-hub p,
.tvm-video-hub span,
.tvm-video-hub small,
.tvm-video-hub strong,
.tvm-video-hub h1,
.tvm-video-hub h2,
.tvm-video-hub h3,
.tvm-video-hub h4 { color: inherit; }

/* HEADER FULL WIDTH + wewnętrzny kontener */
.tvm-hero {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 34px 0 22px !important;
    background:
        linear-gradient(180deg, rgba(0, 58, 76, .92), rgba(0, 35, 48, .92)) !important;
    border-bottom: 1px solid var(--tvm-border) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,.22) !important;
}
.tvm-hero__top,
.tvm-tabs-bar,
.tvm-event-filters,
.tvm-content-filters,
.tvm-layout,
.tvm-seo-tags-strip__inner,
.tvm-footer__inner {
    width: min(1440px, calc(100% - 48px)) !important;
    max-width: 1440px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.tvm-hero__top {
    display: grid !important;
    grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 360px) !important;
    gap: clamp(24px, 4vw, 72px) !important;
    align-items: center !important;
}
.tvm-eyebrow { color: #aef6ff !important; letter-spacing: .22em !important; font-size: 12px !important; text-transform: uppercase !important; font-weight: 900 !important; }
.tvm-hero h2 { color: #fff !important; font-size: clamp(34px, 4vw, 56px) !important; line-height: .98 !important; margin: 10px 0 12px !important; text-shadow: 0 14px 34px rgba(0,0,0,.38) !important; }
.tvm-intro { color: rgba(236, 250, 255, .88) !important; font-size: 17px !important; }
.tvm-site-logo { filter: drop-shadow(0 20px 32px rgba(0,0,0,.28)); }

/* LIVE jako mały telewizorek, bez plastikowej bieli */
.tvm-live-box,
.tvm-live-box.is-offline,
.tvm-live-box.is-live {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 88px 1fr !important;
    grid-template-areas:
        "screen status"
        "screen meta" !important;
    align-items: center !important;
    min-height: 132px !important;
    width: 100% !important;
    padding: 18px 20px !important;
    border-radius: 24px !important;
    background:
        linear-gradient(145deg, rgba(2, 34, 48, .96), rgba(3, 68, 84, .84)) !important;
    border: 1px solid var(--tvm-border-strong) !important;
    color: var(--tvm-text) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 46px rgba(0,0,0,.28) !important;
    overflow: hidden !important;
}
.tvm-live-box::before {
    content: "";
    grid-area: screen;
    width: 74px;
    height: 52px;
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(0, 152, 190, .98), rgba(0, 54, 70, .98));
    border: 2px solid rgba(149, 240, 255, .32);
    box-shadow: 0 14px 30px rgba(0,0,0,.25), inset 0 0 22px rgba(255,255,255,.08);
}
.tvm-live-box::after {
    content: "";
    position: absolute;
    left: 43px;
    top: 86px;
    width: 38px;
    height: 5px;
    border-radius: 999px;
    background: rgba(136, 236, 255, .28);
}
.tvm-live-box__status,
.tvm-live-box.is-offline .tvm-live-box__status,
.tvm-live-box.is-live .tvm-live-box__status {
    grid-area: status !important;
    justify-self: start !important;
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    max-width: max-content !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    background: rgba(0, 151, 196, .18) !important;
    color: #9ff4ff !important;
    border: 1px solid rgba(143, 234, 255, .28) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
    box-shadow: none !important;
}
.tvm-live-box__body { grid-area: meta !important; display: block !important; padding: 0 !important; }
.tvm-live-box__icon { display: none !important; }
.tvm-live-box__meta { display: grid !important; gap: 3px !important; }
.tvm-live-box__meta strong { color: #fff !important; font-size: 17px !important; line-height: 1.2 !important; }
.tvm-live-box__meta small { color: var(--tvm-text-muted) !important; line-height: 1.25 !important; }
.tvm-live-box:hover { transform: translateY(-2px) !important; border-color: rgba(143, 234, 255, .48) !important; }

/* ZAKŁADKI full width, poziome, bez rozjazdu */
.tvm-tabs-bar {
    margin-top: 26px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 11px !important;
    border-radius: 24px !important;
    background: rgba(0, 20, 28, .54) !important;
    border: 1px solid var(--tvm-border) !important;
    backdrop-filter: blur(16px);
}
.tvm-tabs-row { display: flex !important; align-items: center !important; gap: 10px !important; margin-left: auto !important; order: 2 !important; }
.tvm-category-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    align-items: center !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow-x: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    scrollbar-width: thin;
}
.tvm-category-nav a,
.tvm-tabs-add-event,
.tvm-filter-mobile-toggle,
.tvm-category-toggle {
    white-space: nowrap !important;
    border-radius: 16px !important;
    padding: 12px 18px !important;
    border: 1px solid rgba(122, 208, 223, .16) !important;
    background: rgba(255,255,255,.07) !important;
    color: #fff !important;
    font-weight: 850 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    transition: transform .18s ease, background .18s ease, border-color .18s ease !important;
}
.tvm-category-nav a.is-active,
.tvm-category-nav a:hover,
.tvm-tabs-add-event:hover {
    background: linear-gradient(135deg, #078cb5, #0a6f93) !important;
    border-color: rgba(165, 244, 255, .42) !important;
    transform: translateY(-1px) !important;
}
.tvm-category-toggle,
.tvm-filter-mobile-toggle { display: none !important; }

/* FILTRY */
.tvm-event-filters,
.tvm-content-filters {
    margin-top: 28px !important;
    padding: 18px !important;
    border-radius: 24px !important;
    background: rgba(0, 20, 28, .62) !important;
    border: 1px solid var(--tvm-border) !important;
    box-shadow: 0 24px 70px rgba(0,0,0,.18) !important;
}
.tvm-event-filters label { color: rgba(218, 239, 245, .85) !important; font-weight: 800 !important; }
.tvm-event-filters select,
.tvm-event-filters input[type="text"],
.tvm-event-filters input[type="search"] {
    min-height: 46px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(126, 214, 230, .24) !important;
    background: rgba(255,255,255,.96) !important;
    color: #101820 !important;
    font-weight: 700 !important;
}

/* UKŁAD GŁÓWNY */
.tvm-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 300px !important;
    gap: 28px !important;
    align-items: start !important;
    padding-top: 28px !important;
}
.tvm-grid,
.tvm-cards-grid,
.tvm-video-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    align-items: stretch !important;
}

/* KARTY: morska zieleń, czytelność, brak bieli */
.tvm-card,
.tvm-card--event,
.tvm-card--podcast,
.tvm-card--teaser {
    min-height: 0 !important;
    height: auto !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background:
        linear-gradient(180deg, rgba(7, 62, 74, .95), rgba(2, 31, 42, .96)) !important;
    border: 1px solid rgba(126, 214, 230, .20) !important;
    box-shadow: 0 20px 54px rgba(0,0,0,.24) !important;
    color: #fff !important;
    transform: translateZ(0) !important;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease !important;
}
.tvm-card:hover {
    background:
        linear-gradient(180deg, rgba(8, 75, 88, .98), rgba(3, 38, 50, .98)) !important;
    transform: translateY(-3px) scale(1.012) !important;
    border-color: rgba(133, 235, 255, .38) !important;
    box-shadow: 0 26px 72px rgba(0,0,0,.30) !important;
}
.tvm-card__button {
    min-height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    background: transparent !important;
    color: #fff !important;
    text-align: left !important;
}
.tvm-card__thumb {
    display: block !important;
    width: 100% !important;
    aspect-ratio: 16/9 !important;
    height: auto !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    background: rgba(0,0,0,.25) !important;
}
.tvm-card__thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    filter: saturate(1.04) contrast(1.03) !important;
}
.tvm-card__content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 18px 18px 16px !important;
    min-height: 230px !important;
    background: transparent !important;
    color: #fff !important;
}
.tvm-card__title {
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    line-height: 1.16 !important;
    text-shadow: none !important;
    margin: 0 !important;
}
.tvm-card__description {
    color: rgba(229, 246, 250, .78) !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
    text-shadow: none !important;
    margin: 0 !important;
}
.tvm-card__categories {
    display: flex !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    order: -1 !important;
}
.tvm-card__categories span,
.tvm-card__tag {
    display: inline-flex !important;
    align-items: center !important;
    padding: 4px 9px !important;
    border-radius: 999px !important;
    background: rgba(0, 154, 188, .16) !important;
    border: 1px solid rgba(135, 230, 246, .26) !important;
    color: #c9f8ff !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    text-decoration: none !important;
}
.tvm-card__meta {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    margin-top: auto !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255,255,255,.08) !important;
}
.tvm-card__rating,
.tvm-card__stars {
    display: inline-flex !important;
    align-items: center !important;
    gap: 2px !important;
    color: var(--tvm-accent-gold) !important;
    background: rgba(255, 174, 61, .10) !important;
    border: 1px solid rgba(255, 174, 61, .22) !important;
    border-radius: 999px !important;
    padding: 5px 10px !important;
    font-weight: 900 !important;
}
.tvm-card__rating-number { color: #fff !important; margin-left: 6px !important; }
.tvm-card__share-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(117, 221, 239, .28) !important;
    background: rgba(255,255,255,.07) !important;
    color: #b9f4ff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform .16s ease, background .16s ease !important;
}
.tvm-card__share-icon:hover { background: rgba(18, 177, 212, .26) !important; transform: scale(1.06) !important; }

/* SIDEBAR TOP */
.tvm-sidebar,
.tvm-top10,
.tvm-sidebar-panel {
    background: rgba(0, 24, 34, .66) !important;
    border: 1px solid var(--tvm-border) !important;
    border-radius: 22px !important;
    color: #fff !important;
    box-shadow: 0 24px 70px rgba(0,0,0,.18) !important;
}
.tvm-top10__button {
    background: rgba(255,255,255,.07) !important;
    border: 1px solid rgba(135, 230, 246, .16) !important;
    border-radius: 16px !important;
    color: #fff !important;
}
.tvm-top10__button:hover { background: rgba(9, 91, 108, .55) !important; }
.tvm-top10__button img { border-radius: 10px !important; }
.tvm-top10__text strong { color: #fff !important; }

/* MODAL VIDEO: PC film po lewej, opis po prawej */
.tvm-modal[hidden] { display: none !important; }
.tvm-modal:not([hidden]) {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 34px !important;
}
.tvm-modal__backdrop { background: rgba(0, 9, 14, .78) !important; backdrop-filter: blur(9px) !important; }
.tvm-modal__dialog:not(.tvm-modal__dialog--static) {
    position: relative !important;
    width: min(1380px, 96vw) !important;
    max-width: 1380px !important;
    max-height: min(840px, 90vh) !important;
    display: grid !important;
    grid-template-columns: minmax(540px, 1.05fr) minmax(420px, .85fr) !important;
    gap: 24px !important;
    align-items: stretch !important;
    padding: 24px !important;
    border-radius: 28px !important;
    background:
        linear-gradient(145deg, rgba(0, 31, 43, .98), rgba(3, 58, 71, .94)) !important;
    border: 1px solid var(--tvm-border-strong) !important;
    box-shadow: 0 30px 100px rgba(0,0,0,.52) !important;
    overflow: hidden !important;
}
.tvm-modal__dialog:not(.tvm-modal__dialog--static) .tvm-modal__video {
    grid-column: 1 !important;
    grid-row: 1 !important;
    min-height: 360px !important;
    align-self: stretch !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    background: #000 !important;
    box-shadow: 0 22px 56px rgba(0,0,0,.32) !important;
}
.tvm-modal__video iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 420px !important;
    display: block !important;
    border: 0 !important;
}
.tvm-modal__dialog:not(.tvm-modal__dialog--static) .tvm-modal__content {
    grid-column: 2 !important;
    grid-row: 1 !important;
    min-width: 0 !important;
    display: flex !important;
}
.tvm-modal__glass {
    width: 100% !important;
    border-radius: 22px !important;
    padding: 30px !important;
    background: rgba(0, 22, 31, .72) !important;
    border: 1px solid rgba(137, 230, 246, .18) !important;
    color: #fff !important;
    overflow-y: auto !important;
}
.tvm-modal__glass h3 { color: #fff !important; font-size: clamp(28px, 3vw, 44px) !important; line-height: 1.08 !important; margin: 0 0 16px !important; }
.tvm-modal__glass p { color: rgba(235, 248, 252, .82) !important; font-size: 16px !important; line-height: 1.6 !important; }
.tvm-modal__close {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    z-index: 20 !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 999px !important;
    background: #078bb9 !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: 0 12px 26px rgba(0,0,0,.32) !important;
}
.tvm-modal__info-toggle { display: none !important; }
.tvm-rating__stars { display: flex !important; gap: 10px !important; flex-wrap: wrap !important; }
.tvm-rating__stars button,
.tvm-rating__stars [role="button"] {
    width: 54px !important;
    height: 54px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255, 174, 61, .28) !important;
    background: rgba(255,255,255,.08) !important;
    color: var(--tvm-accent-gold) !important;
    box-shadow: none !important;
}
.tvm-modal__share,
.tvm-live-action {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(114, 221, 239, .22) !important;
    background: rgba(0, 139, 184, .25) !important;
    color: #d5fbff !important;
    font-weight: 900 !important;
    padding: 0 18px !important;
}

/* MODAL WYDARZEŃ: elegancka karta reklamowa, bez kiczu */
.tvm-modal__dialog--static {
    width: min(1360px, 96vw) !important;
    max-width: 1360px !important;
    max-height: 90vh !important;
    border-radius: 28px !important;
    background:
        linear-gradient(145deg, rgba(0, 32, 42, .98), rgba(3, 58, 70, .95)) !important;
    border: 1px solid var(--tvm-border-strong) !important;
    box-shadow: 0 34px 110px rgba(0,0,0,.54) !important;
    overflow: hidden !important;
    color: #fff !important;
}
.tvm-static-modal__glass {
    padding: 28px !important;
    background: transparent !important;
    color: #fff !important;
}

/* FOOTER full width — granat/morski, bez czerwieni */
.tvm-footer {
    width: 100% !important;
    max-width: none !important;
    margin: 44px 0 0 !important;
    padding: 34px 0 !important;
    background:
        linear-gradient(90deg, rgba(0, 20, 31, .98), rgba(0, 37, 49, .98), rgba(0, 25, 35, .98)) !important;
    border-top: 1px solid var(--tvm-border) !important;
    color: #fff !important;
}
.tvm-footer::before { display: none !important; }
.tvm-footer__inner {
    display: grid !important;
    grid-template-columns: minmax(260px, 1fr) auto minmax(240px, auto) !important;
    gap: 24px !important;
    align-items: center !important;
    padding: 24px 28px !important;
    border-radius: 24px !important;
    background: rgba(0, 15, 23, .52) !important;
    border: 1px solid rgba(134, 226, 242, .18) !important;
}
.tvm-footer__copy strong { color: #fff !important; font-size: 20px !important; }
.tvm-footer__copy span,
.tvm-footer__rights,
.tvm-footer__rights a { color: rgba(232, 247, 251, .78) !important; }
.tvm-footer__menu { display: flex !important; gap: 10px !important; justify-content: flex-end !important; }
.tvm-footer button {
    border-radius: 999px !important;
    border: 1px solid rgba(135, 230, 246, .18) !important;
    background: rgba(255,255,255,.08) !important;
    color: #fff !important;
    padding: 10px 16px !important;
}
.tvm-footer-socials { display: flex !important; gap: 12px !important; justify-content: center !important; }

/* PA: jasny, czytelny, bez ciemnego motywu */
body.wp-admin .tvm-admin-quick-add,
body.wp-admin .tvm-admin-quick-add * { box-sizing: border-box; }
body.wp-admin .tvm-admin-quick-add {
    color: #17212b !important;
    background: #f6f8fb !important;
    max-width: 1180px !important;
}
body.wp-admin .tvm-admin-card {
    background: #fff !important;
    border: 1px solid #dfe7ef !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 26px rgba(19, 36, 52, .06) !important;
    color: #17212b !important;
}
body.wp-admin .tvm-admin-card h2,
body.wp-admin .tvm-admin-card span,
body.wp-admin .tvm-admin-card label,
body.wp-admin .tvm-admin-card legend { color: #17212b !important; }
body.wp-admin .tvm-admin-mode-tabs button {
    background: #edf3f7 !important;
    border: 1px solid #d8e4ed !important;
    color: #17212b !important;
    border-radius: 999px !important;
}
body.wp-admin .tvm-admin-mode-tabs button.is-active {
    background: #007aa5 !important;
    color: #fff !important;
    border-color: #007aa5 !important;
}
body.wp-admin .tvm-admin-quick-add input,
body.wp-admin .tvm-admin-quick-add textarea,
body.wp-admin .tvm-admin-quick-add select {
    border-radius: 8px !important;
    border: 1px solid #ccd8e3 !important;
    background: #fff !important;
    color: #17212b !important;
}

/* MOBILE: jedna kolumna, compact shell, karty nierozwalające przestrzeni */
@media (max-width: 1100px) {
    .tvm-hero__top { grid-template-columns: 1fr !important; text-align: left !important; }
    .tvm-hero__logo-col { justify-self: start !important; }
    .tvm-hero__live-col { width: 100% !important; }
    .tvm-layout { grid-template-columns: 1fr !important; }
    .tvm-grid,
    .tvm-cards-grid,
    .tvm-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .tvm-sidebar { display: none !important; }
}

@media (max-width: 760px) {
    .tvm-hero { padding: 20px 0 14px !important; }
    .tvm-hero__top,
    .tvm-tabs-bar,
    .tvm-event-filters,
    .tvm-content-filters,
    .tvm-layout,
    .tvm-seo-tags-strip__inner,
    .tvm-footer__inner { width: min(100% - 24px, 560px) !important; }
    .tvm-hero h2 { font-size: 34px !important; }
    .tvm-site-logo { max-width: 120px !important; }
    .tvm-live-box,
    .tvm-live-box.is-offline,
    .tvm-live-box.is-live { grid-template-columns: 74px 1fr !important; min-height: 112px !important; padding: 14px !important; border-radius: 20px !important; }
    .tvm-live-box::before { width: 60px !important; height: 44px !important; }
    .tvm-live-box::after { display: none !important; }
    .tvm-tabs-bar { align-items: stretch !important; flex-direction: column !important; padding: 10px !important; }
    .tvm-category-nav { display: flex !important; overflow-x: auto !important; width: 100% !important; }
    .tvm-category-nav a { padding: 10px 14px !important; font-size: 14px !important; }
    .tvm-tabs-row { width: 100% !important; order: 3 !important; margin-left: 0 !important; }
    .tvm-tabs-add-event { width: 100% !important; justify-content: center !important; }
    .tvm-grid,
    .tvm-cards-grid,
    .tvm-video-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
    .tvm-card__content { min-height: auto !important; padding: 16px !important; }
    .tvm-card__title { font-size: 19px !important; }
    .tvm-card__description { font-size: 14px !important; }

    .tvm-mobile-shell {
        display: block !important;
        width: min(100% - 24px, 560px) !important;
        margin: 14px auto 0 !important;
        border-radius: 18px !important;
        background: rgba(0, 24, 34, .68) !important;
        border: 1px solid var(--tvm-border) !important;
        overflow: hidden !important;
    }
    .tvm-mobile-shell__header {
        padding: 14px 16px !important;
        cursor: pointer !important;
    }
    .tvm-mobile-shell__header h3 { margin: 0 !important; font-size: 17px !important; color: #fff !important; }
    .tvm-mobile-shell__header p { margin: 4px 0 0 !important; font-size: 13px !important; color: rgba(232,247,251,.72) !important; }
    .tvm-mobile-shell__card { max-height: 0 !important; overflow: hidden !important; padding: 0 !important; margin: 0 !important; }
    .tvm-mobile-shell.is-open .tvm-mobile-shell__card { max-height: 220px !important; padding: 12px 16px 16px !important; }

    .tvm-modal:not([hidden]) { padding: 12px !important; align-items: flex-start !important; }
    .tvm-modal__dialog:not(.tvm-modal__dialog--static) {
        width: 100% !important;
        max-height: calc(100vh - 24px) !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        padding: 14px !important;
        overflow-y: auto !important;
    }
    .tvm-modal__dialog:not(.tvm-modal__dialog--static) .tvm-modal__video,
    .tvm-modal__dialog:not(.tvm-modal__dialog--static) .tvm-modal__content { grid-column: 1 !important; }
    .tvm-modal__video iframe { min-height: 220px !important; aspect-ratio: 16/9 !important; }
    .tvm-modal__glass { padding: 18px !important; }
    .tvm-modal__glass h3 { font-size: 24px !important; }
    .tvm-rating__stars button,
    .tvm-rating__stars [role="button"] { width: 44px !important; height: 44px !important; }
    .tvm-footer__inner { grid-template-columns: 1fr !important; text-align: left !important; }
    .tvm-footer__menu,
    .tvm-footer-socials { justify-content: flex-start !important; }
}

/* =========================================================
   Video Hub Core 1.0.94 — VISUAL AUDIT FIX
   Cel: header kontenerowy, zakładki osobnym full-width pasem,
   karty morska zieleń/granat bez bieli, biała typografia,
   żółte akcenty głosowania/udostępniania.
   ========================================================= */

:root {
    --tvm-navy-950: #071823;
    --tvm-navy-900: #0a2432;
    --tvm-navy-850: #0d2c3a;
    --tvm-teal-900: #063f49;
    --tvm-teal-800: #075562;
    --tvm-teal-700: #0b6c77;
    --tvm-teal-500: #1499a7;
    --tvm-text-white: #ffffff;
    --tvm-text-soft: rgba(235, 250, 252, .86);
    --tvm-yellow: #f3c84b;
    --tvm-yellow-soft: rgba(243, 200, 75, .22);
    --tvm-card-border: rgba(121, 226, 235, .18);
}

/* ROOT: spokojne tło, bez białych prześwitów */
.tvm-video-hub,
.tvm-video-hub * {
    box-sizing: border-box;
}

.tvm-video-hub {
    width: 100% !important;
    max-width: none !important;
    overflow-x: clip !important;
    background:
        radial-gradient(circle at 12% 0%, rgba(20, 153, 167, .28), transparent 34%),
        radial-gradient(circle at 92% 12%, rgba(9, 80, 106, .42), transparent 36%),
        linear-gradient(180deg, #061722 0%, #082432 48%, #061822 100%) !important;
    color: var(--tvm-text-white) !important;
}

/* HEADER: tylko kontener, bez rozpychania na całą szerokość */
.tvm-hero {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 28px 0 18px !important;
    background: transparent !important;
    border: 0 !important;
}

.tvm-hero__top {
    width: min(100% - 40px, 1180px) !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 22px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto minmax(280px, 360px) !important;
    gap: 22px !important;
    align-items: center !important;
    border-radius: 28px !important;
    background: linear-gradient(135deg, rgba(3, 32, 46, .82), rgba(8, 69, 78, .58)) !important;
    border: 1px solid rgba(129, 229, 239, .18) !important;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .28) !important;
}

/* LIVE: telewizorek, nie zwykłe okienko */
.tvm-live-box,
.tvm-live-box.is-live,
.tvm-live-box.is-offline {
    position: relative !important;
    min-height: 126px !important;
    display: grid !important;
    grid-template-columns: 96px 1fr !important;
    gap: 16px !important;
    align-items: center !important;
    padding: 16px 18px !important;
    border-radius: 24px !important;
    background:
        linear-gradient(145deg, rgba(5, 42, 55, .94), rgba(8, 82, 91, .82)) !important;
    border: 1px solid rgba(141, 235, 245, .24) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 18px 42px rgba(0,0,0,.25) !important;
    color: #fff !important;
    overflow: hidden !important;
}
.tvm-live-box::before {
    content: '' !important;
    display: block !important;
    width: 82px !important;
    height: 58px !important;
    border-radius: 14px !important;
    background:
        linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.02)),
        radial-gradient(circle at 50% 50%, rgba(243,200,75,.28), transparent 46%),
        #061722 !important;
    border: 3px solid rgba(231, 249, 252, .88) !important;
    box-shadow: 0 10px 22px rgba(0,0,0,.3) !important;
}
.tvm-live-box::after {
    content: '' !important;
    position: absolute !important;
    left: 54px !important;
    top: 22px !important;
    width: 28px !important;
    height: 4px !important;
    border-radius: 99px !important;
    background: var(--tvm-yellow) !important;
    box-shadow: 0 12px 0 rgba(243,200,75,.66), 0 24px 0 rgba(243,200,75,.38) !important;
}
.tvm-live-box > * { color: #fff !important; }

/* ZAKŁADKI: osobny pasek full width, NIE część headera */
.tvm-tabs-bar {
    width: 100vw !important;
    max-width: none !important;
    margin: 22px 50% 0 !important;
    transform: translateX(-50%) !important;
    padding: 12px max(20px, calc((100vw - 1180px) / 2)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    border-radius: 0 !important;
    background: linear-gradient(90deg, rgba(4, 23, 35, .98), rgba(4, 62, 72, .96), rgba(4, 26, 38, .98)) !important;
    border-top: 1px solid rgba(122, 226, 236, .18) !important;
    border-bottom: 1px solid rgba(122, 226, 236, .18) !important;
    box-shadow: 0 16px 42px rgba(0,0,0,.18) !important;
}
.tvm-tabs-row {
    min-width: 0 !important;
    width: auto !important;
    flex: 0 0 auto !important;
}
.tvm-category-nav {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    overflow-x: auto !important;
    scrollbar-width: thin !important;
}
.tvm-category-nav a,
.tvm-tabs-bar button,
.tvm-tab,
.tvm-tab-button {
    white-space: nowrap !important;
    border-radius: 999px !important;
    border: 1px solid rgba(132, 229, 240, .18) !important;
    background: rgba(255,255,255,.055) !important;
    color: rgba(240, 252, 255, .9) !important;
    font-weight: 800 !important;
    letter-spacing: .01em !important;
    box-shadow: none !important;
}
.tvm-category-nav a:hover,
.tvm-category-nav a.is-active,
.tvm-tabs-bar button:hover,
.tvm-tabs-bar button.is-active,
.tvm-tab.is-active,
.tvm-tab-button.is-active {
    background: linear-gradient(135deg, rgba(14, 112, 124, .92), rgba(6, 75, 91, .92)) !important;
    color: #fff !important;
    border-color: rgba(243, 200, 75, .42) !important;
}

/* CONTENT: kontener, nie full width */
.tvm-layout,
.tvm-content-filters,
.tvm-event-filters,
.tvm-seo-tags-strip__inner {
    width: min(100% - 40px, 1180px) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* KARTY: pełne nadpisanie starego białego stylu */
.tvm-card,
.tvm-card--event,
.tvm-card--teaser,
.tvm-card--podcast,
.tvm-video-hub article.tvm-card,
.tvm-video-hub [data-hub-card] {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    background: linear-gradient(145deg, rgba(4, 55, 65, .96), rgba(5, 82, 91, .9)) !important;
    border: 1px solid var(--tvm-card-border) !important;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .24) !important;
    color: var(--tvm-text-white) !important;
    transform: translateZ(0) !important;
}
.tvm-card:hover,
.tvm-video-hub article.tvm-card:hover,
.tvm-video-hub [data-hub-card]:hover {
    background: linear-gradient(145deg, rgba(5, 67, 76, .98), rgba(6, 97, 106, .92)) !important;
    transform: translateY(-3px) scale(1.012) !important;
    box-shadow: 0 22px 58px rgba(0,0,0,.28) !important;
}
.tvm-card__button,
.tvm-card a,
.tvm-card button.tvm-card__button,
.tvm-video-hub .tvm-card__button {
    display: grid !important;
    grid-template-rows: auto 1fr !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #fff !important;
    text-align: left !important;
    box-shadow: none !important;
}
.tvm-card__thumb {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    aspect-ratio: 16/9 !important;
    overflow: hidden !important;
    background: #061722 !important;
}
.tvm-card__thumb img,
.tvm-card__thumb--event img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    filter: saturate(1.05) contrast(1.02) !important;
}
.tvm-card__thumb::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, transparent 48%, rgba(4, 41, 52, .76) 100%) !important;
    pointer-events: none !important;
}
.tvm-card__content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 10px !important;
    min-height: 172px !important;
    padding: 18px 18px 16px !important;
    background: linear-gradient(180deg, rgba(5, 77, 87, .96), rgba(4, 45, 57, .98)) !important;
    color: #fff !important;
}
.tvm-card__title {
    display: block !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(18px, 1.45vw, 22px) !important;
    line-height: 1.14 !important;
    font-weight: 950 !important;
    text-align: left !important;
}
.tvm-card__description {
    display: block !important;
    margin: 0 !important;
    color: rgba(238, 250, 252, .88) !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    text-align: left !important;
}
.tvm-card__categories {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 7px !important;
    margin: 0 !important;
}
.tvm-card__categories span,
.tvm-card__tag {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 26px !important;
    padding: 5px 10px !important;
    border-radius: 999px !important;
    background: rgba(243, 200, 75, .14) !important;
    border: 1px solid rgba(243, 200, 75, .34) !important;
    color: #ffe18a !important;
    font-size: 12px !important;
    font-weight: 850 !important;
}
.tvm-card__meta {
    margin-top: auto !important;
    padding-top: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    border-top: 1px solid rgba(255,255,255,.1) !important;
    color: #fff !important;
}
.tvm-card__rating,
.tvm-card__views,
.tvm-card__stars,
.tvm-card__rating-number {
    color: var(--tvm-yellow) !important;
    font-weight: 900 !important;
}
.tvm-card__share-icon,
.tvm-video-hub .tvm-card__share-icon {
    width: 38px !important;
    height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    border: 1px solid rgba(243, 200, 75, .42) !important;
    background: rgba(243, 200, 75, .13) !important;
    color: #ffe18a !important;
    box-shadow: none !important;
}
.tvm-card__share-icon:hover {
    background: rgba(243, 200, 75, .22) !important;
    transform: translateY(-1px) !important;
}

/* Wydarzenia: bez kiczu, bardziej spokojny plakat */
.tvm-card--event .tvm-card__content,
.tvm-card--patron .tvm-card__content {
    background: linear-gradient(180deg, rgba(4, 68, 77, .97), rgba(3, 36, 50, .98)) !important;
}
.tvm-card__event-icon {
    background: rgba(243, 200, 75, .92) !important;
    color: #08212c !important;
    box-shadow: 0 12px 26px rgba(0,0,0,.25) !important;
}

/* FOOTER: full width, lewa strona granat, zero czerwieni */
.tvm-footer {
    width: 100vw !important;
    max-width: none !important;
    margin-left: 50% !important;
    margin-right: 50% !important;
    transform: translateX(-50%) !important;
    padding: 34px max(20px, calc((100vw - 1180px) / 2)) !important;
    background: linear-gradient(90deg, #061722 0%, #061722 32%, #063d49 68%, #071823 100%) !important;
    border-top: 1px solid rgba(121,226,235,.18) !important;
    color: #fff !important;
}
.tvm-footer__inner {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    background: rgba(255,255,255,.045) !important;
}

/* MOBILE: zakładki osobny pasek, karty zwarte, brak bieli */
@media (max-width: 1100px) {
    .tvm-hero__top {
        grid-template-columns: 1fr !important;
        width: min(100% - 28px, 760px) !important;
    }
    .tvm-layout,
    .tvm-content-filters,
    .tvm-event-filters,
    .tvm-seo-tags-strip__inner {
        width: min(100% - 28px, 760px) !important;
    }
    .tvm-tabs-bar {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

@media (max-width: 760px) {
    .tvm-hero { padding-top: 18px !important; }
    .tvm-hero__top {
        width: min(100% - 24px, 560px) !important;
        padding: 18px !important;
        border-radius: 22px !important;
    }
    .tvm-tabs-bar {
        margin-top: 16px !important;
        padding: 10px 12px !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .tvm-category-nav {
        width: 100% !important;
        padding-bottom: 2px !important;
    }
    .tvm-category-nav a,
    .tvm-tabs-bar button {
        font-size: 13px !important;
        padding: 10px 13px !important;
    }
    .tvm-live-box,
    .tvm-live-box.is-live,
    .tvm-live-box.is-offline {
        grid-template-columns: 78px 1fr !important;
        min-height: 112px !important;
        padding: 14px !important;
    }
    .tvm-live-box::before {
        width: 66px !important;
        height: 48px !important;
    }
    .tvm-live-box::after {
        left: 44px !important;
        top: 22px !important;
        width: 22px !important;
    }
    .tvm-grid,
    .tvm-cards-grid,
    .tvm-video-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .tvm-card,
    .tvm-video-hub article.tvm-card,
    .tvm-video-hub [data-hub-card] {
        border-radius: 20px !important;
    }
    .tvm-card__content {
        min-height: auto !important;
        padding: 15px !important;
    }
    .tvm-card__title { font-size: 18px !important; }
    .tvm-card__description { font-size: 13.5px !important; }
    .tvm-card:hover { transform: none !important; }
    .tvm-footer {
        padding: 24px 12px !important;
    }
}
