/* =========================================================================
   VERTIBOOK — nowy layout (instancja hurtap)
   Wszystko scopowane pod .vb aby nie kolidowac z Bootstrapem / style.css.
   Bazuje na mockupie Vertibook-strona-glowna.html.
   ========================================================================= */

.vb {
    background: #fff;
    --vb-navy: #002F6C;
    --vb-navy-2: #003273;
    --vb-blue: #005BBB;
    --vb-red: #E3000F;
    --vb-red-dark: #b9000c;
    --vb-ink: #1f2937;
    --vb-muted: #6b7280;
    --vb-line: #f0f1f3;
    --vb-bg-soft: #f9fafb;

    font-family: 'Open Sans', 'Roboto', ui-sans-serif, system-ui, sans-serif;
    color: #333;
    -webkit-font-smoothing: antialiased;
}

/* Sticky header fix: style.css ustawia body { overflow-x: hidden }, co wylacza
   position:sticky u potomkow. overflow-x: clip daje ten sam efekt (ucina poziomy
   scroll) ale NIE psuje sticky. Arkusz ladowany tylko na hurtap. */
body { overflow-x: clip !important; }

.vb *, .vb *::before, .vb *::after { box-sizing: border-box; }
.vb a { text-decoration: none; color: inherit; }
.vb ul { list-style: none; margin: 0; padding: 0; }
.vb img { max-width: 100%; height: auto; display: block; }

.vb-container { max-width: 1600px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .vb-container { padding: 0 2rem; } }
@media (min-width: 1280px) { .vb-container { padding: 0 3rem; } }

/* Page shells used by legacy Blade/Vue controls. Padding mirrors .vb-container from the mockup. */
.vb .widthPage.vb-page-shell {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    overflow: visible;
}
@media (min-width: 768px) {
    .vb .widthPage.vb-page-shell { padding-left: 2rem !important; padding-right: 2rem !important; }
}
@media (min-width: 1280px) {
    .vb .widthPage.vb-page-shell { padding-left: 3rem !important; padding-right: 3rem !important; }
}
.vb .vb-control-shell { width: 100%; }
.vb .vb-control-shell > .col-md-12 { padding-left: 0; padding-right: 0; }
.vb .vb-control-shell > .k2container.t2container {
    display: block;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}
.vb .vb-control-shell > auth-login {
    display: block;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Jednolite tlo strony - Vuetify (.v-application) podklada szare tlo pod sekcje,
   przez co pod banerem widac zmiane koloru. Na hurtap calosc ma byc biala. */
.vb .v-application, .vb .v-application--wrap { background: #fff !important; }

/* ---------------------------------------------------------------- Header */
.vb-header {
    position: sticky; top: 0; z-index: 1000; background: #fff;
    border-bottom: 1px solid var(--vb-line);
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.vb-header-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.vb-logo { display: flex; align-items: center; flex-shrink: 0; }
.vb-logo img { height: 40px; width: auto; }

.vb-nav { display: none; align-items: center; gap: .5rem; }
.vb-nav-links { display: flex; align-items: center; gap: .15rem; }
.vb-nav-item { position: relative; }
.vb-nav-link {
    display: flex; align-items: center; gap: .25rem;
    font-size: .92rem; font-weight: 400; color: var(--vb-ink);
    text-transform: uppercase; letter-spacing: .025em;
    padding: .625rem .75rem; border-radius: 0; white-space: nowrap;
    transition: background-color .2s, color .2s; cursor: pointer;
}
.vb-nav-link:hover { background: var(--vb-bg-soft); color: var(--vb-blue); }
.vb-nav-link .vb-caret { font-size: .6rem; opacity: .6; margin-top: 1px; }

.vb-dropdown {
    position: absolute; top: 100%; left: 0; min-width: 250px; background: #fff;
    border: 1px solid var(--vb-line); border-radius: 0;
    box-shadow: 0 12px 22px -8px rgba(0,0,0,.18); padding: .4rem 0;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all .2s; z-index: 1001;
}
.vb-dropdown.vb-dropdown-right { left: auto; right: 0; }
.vb-nav-item:hover .vb-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.vb-dropdown-link {
    display: block; padding: .55rem 1.2rem; font-size: .85rem; font-weight: 400;
    text-transform: uppercase;
    color: #374151; border-left: 2px solid transparent; transition: all .2s; white-space: nowrap;
}
.vb-dropdown-link:hover { background: var(--vb-bg-soft); color: var(--vb-blue); padding-left: 1.45rem; border-left-color: var(--vb-red); }
.vb-dropdown-sep { border-top: 1px solid var(--vb-line); margin-top: .35rem; padding-top: .35rem; }

.vb-actions { display: flex; align-items: center; gap: .6rem; padding-left: .75rem; border-left: 1px solid #e5e7eb; }
.vb-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
    padding: .625rem 1.5rem; border-radius: 9999px; font-weight: 700; font-size: .8125rem;
    text-transform: uppercase; letter-spacing: .025em; white-space: nowrap;
    transition: all .2s; cursor: pointer; border: none;
}
/* !important: globalne style hurtap (style.css / #page a) nadpisywaly kolor czcionki
   na granatowy w stanie bez hovera - tekst zlewal sie z czerwonym tlem */
.vb-btn-red { background: var(--vb-red); color: #fff !important; }
.vb-btn-red:hover { background: var(--vb-red-dark); color: #fff !important; transform: translateY(-1px); }
.vb-btn-navy { background: var(--vb-navy); color: #fff !important; }
.vb-btn-navy:hover { background: var(--vb-blue); color: #fff !important; }
.vb-btn-ghost { background: transparent; color: var(--vb-navy) !important; border: 2px solid var(--vb-line); }
.vb-btn-ghost:hover { border-color: var(--vb-blue); color: var(--vb-blue) !important; }
.vb-register-btn { padding: .78rem 1.85rem; font-size: .86rem; }
@media (max-width: 1023px) { .vb-register-btn { padding: .7rem 1.35rem; font-size: .8rem; } }

/* Mobile menu */
.vb-burger { display: inline-flex; flex-direction: column; gap: 5px; padding: .6rem; background: none; border: none; cursor: pointer; transition: background-color .2s; }
.vb-burger:hover, .vb-burger:focus { background: var(--vb-bg-soft); outline: none; }
.vb-burger:hover span, .vb-burger:focus span { background: var(--vb-blue); }
.vb-burger span { width: 24px; height: 2px; background: var(--vb-ink); border-radius: 0; transition: .2s; }
.vb-mobile { display: none; position: absolute; top: 100%; left: 0; right: 0; border-top: 1px solid #e5e7eb;
    padding: 1rem; background: #fff; box-shadow: 0 12px 18px -8px rgba(0,0,0,.15); max-height: 80vh; overflow-y: auto; }
.vb-mobile.open { display: block; }
.vb-mobile-item { border-bottom: 1px solid var(--vb-bg-soft); }
.vb-mobile-link { display: flex; justify-content: space-between; align-items: center; width: 100%;
    padding: .85rem .4rem; font-weight: 400; font-size: .92rem; color: #374151; background: none; border: none; text-align: left; cursor: pointer;
    text-transform: uppercase; letter-spacing: .025em; transition: background-color .2s, color .2s, padding-left .2s; }
.vb-mobile-link:hover, .vb-mobile-link:focus { background: var(--vb-bg-soft); color: var(--vb-blue); padding-left: .75rem; outline: none; }
.vb-mobile-sub { display: none; flex-direction: column; padding-left: 1rem; margin: 0 0 .6rem .4rem; border-left: 2px solid var(--vb-line); }
.vb-mobile-item.open .vb-mobile-sub { display: flex; }
.vb-mobile-sub a { padding: .55rem .4rem; color: #4b5563; font-size: .85rem; font-weight: 400; text-transform: uppercase; transition: background-color .2s, color .2s, padding-left .2s; }
.vb-mobile-sub a:hover, .vb-mobile-sub a:focus { color: var(--vb-blue); background: var(--vb-bg-soft); padding-left: .75rem; outline: none; }
.vb-mobile-register { justify-content: center; font-weight: 700; }

@media (min-width: 1024px) {
    .vb-nav { display: flex; }
    .vb-burger { display: none; }
    .vb-mobile { display: none !important; }
}
/* Ciasny zakres 1024-1380: mniejsze odstepy, zeby przycisk rejestracji sie miescil */
@media (min-width: 1024px) and (max-width: 1380px) {
    .vb-nav-link { font-size: .82rem; padding: .5rem .5rem; }
    .vb-actions { gap: .5rem; padding-left: .6rem; }
    .vb-btn { padding: .55rem 1rem; font-size: .75rem; }
    .vb-register-btn { padding: .65rem 1.25rem; font-size: .78rem; }
    .vb-points { padding: 9px 13px; font-size: .84rem; }
}

/* ---------------------------------------------------------------- Hero / karuzela banerow (1:1 mockup) */
.vb-hero-wrap { padding: 2rem 0 .75rem; background: #fff; }
/* Klient prosi o brak widocznego cienia pod karuzela; bez border-radius */
.vb-hero { position: relative; width: 100%; min-height: 500px; overflow: hidden; background: var(--vb-navy); border-radius: 0; box-shadow: none; }
@media (min-width: 768px) { .vb-hero { min-height: 550px; } }
.vb-hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; pointer-events: none; }
.vb-hero-slide.active { opacity: 1; pointer-events: auto; }
.vb-hero-media { display: block; position: absolute; inset: 0; }
.vb-hero-img { width: 100%; height: 100% !important; object-fit: cover; opacity: .5; }
.vb-hero-img.mobile { display: none; }
@media (max-width: 970px) {
    .vb-hero-slide.has-mobile .vb-hero-img.desktop { display: none; }
    .vb-hero-slide.has-mobile .vb-hero-img.mobile { display: block; }
    .vb-hero-slide.has-mobile .vb-hero-img.mobile { object-fit: contain; }
}
.vb-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--vb-navy) 0%, rgba(0,47,108,.95) 50%, rgba(0,47,108,.9) 100%); }
@media (min-width: 1024px) {
    .vb-hero-overlay { background: linear-gradient(to right, var(--vb-navy) 0%, rgba(0,47,108,.95) 50%, rgba(0,47,108,.4) 100%); }
}
/* Baner graficzny (no_overlay): sam obrazek - pelne krycie, bez niebieskiej nakladki */
.vb-hero-slide.plain .vb-hero-img { opacity: 1; }
.vb-hero-slide.plain .vb-hero-overlay { display: none; }
.vb-hero.plain-compact-active, .vb-hero.mobile-fit-active { min-height: 0; }
.vb-hero.plain-compact-active .vb-hero-slide.plain.active .vb-hero-img { height: auto !important; object-fit: contain; }
.vb-hero.mobile-fit-active .vb-hero-slide.has-mobile.active .vb-hero-img.mobile { height: auto !important; object-fit: contain; }
.vb-hero.plain-compact-active .vb-hero-dots, .vb-hero.mobile-fit-active .vb-hero-dots { bottom: .9rem; }
.vb-hero-content { position: absolute; inset: 0; display: flex; align-items: center; padding: 3rem 1.5rem 6rem; z-index: 2; pointer-events: none; }
@media (min-width: 768px) { .vb-hero-content { padding: 3rem 3rem 6.5rem; } }
@media (min-width: 1024px) { .vb-hero-content { padding: 5rem 5rem 7rem; } }
.vb-hero-inner { max-width: 48rem; pointer-events: auto; }
.vb-hero-inner.vb-anim { animation: vbFloatUp 1s ease-out; }
@keyframes vbFloatUp { from { opacity: 0; transform: translateY(5rem); } to { opacity: 1; transform: translateY(0); } }
.vb-hero-title { color: #fff; font-family: 'Roboto', sans-serif; font-size: 2.25rem; font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; filter: drop-shadow(0 4px 3px rgba(0,0,0,.07)); }
@media (min-width: 768px) { .vb-hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .vb-hero-title { font-size: 4.5rem; margin-bottom: 2rem; } }
.vb-hero-desc { color: #eff6ff; font-size: 1.125rem; font-weight: 300; line-height: 1.625; border-left: 4px solid var(--vb-red); padding-left: 1.5rem; margin-bottom: 2rem; max-width: 42rem; }
@media (min-width: 1024px) { .vb-hero-desc { font-size: 1.25rem; margin-bottom: 3rem; } }
.vb-hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.vb-hero-btn2 { color: #fff !important; border-color: rgba(255,255,255,.5); background: transparent; }
.vb-hero-btn2:hover { color: #fff !important; border-color: #fff; }
.vb-hero-controls { position: absolute; top: 50%; transform: translateY(-50%); left: 0; right: 0; z-index: 20; display: none; justify-content: space-between; padding: 0 1.5rem; pointer-events: none; }
@media (min-width: 768px) { .vb-hero-controls { display: flex; } }
.vb-hero-nav { width: 3rem; height: 3rem; border-radius: 9999px; background: rgba(255,255,255,.25); backdrop-filter: blur(4px); color: #fff !important; border: 1px solid rgba(255,255,255,.35); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.5rem; transition: background .3s; pointer-events: auto; }
.vb-hero-nav span { color: #fff !important; font-size: 2.25rem; font-family: Arial, sans-serif; line-height: 1; transform: translateY(-1px); }
.vb-hero-nav:hover { background: rgba(255,255,255,.5); }
.vb-hero-dots { position: absolute; bottom: 4.5rem; left: 0; right: 0; display: flex; justify-content: center; gap: .5rem; z-index: 20; }
@media (min-width: 1024px) { .vb-hero-dots { bottom: 4rem; } }
.vb-hero-dot { width: .625rem; height: .625rem; border-radius: 9999px; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: all .3s; padding: 0; }
.vb-hero-dot:hover { background: #fff; }
.vb-hero-dot.active { background: var(--vb-red); width: 2rem; }

/* ---------------------------------------------------------------- Sections */
.vb-section { padding: 3.5rem 0; }
.vb > #app > .vb-section:first-child { padding-top: 2.25rem; }
.vb-section.vb-soft { background: var(--vb-bg-soft); }
.vb-section-head { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 1px solid var(--vb-line); padding-bottom: 1rem; margin-bottom: 2.2rem; }
.vb-section-title { display: inline-block; position: relative; font-family: 'Roboto', sans-serif; font-size: 1.875rem; font-weight: 700; color: var(--vb-navy); padding-right: 0; }
.vb-section-title::after { content: ''; position: absolute; left: 50%; transform: translateX(-50%); bottom: -1rem; width: 72px; max-width: 70%; height: 4px; background: var(--vb-red); }
.vb-section-title.vb-center { display: inline-block; }
.vb-section-title.vb-center::after { left: 50%; transform: translateX(-50%); width: 72px; max-width: 70%; }
.vb-view-all { font-size: 1.2rem; font-weight: 600; color: var(--vb-blue); white-space: nowrap; margin-bottom: .25rem; transition: color .3s; }
.vb-view-all:hover { color: var(--vb-navy); }
.vb-section-center { text-align: center; margin-bottom: 2.5rem; }
.vb-section-sub { color: var(--vb-muted); margin-top: 1.6rem; font-size: 1.05rem; }
.vb-profile-lead { margin: -1rem 0 1.5rem; color: var(--vb-muted); }

.vb-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .vb-grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .vb-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vb-grid-3 { grid-template-columns: repeat(3, 1fr); } }
/* Aktualnie klient wybral trzy rowne kafle w wierszu. */
@media (min-width: 1024px) { .vb-grid-featured > *:first-child { grid-column: auto; } }

.vb-empty-state {
    background: #fff;
    border: 1px solid var(--vb-line);
    border-radius: .6rem;
    color: var(--vb-muted);
    padding: 1.25rem;
}
.vb-admin-table-shell { background: #fff; border: 1px solid var(--vb-line); overflow-x: auto; }
.vb-admin-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.vb-admin-table th { background: var(--vb-bg-soft); color: var(--vb-navy); font-size: .78rem; letter-spacing: .06em; text-align: left; text-transform: uppercase; }
.vb-admin-table th,
.vb-admin-table td { border-bottom: 1px solid var(--vb-line); padding: .85rem 1rem; vertical-align: middle; }
.vb-admin-table td span { display: block; color: var(--vb-muted); font-size: .78rem; margin-top: .2rem; }
.vb-admin-actions { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: flex-end; }
.vb-admin-actions form { margin: 0; }
.vb-admin-actions .vb-btn { padding: .55rem .95rem; font-size: .78rem; }
.vb-status-pill { display: inline-flex !important; align-items: center; width: fit-content; border-radius: 0; padding: .25rem .65rem; font-size: .75rem !important; font-weight: 700; margin-top: 0 !important; }
.vb-status-ok { background: #e1f5ee; color: #0f6e56 !important; }
.vb-status-warn { background: #fff7ed; color: #9a3412 !important; }
@media (max-width: 767px) {
    .vb-admin-actions { justify-content: flex-start; }
}
.vb-cert-list { display: grid; gap: .9rem; }
.vb-cert-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--vb-line);
    border-radius: .6rem;
    padding: 1rem 1.15rem;
}
.vb-cert-title {
    color: var(--vb-navy) !important;
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
}
.vb-cert-title:hover { color: var(--vb-blue) !important; }
.vb-cert-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem .85rem;
    margin-top: .45rem;
    color: var(--vb-muted);
    font-size: .84rem;
}
.vb-cert-meta i { color: var(--vb-blue); margin-right: .2rem; }
.vb-cert-action { flex-shrink: 0; }
.vb-cert-status {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    border: 1px solid #fed7aa;
    border-radius: 9999px;
    background: #fff7ed;
    color: #9a3412;
    font-size: .8rem;
    font-weight: 700;
    padding: .45rem .85rem;
}
@media (max-width: 760px) {
    .vb-cert-row { align-items: stretch; flex-direction: column; }
    .vb-cert-action .vb-btn { width: 100%; }
}

/* ---------------------------------------------------------------- Cards */
.vb-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--vb-line);
    border-radius: 0; overflow: hidden; transition: all .25s; position: relative; height: 100%; }
.vb-card:hover { transform: translateY(-3px); box-shadow: 0 18px 28px -12px rgba(0,0,0,.18); }
/* Proporcje jak w mockupie: karta o stalej wysokosci (560/600/640), obraz ~3/4, tresc ~1/4.
   :has(> .vb-card-imgwrap) wyklucza karty bez obrazka (np. profile prelegentow).
   Obejmuje tez sidebary podstron (details/news) - karty maja byc identyczne wszedzie. */
.vb-grid .vb-card:has(> .vb-card-imgwrap),
.vb ._14d25 .vb-card:has(> .vb-card-imgwrap),
.vb-details-grid aside .vb-card:has(> .vb-card-imgwrap) { height: 560px; }
@media (min-width: 768px) {
    .vb-grid .vb-card:has(> .vb-card-imgwrap),
    .vb ._14d25 .vb-card:has(> .vb-card-imgwrap),
    .vb-details-grid aside .vb-card:has(> .vb-card-imgwrap) { height: 600px; }
}
@media (min-width: 1024px) {
    .vb-grid .vb-card:has(> .vb-card-imgwrap),
    .vb ._14d25 .vb-card:has(> .vb-card-imgwrap),
    .vb-details-grid aside .vb-card:has(> .vb-card-imgwrap) { height: 640px; }
}
.vb-card-imgwrap { position: relative; width: 100%; height: 75%; min-height: 200px; overflow: hidden; background: #eef0f3; flex-shrink: 0; }
.vb-card-imgwrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.vb-card:hover .vb-card-imgwrap img { transform: scale(1.05); }
/* v-img (Vuetify) wewnatrz karty - lista szkolen w TutorialBrowser */
.vb-card-imgwrap .v-image { height: 100% !important; border-radius: 0 !important; }
.vb-card-imgwrap .v-image__image { transition: transform .4s; }
.vb-card:hover .vb-card-imgwrap .v-image__image { transform: scale(1.05); }
.vb-card-badge { position: absolute; top: .8rem; right: .8rem; display: inline-flex; align-items: center; gap: .35rem;
    background: #facc15; color: var(--vb-navy); font-size: .72rem; font-weight: 700; padding: .3rem .7rem; border-radius: 9999px; }
.vb-card-badge.vb-rec { background: #dc2626; color: #fff; }
.vb-rec-dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: vb-pulse 2s infinite; }
@keyframes vb-pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.vb-card-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.18); color: #fff; font-size: 3.4rem; transition: .2s; }
.vb-card:hover .vb-card-play { background: rgba(0,0,0,.08); }
.vb-card-bar { position: absolute; left: 0; bottom: 0; height: 4px; width: 100%; background: var(--vb-red); transform: scaleX(0); transform-origin: left; transition: transform .25s; z-index: 3; }
.vb-card:hover .vb-card-bar { transform: scaleX(1); }

.vb-card-body { padding: 1rem; display: flex; flex-direction: column; flex-grow: 1; overflow: hidden; }
.vb-card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: .5rem; gap: .5rem; flex-wrap: wrap; }
.vb-meta-items { display: flex; align-items: center; gap: .75rem; }
.vb-meta { display: inline-flex; align-items: center; gap: .375rem; font-size: .9rem; font-weight: 500; color: var(--vb-muted); }
.vb-meta i { color: var(--vb-blue); }
.vb-meta.vb-meta-red { color: var(--vb-red); font-weight: 700; }
.vb-meta.vb-meta-blue { color: var(--vb-blue); }
.vb-tag { background: #fef2f2; color: var(--vb-red); font-size: .625rem; font-weight: 700; padding: .125rem .375rem; border-radius: .25rem; text-transform: uppercase; }
.vb-card-title { color: var(--vb-navy); font-size: clamp(1rem, 1.35vw, 1.25rem); font-weight: 700; line-height: 1.42; margin-bottom: .65rem;
    min-height: calc(2 * 1.42em + 2px); padding-bottom: 2px;
    overflow-wrap: anywhere; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color .3s; }
.vb-card:hover .vb-card-title { color: var(--vb-blue); }
.vb-card-cat { display: inline-block; font-size: .8rem; color: var(--vb-muted); margin-bottom: .6rem; }
.vb-card-foot { border-top: 1px solid var(--vb-line); margin-top: auto; padding-top: .6rem; display: flex; justify-content: space-between; align-items: center; gap: .5rem; }
.vb-card-foot-right { justify-content: flex-end; }
.vb-lecturer { display: inline-flex; align-items: center; gap: .35rem; font-size: .9rem; color: var(--vb-muted); overflow: hidden; }
.vb-lecturer span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vb-card-link { display: inline-flex; align-items: center; gap: .25rem; color: var(--vb-red) !important; font-size: 1rem; font-weight: 700; white-space: nowrap; }
@media (max-width: 767px) { .vb-card-link { font-size: .9rem; } }
.vb-card:hover .vb-card-link { color: var(--vb-red-dark) !important; }
.vb-card-price { font-weight: 700; color: var(--vb-navy); }

/* News card variant */
.vb-news .vb-card-imgwrap { border-radius: 0; }
.vb-news-date { color: var(--vb-red); font-size: .9rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; margin-bottom: .375rem; }
@media (max-width: 767px) {
    .vb-card-title {
        line-height: 1.45;
        min-height: calc(2 * 1.45em + 3px);
        -webkit-line-clamp: 3;
    }
}

/* ---------------------------------------------------------------- Testimonials */
.vb-tests { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .vb-tests { grid-template-columns: repeat(3, 1fr); } }
.vb-test { background: var(--vb-bg-soft); border: 1px solid var(--vb-line); border-radius: 1rem; padding: 2rem; display: flex; flex-direction: column; }
.vb-test-stars { color: #facc15; margin-bottom: 1rem; letter-spacing: 2px; }
.vb-test-text { color: #374151; font-style: italic; line-height: 1.7; margin-bottom: 1.5rem; flex-grow: 1; }
.vb-test-user { display: flex; align-items: center; gap: 1rem; border-top: 1px solid #e5e7eb; padding-top: 1.2rem; }
.vb-test-avatar { width: 3rem; height: 3rem; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.vb-test-name { font-weight: 700; color: var(--vb-navy); }
.vb-test-role { font-size: .75rem; color: var(--vb-muted); text-transform: uppercase; letter-spacing: .03em; }

/* ---------------------------------------------------------------- Partners */
.vb-partners { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2.5rem 4rem; }
.vb-partner { filter: grayscale(100%); opacity: .65; transition: all .25s; max-height: 56px; }
.vb-partner:hover { filter: grayscale(0); opacity: 1; }
.vb-partner img { max-height: 56px; width: auto; }
.vb-partner-name { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--vb-ink); }

/* ---------------------------------------------------------------- Newsletter */
.vb-newsletter { background: var(--vb-navy); padding: 4rem 0; position: relative; overflow: hidden; }
.vb-newsletter .vb-container { position: relative; z-index: 2; text-align: center; max-width: 720px; }
.vb-nl-ic { width: 4rem; height: 4rem; margin: 0 auto 1.5rem; border-radius: 1rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.8rem; }
.vb-nl-title { font-family: 'Roboto', sans-serif; font-size: 1.9rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.vb-nl-desc { color: #e0e7ff; font-size: 1.05rem; margin-bottom: 2rem; }
.vb-nl-form { display: flex; flex-direction: column; gap: .75rem; max-width: 520px; margin: 0 auto; }
.vb-nl-form input[type=email] { flex-grow: 1; background: #fff; padding: .9rem 1.4rem; border-radius: 9999px; border: 2px solid transparent; color: #111; }
.vb-nl-form input[type=email]:focus { outline: none; border-color: var(--vb-blue); }
.vb-nl-terms { color: rgba(255,255,255,.6); font-size: .75rem; margin-top: 1.5rem; }
.vb-nl-terms a { color: #fff; text-decoration: underline; }
.vb-nl-choice { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; color: #e0e7ff; font-size: .85rem; }
.vb-nl-choice label { display: inline-flex; align-items: center; gap: .35rem; cursor: pointer; }
@media (min-width: 640px) { .vb-nl-form { flex-direction: row; } }
.vb-nl-glow { position: absolute; border-radius: 9999px; filter: blur(48px); opacity: .35; z-index: 1; }
.vb-nl-glow.b { width: 22rem; height: 22rem; background: var(--vb-blue); top: -6rem; right: -4rem; }
.vb-nl-glow.r { width: 26rem; height: 26rem; background: var(--vb-red); bottom: -8rem; left: -6rem; opacity: .2; }

/* ---------------------------------------------------------------- Footer */
.vb-footer { background: var(--vb-bg-soft); border-top: 1px solid var(--vb-line); padding: 3.5rem 0 2rem; }
.vb-footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .vb-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.vb-footer-brand img { height: 42px; margin-bottom: 1rem; }
.vb-footer-brand p { font-size: .85rem; color: var(--vb-muted); line-height: 1.7; max-width: 320px; }
.vb-footer-title { font-weight: 700; color: var(--vb-navy); font-size: .9rem; margin-bottom: 1rem; letter-spacing: .06em; text-transform: uppercase; padding-left: 0; text-align: left; }
.vb-footer-list { display: flex; flex-direction: column; gap: .7rem; margin: 0; padding-left: 0; list-style: none; text-align: left; }
.vb-footer-list a { font-size: .78rem; color: #4b5563; font-weight: 600; text-transform: uppercase; letter-spacing: .045em; transition: color .2s; }
.vb-footer-list a:hover { color: var(--vb-red); }
.vb-footer-brand p { text-transform: uppercase; font-size: .78rem; font-weight: 600; letter-spacing: .035em; }
.vb-footer-bottom { border-top: 1px solid #e5e7eb; margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--vb-muted); }
.vb-footer-bottom img { height: 26px; display: inline-block; }
@media (max-width: 767px) {
    .vb-footer-title { font-size: .85rem; }
    .vb-footer-list a, .vb-footer-brand p, .vb-footer-bottom { font-size: .72rem; }
}

/* utils */
.vb-hide-mobile { display: none; }
@media (min-width: 640px) { .vb-hide-mobile { display: block; } }
.vb-mt-2 { margin-top: 2rem; }
.vb-center { text-align: center; }

/* ---------------------------------------------------------------- Kalendarz (panel boczny) */
.vb-cal-tab { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 1201;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    background: var(--vb-red); color: #fff; border: none; cursor: pointer;
    padding: 14px 9px; border-radius: 8px 0 0 8px; box-shadow: -2px 2px 10px rgba(0,0,0,.18);
    transition: right .3s ease; }
.vb-cal-tab:hover { background: var(--vb-red-dark); }
.vb-cal-tab span { writing-mode: vertical-rl; transform: rotate(180deg); font-weight: 700; font-size: .88rem; letter-spacing: .12em; text-transform: uppercase; color: #fff !important; }
.vb-cal-tab i { font-size: 1.2rem; color: #fff !important; }
.vb-cal-panel { position: fixed; right: 0; top: 0; height: 100vh; width: 340px; max-width: 90vw;
    background: #fff; box-shadow: -8px 0 24px rgba(0,0,0,.18); transform: translateX(100%);
    transition: transform .3s ease; display: flex; flex-direction: column; z-index: 1202; }
.vb-cal.open .vb-cal-panel { transform: translateX(0); }
.vb-cal.open .vb-cal-tab { right: 340px; }
.vb-cal-head { display: flex; align-items: center; justify-content: space-between; background: var(--vb-navy); color: #fff; padding: 16px; font-weight: 700; flex-shrink: 0; }
.vb-cal-close { background: none; border: none; color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; }
.vb-cal-body { overflow-y: auto; flex-grow: 1; }

/* Mini-kalendarz w panelu bocznym */
.vb-cal-month { padding: 12px 16px; border-bottom: 1px solid var(--vb-line); flex-shrink: 0; background: var(--vb-bg-soft); }
.vb-cm-head { display: flex; justify-content: space-between; align-items: center; font-weight: 700; color: var(--vb-navy); margin-bottom: 8px; font-size: .85rem; text-transform: uppercase; }
.vb-cm-head button { background: #fff; border: 1px solid var(--vb-line); border-radius: 0; width: 26px; height: 26px; cursor: pointer; font-size: 1.1rem; line-height: 1; color: var(--vb-navy); padding: 0; }
.vb-cm-head button:hover { border-color: var(--vb-blue); color: var(--vb-blue); }
.vb-cm-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.vb-cm-dow { font-size: .85rem; text-transform: uppercase; color: var(--vb-muted); text-align: center; padding: 2px 0; font-weight: 700; }
.vb-cm-day { border: none; background: transparent; font-size: .85rem; color: #b6bcc6; height: 30px; border-radius: 0; cursor: default; padding: 0; text-transform: uppercase; }
.vb-cm-day.empty-ok { color: var(--vb-muted); cursor: pointer; }
.vb-cm-day.empty-ok:hover { background: var(--vb-bg-soft); color: var(--vb-navy); }
.vb-cm-day.has-ev { background: #e6f1fb; color: var(--vb-navy); font-weight: 700; cursor: pointer; position: relative; }
.vb-cm-day.has-ev::after { content: ''; position: absolute; left: 50%; transform: translateX(-50%); bottom: 3px; width: 4px; height: 4px; border-radius: 50%; background: var(--vb-red); }
.vb-cm-day.has-ev:hover { background: #b5d4f4; }
.vb-cm-day.sel, .vb-cm-day.has-ev.sel, .vb-cm-day.has-ev.sel:hover { background: var(--vb-red); color: #fff; }
.vb-cm-day.sel::after { background: #fff; }
.vb-cm-clear { margin-top: 8px; width: 100%; background: transparent; border: none; color: var(--vb-blue); font-size: .75rem; font-weight: 700; cursor: pointer; padding: 4px; }
.vb-cm-clear:hover { color: var(--vb-navy); }
.vb-cal-item { display: block; padding: 14px 16px; border-bottom: 1px solid var(--vb-line); transition: background .2s; }
.vb-cal-item:hover { background: var(--vb-bg-soft); }
.vb-cal-date { display: block; font-size: .85rem; color: var(--vb-red); font-weight: 700; margin-bottom: 4px; text-transform: uppercase; }
.vb-cal-title { display: block; font-size: .85rem; color: var(--vb-navy); font-weight: 600; line-height: 1.35; text-transform: uppercase; }
.vb-cal-mode { display: inline-block; margin-top: 6px; font-size: .85rem; text-transform: uppercase; letter-spacing: .03em; background: var(--vb-bg-soft); color: var(--vb-muted); padding: 2px 8px; border-radius: 0; }
.vb-cal-empty { padding: 20px 16px; color: var(--vb-muted); font-size: .85rem; text-transform: uppercase; }
.vb-cal-all { display: block; text-align: center; padding: 14px; font-weight: 700; font-size: .85rem; color: var(--vb-blue); border-top: 1px solid var(--vb-line); flex-shrink: 0; text-transform: uppercase; }
.vb-cal-all:hover { color: var(--vb-navy); background: var(--vb-bg-soft); }
@media (max-width: 380px) { .vb-cal.open .vb-cal-tab { right: 90vw; } }

/* ---------------------------------------------------------------- Podstrony: szczegoly szkolenia / artykul */
.vb-details-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
@media (min-width: 1024px) { .vb-details-grid { grid-template-columns: minmax(0, 2.2fr) minmax(280px, 1fr); } }
/* Sidebar: karty identyczne jak na stronie glownej (uwaga klienta) -
   stala wysokosc nadaje wspolny selektor :has() w sekcji Cards */
.vb-details-card { background: #fff; border: 1px solid var(--vb-line); border-radius: 0; overflow: hidden; box-shadow: none; }
.vb-details-media {
    position: relative;
    width: 100%;
    min-height: 240px;
    background: #eef0f3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1.25rem;
}
.vb-details-media img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
}
@media (max-width: 767px) {
    .vb-details-media { min-height: 180px; padding: .75rem; }
    .vb-details-media img { max-height: 380px; }
}
.vb-details-info { padding: 1.5rem; }
@media (min-width: 768px) { .vb-details-info { padding: 2rem; } }
.vb-details-title { font-family: 'Roboto', sans-serif; color: var(--vb-navy); font-size: 1.6rem; font-weight: 700; line-height: 1.25; margin: 0 0 1.25rem; }
@media (min-width: 768px) { .vb-details-title { font-size: 2rem; } }
.vb-details-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.25rem; }
.vb-pill { display: inline-flex; align-items: center; gap: .35rem; border-radius: 9999px; padding: .3rem .8rem; font-size: .8125rem; font-weight: 700; }
.vb-pill-green { background: #e1f5ee; color: #0f6e56; }
.vb-pill-red { background: #fcebeb; color: #a32d2d; }
.vb-pill-amber { background: #faeeda; color: #854f0b; }
.vb-pill-blue { background: #e6f1fb; color: #185fa5; }
.vb-details-row { display: flex; align-items: center; gap: .5rem; color: #374151; font-size: .95rem; padding: .3rem 0; }
.vb-details-row i { color: var(--vb-blue); }
.vb-details-join { margin-top: 1.25rem; border-top: 1px solid var(--vb-line); padding-top: 1.25rem; }
.vb-details-cta { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1rem; }
.vb-alert-warn { background: #faeeda; color: #854f0b; border: 1px solid #fac775; border-radius: 0; padding: .9rem 1.1rem; font-size: .9rem; line-height: 1.5; }
.vb-details-desc { background: #fff; border: 1px solid var(--vb-line); border-radius: 0; padding: 1.5rem; margin-top: 2rem; }
@media (min-width: 768px) { .vb-details-desc { padding: 2rem; } }
.vb-rich { color: #374151; line-height: 1.7; overflow-wrap: break-word; }
.vb-rich img { width: auto !important; max-width: 100% !important; height: auto !important; }
.vb-rich p { margin-bottom: 1rem; }
.vb-rich h1, .vb-rich h2, .vb-rich h3 { color: var(--vb-navy); font-family: 'Roboto', sans-serif; margin: 1.5rem 0 .75rem; }
.vb-aside-title { font-family: 'Roboto', sans-serif; color: var(--vb-navy); font-size: 1.15rem; font-weight: 700; margin: 0 0 1rem; }
.vb-article { background: #fff; border: 1px solid var(--vb-line); border-radius: 0; padding: 1.5rem; min-width: 0; }
@media (min-width: 768px) { .vb-article { padding: 2.5rem; } }
.vb-article-title { font-family: 'Roboto', sans-serif; color: var(--vb-navy); font-size: 1.7rem; font-weight: 700; line-height: 1.25; margin: 0 0 .75rem; }
@media (min-width: 768px) { .vb-article-title { font-size: 2.1rem; } }
.vb-article-meta { display: flex; flex-wrap: wrap; gap: 1rem; color: var(--vb-muted); font-size: .85rem; border-bottom: 1px solid var(--vb-line); padding-bottom: 1.25rem; margin-bottom: 1.5rem; }
.vb-article-meta i { color: var(--vb-blue); }
.vb-article-img {
    background: #eef0f3;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
}
.vb-article-img img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: contain;
}
@media (max-width: 767px) {
    .vb-article-img { padding: .75rem; }
    .vb-article-img img { max-height: 420px; }
}
.vb-article-files { border-top: 1px solid var(--vb-line); margin-top: 2rem; padding-top: 1.5rem; }
.vb-file-link { display: flex; align-items: center; gap: .5rem; padding: .5rem 0; color: var(--vb-navy); font-weight: 600; font-size: .9rem; }
.vb-file-link:hover { color: var(--vb-blue); }
.vb-file-link span { color: var(--vb-muted); font-weight: 400; }

/* ---------------------------------------------------------------- Vuetify controls inside hurtap pages
   Non-invasive adapter: loaded only by layouts.hurtap, so other instances keep their Vuetify theme. */
.vb .vb-control-shell .v-card,
.vb ._14d25 .v-card {
    border-radius: 0 !important;
    border: 1px solid var(--vb-line) !important;
    box-shadow: none !important;
}
.vb .vb-control-shell > .v-card,
.vb .vb-control-shell auth-login > .v-card,
.vb .vb-control-shell auth-register > .v-card,
.vb .vb-control-shell .k2container > .v-card {
    overflow: hidden;
    box-shadow: none !important;
}
.vb .vb-control-shell auth-login .v-card .v-card,
.vb .vb-control-shell auth-register .v-card .v-card {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.vb .vb-control-shell .v-toolbar {
    background: var(--vb-navy) !important;
    border-bottom: 4px solid var(--vb-red);
    box-shadow: none !important;
}
.vb .vb-control-shell .v-toolbar__title {
    color: #fff !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}
.vb .v-input,
.vb .v-label,
.vb .v-select__selection,
.vb .v-text-field input {
    font-family: 'Open Sans', 'Roboto', ui-sans-serif, system-ui, sans-serif !important;
}
.vb .v-text-field--outlined > .v-input__control > .v-input__slot {
    background: #fff !important;
    border-radius: 0 !important;
    min-height: 54px;
}
.vb .v-text-field--outlined fieldset {
    border-color: #e5e7eb !important;
    border-width: 2px !important;
}
.vb .v-input--is-focused fieldset {
    border-color: var(--vb-blue) !important;
    box-shadow: 0 0 0 4px rgba(0,91,187,.1);
}
.vb .v-label { color: var(--vb-muted) !important; font-weight: 600; }
.vb .v-input--is-focused .v-label,
.vb .primary--text {
    color: var(--vb-blue) !important;
    caret-color: var(--vb-blue) !important;
}
.vb .v-text-field input { color: var(--vb-ink) !important; font-weight: 500; }
.vb .v-input__prepend-inner .v-icon,
.vb .v-input__append-inner .v-icon { color: var(--vb-blue) !important; }
.vb .vb-control-shell .v-btn:not(.v-btn--icon):not(.v-pagination__item):not(.v-pagination__navigation),
.vb ._14d25 > .row .v-btn:not(.v-btn--icon):not(.v-pagination__item):not(.v-pagination__navigation) {
    min-height: 44px;
    border-radius: 9999px !important;
    padding: .55rem 1.3rem !important;
    font-size: .8125rem !important;
    font-weight: 700 !important;
    letter-spacing: .025em !important;
    text-transform: uppercase;
    box-shadow: none !important;
}
.vb .vb-control-shell .v-btn:not([style*="background"]):not(.primary):not(.secondary):not(.error):not(.warning):not(.orange):not(.red):not(.yellow):not(.amber):not(.success):not(.green):not(.info):not(.blue):not(.v-btn--text):not(.v-btn--outlined):not(.v-btn--plain):not(.v-btn--icon):not(.v-pagination__item):not(.v-pagination__navigation),
.vb ._14d25 > .row .v-btn:not([style*="background"]):not(.primary):not(.secondary):not(.error):not(.warning):not(.orange):not(.red):not(.yellow):not(.amber):not(.success):not(.green):not(.info):not(.blue):not(.v-btn--text):not(.v-btn--outlined):not(.v-btn--plain):not(.v-btn--icon):not(.v-pagination__item):not(.v-pagination__navigation) {
    background: var(--vb-navy) !important;
    color: #fff !important;
}
.vb .vb-control-shell .v-btn.primary,
.vb ._14d25 > .row .v-btn.primary {
    background: var(--vb-navy) !important;
    color: #fff !important;
}
.vb .vb-control-shell .v-btn.secondary,
.vb ._14d25 > .row .v-btn.secondary,
.vb .vb-control-shell .v-btn.info,
.vb ._14d25 > .row .v-btn.info,
.vb .vb-control-shell .v-btn.blue,
.vb ._14d25 > .row .v-btn.blue {
    background: var(--vb-blue) !important;
    color: #fff !important;
}
.vb .vb-control-shell .v-btn.error,
.vb ._14d25 > .row .v-btn.error,
.vb .vb-control-shell .v-btn.accent,
.vb ._14d25 > .row .v-btn.accent,
.vb .vb-control-shell .v-btn.red,
.vb ._14d25 > .row .v-btn.red {
    background: var(--vb-red) !important;
    color: #fff !important;
}
.vb .vb-control-shell .v-btn.warning,
.vb ._14d25 > .row .v-btn.warning,
.vb .vb-control-shell .v-btn.orange,
.vb ._14d25 > .row .v-btn.orange,
.vb .vb-control-shell .v-btn.yellow,
.vb ._14d25 > .row .v-btn.yellow,
.vb .vb-control-shell .v-btn.amber,
.vb ._14d25 > .row .v-btn.amber {
    background: #f59e0b !important;
    color: #fff !important;
}
.vb .vb-control-shell .v-btn.success,
.vb ._14d25 > .row .v-btn.success,
.vb .vb-control-shell .v-btn.green,
.vb ._14d25 > .row .v-btn.green {
    background: #15803d !important;
    color: #fff !important;
}
.vb .vb-control-shell .v-btn:hover,
.vb ._14d25 > .row .v-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px -12px rgba(0,0,0,.35) !important;
}
.vb .vb-control-shell .v-btn .v-icon,
.vb ._14d25 > .row .v-btn .v-icon {
    color: currentColor !important;
}
.vb .v-alert {
    border-radius: 0 !important;
    font-family: 'Open Sans', 'Roboto', ui-sans-serif, system-ui, sans-serif;
}
.vb .regType {
    align-items: center;
    border: 1px solid var(--vb-line) !important;
    border-radius: 0;
    margin: 1rem 0 !important;
    padding: 1rem .75rem;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.vb .regType:hover {
    border-color: #dfe3ea !important;
    box-shadow: 0 14px 24px -18px rgba(0,0,0,.28);
    transform: translateY(-1px);
}
.vb .regType h3 {
    color: var(--vb-navy);
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0 0 .35rem;
}
.vb .regType p { color: var(--vb-muted); margin-bottom: 0; }
.vb .regTypeIcon { text-align: center !important; }
.vb .regTypeIcon .v-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 0;
    background: #e6f1fb;
    color: var(--vb-blue) !important;
    font-size: 2.35rem !important;
}
.vb .regTypeIcon .mdi-account-heart { background: #fcebeb; color: var(--vb-red) !important; }
.vb .regTypeIcon .mdi-account-star { color: var(--vb-blue) !important; }
.vb .regTypeBtn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 12px !important;
}

/* ---------------------------------------------------------------- Listy Vue (TutorialBrowser / NewsBrowser / GuidelinesBrowser)
   Restyle klas fcrse_* tak, by boxy wygladaly jak karty ze strony glownej.
   Arkusz ladowany tylko na instancji hurtap = brak wplywu na inne instancje. */
.vb .fcrse_1, .vb .fcrse_12, .vb .fcrse_1b, .vb .fcrse_13 {
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--vb-line); border-bottom: 1px solid var(--vb-line);
    border-radius: 0; overflow: hidden; padding: 0;
    box-shadow: none; transition: all .25s; width: 100%; height: 560px;
}
@media (min-width: 768px) { .vb .fcrse_1, .vb .fcrse_12, .vb .fcrse_1b, .vb .fcrse_13 { height: 600px; } }
@media (min-width: 1024px) { .vb .fcrse_1, .vb .fcrse_12, .vb .fcrse_1b, .vb .fcrse_13 { height: 640px; } }
.vb .fcrse_1:hover, .vb .fcrse_12:hover, .vb .fcrse_1b:hover, .vb .fcrse_13:hover {
    transform: translateY(-3px); box-shadow: 0 18px 28px -12px rgba(0,0,0,.18);
}
.vb ._14d25 { width: 100%; }
@media (min-width: 992px) {
    .vb ._14d25 > .row > .col-lg-3,
    .vb .newsbrowser > .row > .col-lg-3 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}
.vb ._14d25 > .row > .col-lg-3,
.vb ._14d25 > .row > .col-lg-4,
.vb .newsbrowser > .row > .col-lg-3,
.vb .newsbrowser > .row > .col-lg-4 {
    display: flex;
    margin-bottom: 2rem;
}
/* Obraz ~3/4 wysokosci kafelka (jak w mockupie), tresc ~1/4 */
.vb .fcrse_img { height: 75%; min-height: 200px; overflow: hidden; background: #eef0f3; border-radius: 0; flex-shrink: 0; }
.vb .fcrse_img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform .4s; }
.vb .fcrse_1:hover .fcrse_img img, .vb .fcrse_12:hover .fcrse_img img, .vb .fcrse_1b:hover .fcrse_img img, .vb .fcrse_13:hover .fcrse_img img { transform: scale(1.05); }
.vb .fcrse_img .v-image { height: 100% !important; border-radius: 0 !important; }
.vb .fcrse_img .v-image__image { transition: transform .4s; }
.vb .fcrse_1:hover .fcrse_img .v-image__image,
.vb .fcrse_12:hover .fcrse_img .v-image__image,
.vb .fcrse_1b:hover .fcrse_img .v-image__image,
.vb .fcrse_13:hover .fcrse_img .v-image__image { transform: scale(1.05); }
.vb .fcrse_content { padding: 1rem; margin-bottom: 0; display: flex; flex-direction: column; flex-grow: 1; }
.vb .crse14s { color: var(--vb-navy); font-size: 1.15rem; font-weight: 700; line-height: 1.4; transition: color .3s;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.vb .crse14s:hover { color: var(--vb-blue) !important; text-decoration: none !important; }
.vb .crse-cate { color: var(--vb-muted) !important; font-size: .8rem; margin-top: .35rem; }
.vb .vdtodt { margin: 0 0 .45rem; }
.vb .vdt14 { color: var(--vb-muted); font-weight: 500; font-size: .78rem; }
.vb .vdt14 i,
.vb .vdtodt i { color: var(--vb-blue); margin-right: .25rem; }
.vb .badge_seller { border-radius: 9999px; box-shadow: none; padding: .3rem .7rem; font-size: .68rem; top: .8rem; right: .8rem; color: #fff !important; }
.vb .badge_seller:after { display: none; }
.vb .crse_reviews { border-radius: 9999px; font-size: .75rem; padding: .25rem .7rem; color: #fff !important; box-shadow: none; }
.vb .cr1fot { float: none; color: var(--vb-muted); font-size: .82rem; line-height: 1.45; margin: 0; }
.vb .auth1lnkprce { float: none; width: 100%; margin-top: auto; padding-top: .9rem; }
.vb .prce142 { color: var(--vb-navy); font-size: 1rem; font-weight: 700; }
.vb .btn_div {
    border-top: 1px solid var(--vb-line);
    margin-top: auto;
    padding: .65rem 1rem;
    display: flex;
    justify-content: flex-end;
}
.vb .vb-control-shell .btn_div .v-btn:not(.v-btn--icon):not(.v-pagination__item):not(.v-pagination__navigation),
.vb ._14d25 > .row .btn_div .v-btn:not(.v-btn--icon):not(.v-pagination__item):not(.v-pagination__navigation),
.vb .btn_div .v-btn {
    min-height: auto !important;
    height: auto !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--vb-red) !important;
    box-shadow: none !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}
.vb .vb-control-shell .btn_div .v-btn:hover,
.vb ._14d25 > .row .btn_div .v-btn:hover,
.vb .btn_div .v-btn:hover { color: var(--vb-red-dark) !important; transform: none; box-shadow: none !important; }
.vb .btn_div .v-btn::before { display: none; }
.vb .btn_div .v-btn .v-btn__content { color: inherit !important; }
.vb .btn_div .v-btn .v-icon { color: inherit !important; transition: transform .25s; }
.vb .fcrse_1:hover .btn_div .v-icon,
.vb .fcrse_12:hover .btn_div .v-icon,
.vb .fcrse_1b:hover .btn_div .v-icon,
.vb .fcrse_13:hover .btn_div .v-icon { transform: translateX(4px); }
.vb .v-data-table,
.vb .v-data-table__wrapper,
.vb .v-menu__content,
.vb .v-list,
.vb .v-picker,
.vb .v-dialog > .v-card {
    border-radius: 0 !important;
}
@media (max-width: 767px) {
    .vb .vb-control-shell .btn_div .v-btn:not(.v-btn--icon):not(.v-pagination__item):not(.v-pagination__navigation),
    .vb ._14d25 > .row .btn_div .v-btn:not(.v-btn--icon):not(.v-pagination__item):not(.v-pagination__navigation),
    .vb .btn_div .v-btn { font-size: .9rem !important; }
}
@media (max-width: 600px) {
    .vb .v-data-table > .v-data-table__wrapper > table > tbody > tr {
        border-radius: 0 !important;
    }
}
.vb .item_title { position: relative; font-family: 'Roboto', sans-serif; font-size: 1.875rem; font-weight: 700; color: var(--vb-navy); padding-bottom: 1rem; }
.vb .item_title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 80px; height: 4px; background: var(--vb-red); }
.vb .see150 { font-size: .975rem; font-weight: 600; color: var(--vb-blue) !important; }
.vb .see150:hover { color: var(--vb-navy) !important; }

/* ---------------------------------------------------------------- Marquee (opinie / partnerzy) - jak w mockupie */
.vb-marquee-wrap { position: relative; display: flex; overflow: hidden; padding: 1rem 0;
    -webkit-mask-image: linear-gradient(to left, transparent, black 4rem, black calc(100% - 4rem), transparent);
    mask-image: linear-gradient(to left, transparent, black 4rem, black calc(100% - 4rem), transparent); }
.vb-marquee { display: flex; gap: 2rem; flex-shrink: 0; animation: vbMarquee 40s linear infinite; }
.vb-marquee:hover { animation-play-state: paused; }
@keyframes vbMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.vb-marquee-item { flex: 0 0 320px; display: flex; }
@media (min-width: 768px) { .vb-marquee-item { flex: 0 0 400px; } }
.vb-marquee-item .vb-test { width: 100%; }
.vb-marquee.vb-marquee-partners { animation-duration: 80s; align-items: center; gap: 0; }
.vb-marquee-partners .vb-partner { flex: 0 0 auto; margin: 0 2.5rem; }
@media (min-width: 768px) { .vb-marquee-partners .vb-partner { margin: 0 4rem; } }

/* ---------------------------------------------------------------- Licznik punktow (gorny pasek) */
.vb-points { display: inline-flex; align-items: center; gap: 12px; background: var(--vb-bg-soft); border: 1px solid var(--vb-line); border-radius: 9999px; padding: 10px 16px; font-weight: 700; font-size: .92rem; color: var(--vb-navy); white-space: nowrap; }
.vb-points i { font-size: 1.08rem; }
.vb-points span { display: inline-flex; align-items: center; gap: 4px; }
.vb-points .vb-points-soft { color: var(--vb-blue); }
.vb-mobile-points { display: block; background: var(--vb-bg-soft); border-radius: 0; padding: 12px 14px; margin-bottom: 12px; font-weight: 700; font-size: .9rem; color: var(--vb-navy); text-transform: uppercase; letter-spacing: .025em; }
