/* =========================================================
   Video Content Landing Page
   ========================================================= */

.tc-video-page {
    background: #082f3a;
    color: #ffffff;
    overflow: hidden;
}

.tc-video-container {
    width: min(100% - 40px, 1280px);
    margin: 0 auto;
}

.tc-video-narrow {
    max-width: 860px;
}

.tc-video-hero {
    padding: 92px 0 56px;
}

.tc-video-hero-box {
    position: relative;
    padding: 56px 64px;
    background: rgba(255, 255, 255, 0.045);
    border-radius: 10px;
    text-align: center;
}

.tc-video-hero-box::before,
.tc-video-hero-box::after {
    content: "";
    position: absolute;
    width: 82px;
    height: 28px;
    opacity: 0.16;
    background:
        linear-gradient(135deg, transparent 45%, #ffffff 46%, #ffffff 54%, transparent 55%) 0 0 / 18px 18px,
        linear-gradient(45deg, transparent 45%, #ffffff 46%, #ffffff 54%, transparent 55%) 0 0 / 18px 18px;
    pointer-events: none;
}

.tc-video-hero-box::before {
    left: 44px;
    top: -18px;
}

.tc-video-hero-box::after {
    right: 44px;
    bottom: -18px;
}

.tc-video-eyebrow {
    margin-bottom: 18px;
    color: #f4c857;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tc-video-hero h1 {
    max-width: 880px;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.tc-video-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.55;
    font-weight: 600;
}

.tc-video-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.tc-video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tc-video-btn:hover {
    transform: translateY(-2px);
}

.tc-video-btn-primary {
    background: #f4c857;
    color: #082f3a;
}

.tc-video-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

.tc-video-intro {
    padding: 54px 0 64px;
    text-align: center;
}

.tc-video-intro h2 {
    max-width: 760px;
    margin: 0 auto 22px;
    color: #ffffff;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.tc-video-intro p {
    margin: 0 auto 16px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.7;
    font-weight: 600;
}

.tc-video-intro p:last-child {
    margin-bottom: 0;
}

.tc-video-section {
    padding: 76px 0;
}

.tc-video-section-alt {
    background: rgba(255, 255, 255, 0.035);
}

.tc-video-section-head {
    display: grid;
    grid-template-columns: 72px minmax(0, 860px);
    gap: 28px;
    align-items: start;
    margin-bottom: 38px;
}

.tc-video-section-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #f4c857;
    color: #082f3a;
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
}

.tc-video-section h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(30px, 3.6vw, 50px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.tc-video-section-head p {
    max-width: 860px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 600;
}

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

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

.tc-video-card {
    overflow: hidden;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.055);
    transition: transform 0.2s ease, background 0.2s ease;
}

.tc-video-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.075);
}

.tc-video-thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 9 / 12;
    border: 0;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(244, 200, 87, 0.24), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.06);
}

.tc-video-thumb-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
    text-align: center;
}

.tc-video-play {
    position: absolute;
    left: 22px;
    bottom: 22px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f4c857;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.tc-video-play::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 16px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #082f3a;
}

.tc-video-card-content {
    padding: 20px 20px 22px;
}

.tc-video-card-client {
    margin-bottom: 8px;
    color: #f4c857;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 900;
}

.tc-video-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.tc-video-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
}

.tc-video-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
    gap: 28px;
    align-items: stretch;
    margin-bottom: 28px;
    padding: 28px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.055);
}

.tc-video-feature-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tc-video-feature-text span {
    margin-bottom: 14px;
    color: #f4c857;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.tc-video-feature h3 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.tc-video-feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 600;
}

.tc-video-feature-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(244, 200, 87, 0.20), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.62);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 800;
    text-align: center;
}

.tc-video-note {
    max-width: 900px;
    padding: 30px;
    margin-bottom: 28px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.055);
    border-left: 4px solid #f4c857;
}

.tc-video-note h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.tc-video-note p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 600;
}

.tc-video-note p:last-child {
    margin-bottom: 0;
}

.tc-video-note-small {
    color: rgba(255, 255, 255, 0.58) !important;
    font-size: 14px !important;
}

.tc-video-youtube-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(244, 200, 87, 0.16), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.62);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 800;
    text-align: center;
}

.tc-video-cta {
    padding: 76px 0 96px;
}

.tc-video-cta-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: center;
    padding: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.065);
}

.tc-video-cta h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(30px, 3.4vw, 48px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.tc-video-cta p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 600;
}

.tc-video-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.tc-video-phone {
    color: #f4c857;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
}

.tc-video-phone:hover {
    color: #ffffff;
}


/* Responsive */

@media (max-width: 1024px) {
    .tc-video-hero {
        padding-top: 72px;
    }

    .tc-video-hero-box {
        padding: 46px 34px;
    }

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

    .tc-video-feature {
        grid-template-columns: 1fr;
    }

    .tc-video-cta-box {
        grid-template-columns: 1fr;
    }

    .tc-video-cta-actions {
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .tc-video-container {
        width: min(100% - 28px, 1280px);
    }

    .tc-video-hero {
        padding: 110px 0 38px;
    }

    .tc-video-hero-box {
        padding: 36px 22px;
    }

    .tc-video-hero-box::before {
        left: 22px;
    }

    .tc-video-hero-box::after {
        right: 22px;
    }

    .tc-video-hero-actions {
        flex-direction: column;
    }

    .tc-video-btn {
        width: 100%;
    }

    .tc-video-intro {
        padding: 38px 0 48px;
        text-align: left;
    }

    .tc-video-section {
        padding: 54px 0;
    }

    .tc-video-section-head {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tc-video-section-kicker {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .tc-video-grid,
    .tc-video-grid-small {
        grid-template-columns: 1fr;
    }

    .tc-video-thumb {
        aspect-ratio: 9 / 13;
    }

    .tc-video-feature {
        padding: 20px;
    }

    .tc-video-feature-media {
        min-height: 320px;
    }

    .tc-video-note {
        padding: 22px;
    }

    .tc-video-youtube-placeholder {
        min-height: 300px;
    }

    .tc-video-cta {
        padding: 54px 0 72px;
    }

    .tc-video-cta-box {
        padding: 28px 22px;
    }
}

/* =========================================================
   Video Content - dynamiczne materiały z kokpitu
   ========================================================= */

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

.tc-video-thumb {
    aspect-ratio: 9 / 16;
    text-decoration: none;
}

.tc-video-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.tc-video-card:hover .tc-video-thumb-img {
    transform: scale(1.04);
}

.tc-video-feature-vertical {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: center;
}

.tc-video-feature-card-wrap {
    max-width: 420px;
    margin-left: auto;
    width: 100%;
}

.tc-video-card-featured {
    background: rgba(255, 255, 255, 0.08);
}

.tc-video-card-featured .tc-video-thumb {
    aspect-ratio: 1 / 1;
}

.tc-video-card-featured .tc-video-card-content {
    padding: 24px 24px 26px;
}

.tc-video-card-featured h3 {
    font-size: 25px;
}

.tc-video-empty {
    padding: 28px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

.tc-video-empty p {
    margin: 0;
}

@media (max-width: 1180px) {
    .tc-video-grid-four {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

    .tc-video-feature-vertical {
        grid-template-columns: 1fr;
    }

    .tc-video-feature-card-wrap {
        max-width: 420px;
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .tc-video-grid-four {
        grid-template-columns: 1fr;
    }

    .tc-video-feature-card-wrap {
        max-width: 100%;
    }
	
	.tc-video-card-featured .tc-video-thumb {
    aspect-ratio: 9 / 16;
}
	
}

.tc-video-youtube-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
}

.tc-video-youtube-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.tc-video-playlist-custom {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
    gap: 24px;
    align-items: start;
}

.tc-video-playlist-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tc-video-playlist-item {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    width: 100%;
    padding: 10px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.055);
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.tc-video-playlist-item:hover,
.tc-video-playlist-item.is-active {
    background: rgba(255, 255, 255, 0.105);
    transform: translateY(-2px);
}

.tc-video-playlist-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.08);
}

.tc-video-playlist-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tc-video-playlist-meta strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 900;
}

.tc-video-playlist-meta small {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

@media (max-width: 980px) {
    .tc-video-playlist-custom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .tc-video-playlist-item {
        grid-template-columns: 104px minmax(0, 1fr);
    }

    .tc-video-playlist-meta strong {
        font-size: 14px;
    }
}

/* =========================================================
   Video Content - lightbox
   ========================================================= */

body.tc-video-lightbox-open {
    overflow: hidden;
}

.tc-video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.tc-video-lightbox.is-open {
    display: flex;
}

.tc-video-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 18, 24, 0.86);
    backdrop-filter: blur(8px);
}

.tc-video-lightbox-dialog {
    position: relative;
    z-index: 2;
    width: min(100%, 980px);
    max-height: calc(100vh - 56px);
}

.tc-video-lightbox-close {
    position: absolute;
    right: -14px;
    top: -14px;
    z-index: 3;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #f4c857;
    color: #082f3a;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.tc-video-lightbox-inner {
    width: 100%;
}

.tc-video-lightbox-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    background: #000000;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.tc-video-lightbox-frame iframe,
.tc-video-lightbox-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.tc-video-lightbox-frame video {
    object-fit: contain;
    background: #000000;
}

.tc-video-lightbox-frame-vertical {
    width: min(100%, 420px);
    aspect-ratio: 9 / 16;
    margin: 0 auto;
}

.tc-video-lightbox-fallback {
    padding: 34px;
    border-radius: 12px;
    background: #123d49;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.tc-video-lightbox-fallback p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
}

.tc-video-lightbox-fallback a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    background: #f4c857;
    color: #082f3a;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 767px) {
    .tc-video-lightbox {
        padding: 18px;
    }

    .tc-video-lightbox-dialog {
        max-height: calc(100vh - 36px);
    }

    .tc-video-lightbox-close {
        right: -8px;
        top: -48px;
    }
}


/* =========================================================
   Video Content - poprawiona sekcja intro
   ========================================================= */

.tc-video-intro-enhanced {
    padding: 86px 0 82px;
    text-align: left;
    position: relative;
}

.tc-video-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
    gap: 46px;
    align-items: center;
}

.tc-video-intro-main {
    max-width: 820px;
}

.tc-video-intro-label {
    display: inline-flex;
    margin-bottom: 18px;
    color: #f4c857;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tc-video-intro-enhanced h2 {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: clamp(38px, 4.4vw, 68px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.055em;
}

.tc-video-intro-enhanced p {
    max-width: 780px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 20px;
    line-height: 1.65;
    font-weight: 700;
}

.tc-video-intro-enhanced p:last-child {
    margin-bottom: 0;
}

.tc-video-intro-points {
    display: grid;
    gap: 16px;
}

.tc-video-intro-point {
    position: relative;
    padding: 24px 24px 24px 78px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.055);
    transition: transform 0.2s ease, background 0.2s ease;
}

.tc-video-intro-point:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.078);
}

.tc-video-intro-point span {
    position: absolute;
    left: 22px;
    top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f4c857;
    color: #082f3a;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
}

.tc-video-intro-point h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.tc-video-intro-point p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 700;
}


/* =========================================================
   Video Content - CTA z obrazkiem 1:1
   ========================================================= */

.tc-video-cta-box-image {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    padding: 42px;
}

.tc-video-cta-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(244, 200, 87, 0.22), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.06);
}

.tc-video-cta-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tc-video-cta-media span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
    text-align: center;
}

.tc-video-cta-content {
    min-width: 0;
}

.tc-video-cta-box-image .tc-video-cta-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    margin-top: 28px;
}

.tc-video-cta-box-image .tc-video-phone {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    color: #f4c857;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}


/* Responsive */

@media (max-width: 1100px) {
    .tc-video-intro-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .tc-video-intro-points {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tc-video-intro-point {
        padding: 74px 22px 22px;
    }

    .tc-video-intro-point span {
        left: 22px;
        top: 22px;
    }

    .tc-video-cta-box-image {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 32px;
    }
}

@media (max-width: 820px) {
    .tc-video-intro-enhanced {
        padding: 62px 0 58px;
    }

    .tc-video-intro-points {
        grid-template-columns: 1fr;
    }

    .tc-video-intro-point {
        padding: 22px 22px 22px 74px;
    }

    .tc-video-intro-point span {
        left: 20px;
        top: 22px;
    }

    .tc-video-cta-box-image {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 26px;
    }

    .tc-video-cta-media {
        max-width: 420px;
    }

    .tc-video-cta-box-image .tc-video-cta-actions {
        flex-direction: row;
        align-items: center;
        gap: 18px;
        flex-wrap: wrap;
    }
}

@media (max-width: 560px) {
    .tc-video-intro-enhanced h2 {
        font-size: 38px;
    }

    .tc-video-intro-enhanced p {
        font-size: 17px;
    }

    .tc-video-cta-media {
        max-width: 100%;
    }

    .tc-video-cta-box-image .tc-video-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .tc-video-cta-box-image .tc-video-phone {
        justify-content: center;
        font-size: 26px;
    }
}

/* Mobile - niższe kafle video */
@media (max-width: 767px) {
    .tc-video-card .tc-video-thumb {
        aspect-ratio: 9 / 13;
    }

    .tc-video-card-featured .tc-video-thumb {
        aspect-ratio: 9 / 13;
    }
}

@media (max-width: 480px) {
    .tc-video-card .tc-video-thumb {
        aspect-ratio: 9 / 12.5;
    }

    .tc-video-card-featured .tc-video-thumb {
        aspect-ratio: 9 / 12.5;
    }
}

.tc-video-thumb-video.is-generated-hidden {
    opacity: 0;
    visibility: hidden;
}

.tc-video-thumb-img-generated {
    z-index: 1;
}

.tc-video-thumb-placeholder-loading {
    z-index: 0;
}