/* VinVic Page Composer — kolory wyłącznie z tokenów sklepu (--vv-pc-* / --vv-theme-*). */

body.vv-page-composer-active .page-header,
body.vv-page-composer-active .breadcrumbs-container,
body.vv-page-composer-active .page-thumbnail-wrap {
    display: none !important;
}

body.vv-page-composer-active .page-body-content {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.vv-pc-root {
    font-family: var(--vv-pc-font, var(--vv-ui-font, inherit));
    color: var(--vv-pc-text, var(--vv-theme-text, #0f172a));
    background: var(--vv-pc-page-bg, var(--vv-listing-page-bg, transparent));
    width: 100%;
}

.vv-pc-section {
    max-width: var(--vv-pc-content-max, min(1400px, calc(100% - 32px)));
    margin-left: auto;
    margin-right: auto;
    padding: 24px 16px;
    box-sizing: border-box;
    scroll-margin-top: 80px;
    transition: outline-color 0.2s ease, outline-offset 0.2s ease;
}

.vv-pc-section.vv-pc-section--focused {
    outline: 3px solid var(--vv-pc-accent, var(--vv-theme-accent, #2563eb));
    outline-offset: 6px;
    border-radius: 8px;
}

/* Kontakt */
.vv-pc-contact__grid {
    display: grid;
    grid-template-columns: repeat(var(--vv-pc-contact-cols-d, 2), minmax(0, 1fr));
    gap: 20px;
}

@media (max-width: 900px) {
    .vv-pc-contact__grid {
        grid-template-columns: repeat(var(--vv-pc-contact-cols-t, 1), minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .vv-pc-contact__grid {
        grid-template-columns: repeat(var(--vv-pc-contact-cols-m, 1), minmax(0, 1fr));
    }
}

.vv-pc-contact__card {
    background: var(--vv-pc-card-bg, var(--vv-theme-card-bg, #fff));
    border: 1px solid var(--vv-pc-border, var(--vv-theme-border, #e2e8f0));
    border-radius: var(--vv-pc-radius, var(--vv-theme-radius, 12px));
    padding: 22px 20px;
    box-shadow: 0 8px 28px color-mix(in srgb, var(--vv-pc-text, #0f172a) 6%, transparent);
}

.vv-pc-contact__card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--vv-pc-accent, var(--vv-theme-accent, #0b5c9e));
    margin: 0 0 18px;
    letter-spacing: 0.02em;
}

.vv-pc-contact__item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--vv-pc-border, #e2e8f0) 70%, transparent);
}

.vv-pc-contact__item:last-of-type {
    border-bottom: 0;
}

.vv-pc-contact__icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.vv-pc-contact__icon--placeholder {
    border-radius: 10px;
    background: var(--vv-pc-accent-soft, rgba(11, 92, 158, 0.08));
}

.vv-pc-contact__info h3 {
    margin: 0 0 6px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--vv-pc-text, inherit);
}

.vv-pc-contact__body {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--vv-pc-muted, var(--vv-theme-muted, #64748b));
}

.vv-pc-contact__body a {
    color: var(--vv-pc-accent, var(--vv-theme-accent, #0b5c9e));
    text-decoration: none;
    font-weight: 600;
}

.vv-pc-contact__body a:hover {
    color: var(--vv-pc-accent-hover, var(--vv-theme-accent-hover, #3d8fd6));
}

.vv-pc-contact__social {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed var(--vv-pc-border, #e2e8f0);
}

.vv-pc-contact__social-title {
    margin: 0 0 12px !important;
    font-size: 0.95rem !important;
    color: var(--vv-pc-accent, var(--vv-theme-accent, #0b5c9e)) !important;
}

.vv-pc-contact__social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vv-pc-contact__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--vv-pc-accent-soft, rgba(11, 92, 158, 0.08));
    transition: background 0.15s ease;
}

.vv-pc-contact__social-link:hover {
    background: var(--vv-pc-accent-mid, rgba(11, 92, 158, 0.16));
}

.vv-pc-contact__social-ico {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.vv-pc-contact__social-fallback {
    font-size: 10px;
    font-weight: 700;
    color: var(--vv-pc-accent, inherit);
    padding: 0 4px;
    text-align: center;
}

/* Siatka obrazków */
.vv-pc-image-grid--flush {
    max-width: none;
    padding: 0;
}

.vv-pc-image-grid__row {
    display: grid;
    grid-template-columns: repeat(var(--vv-pc-ig-cols-d, 2), minmax(0, 1fr));
    gap: var(--vv-pc-ig-gap, 0);
}

@media (max-width: 900px) {
    .vv-pc-image-grid__row {
        grid-template-columns: repeat(var(--vv-pc-ig-cols-t, 2), minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .vv-pc-image-grid__row {
        grid-template-columns: repeat(var(--vv-pc-ig-cols-m, 1), minmax(0, 1fr));
    }
}

.vv-pc-image-grid__cell {
    min-width: 0;
    line-height: 0;
}

.vv-pc-image-grid__link,
.vv-pc-image-grid__cell-inner {
    display: block;
    width: 100%;
}

.vv-pc-ig-frame {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--vv-pc-radius, 12px) * 0.5);
}

.vv-pc-image-grid--flush .vv-pc-ig-frame {
    border-radius: 0;
}

.vv-pc-ig-frame.vv-pc-ph--banner { aspect-ratio: 2 / 1; }
.vv-pc-ig-frame.vv-pc-ph--category { aspect-ratio: 1 / 1; }
.vv-pc-ig-frame.vv-pc-ph--tile { aspect-ratio: 4 / 3; }

.vv-pc-image-grid__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.vv-pc-image-grid--fit-contain .vv-pc-image-grid__img,
.vv-pc-image-grid--fit-contain .vv-pc-ph__img {
    object-fit: contain;
}

/* Przykładowe grafiki SVG (przed wgraniem własnych zdjęć) */
.vv-pc-ph {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--vv-pc-radius, 12px) * 0.5);
    line-height: 0;
}

.vv-pc-ph__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vv-pc-ph__badge {
    display: none;
}

.vv-pc-ph--banner { aspect-ratio: 2 / 1; }
.vv-pc-ph--category { aspect-ratio: 1 / 1; }
.vv-pc-ph--tile { aspect-ratio: 4 / 3; }
.vv-pc-ph--cta { aspect-ratio: 3 / 1; min-height: 220px; }
.vv-pc-ph--logo { aspect-ratio: 3 / 2; max-height: 96px; }
.vv-pc-ph--card { aspect-ratio: 16 / 10; }
.vv-pc-ph--woo { aspect-ratio: 4 / 3; }

.vv-pc-image-grid--flush .vv-pc-ph {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
}

.vv-pc-logo-grid__cell .vv-pc-ph {
    max-height: 72px;
}

.vv-pc-text-card__icon--demo .vv-pc-ph,
.vv-pc-contact__icon--demo .vv-pc-ph,
.vv-pc-heading-sep__icon--demo .vv-pc-ph {
    width: 72px;
    max-width: 100%;
}

.vv-pc-text-card__icon--demo,
.vv-pc-contact__icon--demo,
.vv-pc-heading-sep__icon--demo {
    display: block;
    flex-shrink: 0;
}

.vv-pc-woo-cat--demo,
.vv-pc-post-card--demo .vv-pc-post-card__link {
    pointer-events: none;
    cursor: default;
}

.vv-pc-post-card--demo .vv-pc-post-card__link {
    text-decoration: none;
    color: inherit;
}

/* Kategorie Woo */
.vv-pc-woo-cats__title,
.vv-pc-posts__title,
.vv-pc-accordion__title {
    margin: 0 0 18px;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--vv-pc-text, inherit);
}

.vv-pc-woo-cats__grid {
    display: grid;
    grid-template-columns: repeat(var(--vv-pc-wc-cols-d, 4), minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 900px) {
    .vv-pc-woo-cats__grid {
        grid-template-columns: repeat(var(--vv-pc-wc-cols-t, 3), minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .vv-pc-woo-cats__grid {
        grid-template-columns: repeat(var(--vv-pc-wc-cols-m, 2), minmax(0, 1fr));
    }
}

.vv-pc-woo-cat {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--vv-pc-card-bg, var(--vv-theme-card-bg, #fff));
    border: 1px solid var(--vv-pc-border, var(--vv-theme-border, #e2e8f0));
    border-radius: var(--vv-pc-radius, var(--vv-theme-radius, 12px));
    overflow: hidden;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.vv-pc-woo-cat:hover {
    box-shadow: 0 10px 28px color-mix(in srgb, var(--vv-pc-text, #0f172a) 10%, transparent);
    transform: translateY(-2px);
}

.vv-pc-woo-cats--banner .vv-pc-woo-cat {
    border: 0;
    border-radius: 0;
    background: transparent;
}

.vv-pc-woo-cat__media {
    line-height: 0;
}

.vv-pc-woo-cat__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.vv-pc-woo-cats--banner .vv-pc-woo-cat__img {
    aspect-ratio: auto;
}

.vv-pc-woo-cat__placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: color-mix(in srgb, var(--vv-pc-accent, #0b5c9e) 10%, var(--vv-pc-card-bg, #fff));
}

.vv-pc-woo-cat__body {
    padding: 12px 14px 14px;
}

.vv-pc-woo-cat__name {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--vv-pc-text, inherit);
}

.vv-pc-woo-cat__count {
    display: block;
    margin-top: 4px;
    font-size: 0.82rem;
    color: var(--vv-pc-muted, var(--vv-theme-muted, #64748b));
}

/* Wpisy grid */
.vv-pc-posts__grid {
    display: grid;
    grid-template-columns: repeat(var(--vv-pc-posts-cols-d, 4), minmax(0, 1fr));
    gap: 18px;
}

@media (max-width: 900px) {
    .vv-pc-posts__grid {
        grid-template-columns: repeat(var(--vv-pc-posts-cols-t, 2), minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .vv-pc-posts__grid {
        grid-template-columns: repeat(var(--vv-pc-posts-cols-m, 1), minmax(0, 1fr));
    }
}

.vv-pc-post-card {
    min-width: 0;
}

.vv-pc-post-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--vv-pc-card-bg, var(--vv-theme-card-bg, #fff));
    border: 1px solid var(--vv-pc-border, var(--vv-theme-border, #e2e8f0));
    border-radius: var(--vv-pc-radius, var(--vv-theme-radius, 12px));
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.15s ease;
}

.vv-pc-post-card__link:hover {
    box-shadow: 0 10px 28px color-mix(in srgb, var(--vv-pc-text, #0f172a) 10%, transparent);
}

.vv-pc-post-card__media {
    line-height: 0;
}

.vv-pc-post-card__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

.vv-pc-post-card__placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: color-mix(in srgb, var(--vv-pc-accent, #0b5c9e) 10%, var(--vv-pc-card-bg, #fff));
}

.vv-pc-post-card__body {
    padding: 14px 16px 16px;
}

.vv-pc-post-card__heading {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--vv-pc-text, inherit);
    line-height: 1.35;
}

.vv-pc-post-card__date {
    display: block;
    font-size: 0.82rem;
    color: var(--vv-pc-muted, var(--vv-theme-muted, #64748b));
}

.vv-pc-post-card__excerpt {
    margin: 8px 0 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--vv-pc-muted, var(--vv-theme-muted, #64748b));
}

.vv-pc-posts__footer {
    margin-top: 22px;
    text-align: center;
}

.vv-pc-posts__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--vv-pc-radius, var(--vv-theme-radius, 12px));
    background: var(--vv-pc-accent, var(--vv-theme-accent, #0b5c9e));
    color: var(--vv-pc-btn-text, #fff);
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s ease;
}

.vv-pc-posts__btn:hover {
    background: var(--vv-pc-accent-hover, var(--vv-theme-accent-hover, #3d8fd6));
    color: var(--vv-pc-btn-text, #fff);
}

/* Accordion */
.vv-pc-accordion__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vv-pc-accordion__item {
    border: 1px solid var(--vv-pc-border, var(--vv-theme-border, #e2e8f0));
    border-radius: var(--vv-pc-radius, var(--vv-theme-radius, 12px));
    background: var(--vv-pc-card-bg, var(--vv-theme-card-bg, #fff));
    overflow: hidden;
}

.vv-pc-accordion__summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 18px;
    font-weight: 700;
    color: var(--vv-pc-accent, var(--vv-theme-accent, #0b5c9e));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.vv-pc-accordion__summary::-webkit-details-marker {
    display: none;
}

.vv-pc-accordion__summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--vv-pc-muted, var(--vv-theme-muted, #64748b));
    flex-shrink: 0;
}

.vv-pc-accordion__item[open] .vv-pc-accordion__summary::after {
    content: '−';
}

.vv-pc-accordion__panel {
    padding: 0 18px 16px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--vv-pc-muted, var(--vv-theme-muted, #64748b));
}

.vv-pc-accordion__panel p:first-child {
    margin-top: 0;
}

/* Treść + przyciski */
.vv-pc-content-buttons--center {
    text-align: center;
}

.vv-pc-content-buttons--center .vv-pc-cb__actions {
    justify-content: center;
}

.vv-pc-cb__heading {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--vv-pc-text, inherit);
}

.vv-pc-cb__subheading {
    margin: 0 0 14px;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--vv-pc-accent, var(--vv-theme-accent, #0b5c9e));
}

.vv-pc-cb__body {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--vv-pc-muted, var(--vv-theme-muted, #64748b));
    max-width: 72ch;
}

.vv-pc-content-buttons--center .vv-pc-cb__body {
    margin-left: auto;
    margin-right: auto;
}

.vv-pc-cb__body a {
    color: var(--vv-pc-accent, var(--vv-theme-accent, #0b5c9e));
    font-weight: 600;
}

.vv-pc-cb__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.vv-pc-cb__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--vv-pc-radius, var(--vv-theme-radius, 12px));
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.vv-pc-cb__btn--primary {
    background: var(--vv-pc-btn-bg, var(--vv-theme-btn-bg, #ff7a18));
    color: var(--vv-pc-btn-text, #fff);
    border: 1px solid var(--vv-pc-btn-bg, var(--vv-theme-btn-bg, #ff7a18));
}

.vv-pc-cb__btn--primary:hover {
    filter: brightness(1.05);
    color: var(--vv-pc-btn-text, #fff);
}

.vv-pc-cb__btn--secondary {
    background: transparent;
    color: var(--vv-pc-accent, var(--vv-theme-accent, #0b5c9e));
    border: 1px solid var(--vv-pc-border, var(--vv-theme-border, #e2e8f0));
}

.vv-pc-cb__btn--secondary:hover {
    background: var(--vv-pc-accent-soft, rgba(11, 92, 158, 0.08));
}

/* CTA z tłem */
.vv-pc-cta-cover--flush {
    max-width: none;
    padding: 0;
}

.vv-pc-cta-cover--placeholder {
    position: relative;
    background-size: cover;
    background-position: center;
}

.vv-pc-cta-cover--placeholder > .vv-pc-ph {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    min-height: 100%;
    border: 0;
    border-radius: 0;
    z-index: 0;
}

.vv-pc-cta-cover--placeholder .vv-pc-cta-cover__inner {
    position: relative;
    z-index: 1;
}

.vv-pc-cta-cover {
    position: relative;
    min-height: var(--vv-pc-cta-min-h, 320px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--vv-pc-accent, #0b5c9e);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.vv-pc-cta-cover--overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--vv-pc-text, #0f172a) 55%, transparent);
    pointer-events: none;
}

.vv-pc-cta-cover__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 32px 24px;
    max-width: 720px;
}

.vv-pc-cta-cover__title {
    margin: 0 0 10px;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
}

.vv-pc-cta-cover__subtitle {
    margin: 0 0 20px;
    font-size: 1rem;
    line-height: 1.5;
    color: color-mix(in srgb, #fff 88%, transparent);
}

.vv-pc-cta-cover__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--vv-pc-radius, var(--vv-theme-radius, 12px));
    background: var(--vv-pc-btn-bg, var(--vv-theme-btn-bg, #ff7a18));
    color: var(--vv-pc-btn-text, #fff);
    font-weight: 700;
    text-decoration: none;
    transition: filter 0.15s ease;
}

.vv-pc-cta-cover__btn:hover {
    filter: brightness(1.06);
    color: var(--vv-pc-btn-text, #fff);
}

/* Nagłówek + separator */
.vv-pc-heading-sep--center {
    text-align: center;
}

.vv-pc-heading-sep--center .vv-pc-heading-sep__head {
    align-items: center;
}

.vv-pc-heading-sep__head {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vv-pc-heading-sep__icon {
    width: auto;
    max-height: 56px;
    object-fit: contain;
}

.vv-pc-heading-sep__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--vv-pc-text, inherit);
}

.vv-pc-heading-sep__subtitle {
    margin: 0;
    font-size: 0.92rem;
    color: var(--vv-pc-muted, var(--vv-theme-muted, #64748b));
}

.vv-pc-heading-sep__line {
    margin-top: 16px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--vv-pc-accent, var(--vv-theme-accent, #0b5c9e)) 20%,
        var(--vv-pc-accent, var(--vv-theme-accent, #0b5c9e)) 80%,
        transparent
    );
    opacity: 0.35;
}

/* Shortcode VinVic */
.vv-pc-shortcode--flush {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.vv-pc-shortcode__title {
    margin: 0 0 16px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--vv-pc-text, inherit);
}

.vv-pc-shortcode__output {
    min-width: 0;
}

.vv-pc-shortcode__empty {
    margin: 0;
    padding: 16px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--vv-pc-muted, var(--vv-theme-muted, #64748b));
    border: 1px dashed var(--vv-pc-border, #e2e8f0);
    border-radius: var(--vv-pc-radius, 12px);
    background: var(--vv-pc-card-bg, #fff);
}

/* Wideo YouTube */
.vv-pc-video__title {
    margin: 0 0 16px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--vv-pc-text, inherit);
}

.vv-pc-video__frame {
    position: relative;
    width: 100%;
    aspect-ratio: var(--vv-pc-video-ratio, 16 / 9);
    border-radius: var(--vv-pc-radius, var(--vv-theme-radius, 12px));
    overflow: hidden;
    background: color-mix(in srgb, var(--vv-pc-text, #0f172a) 8%, var(--vv-pc-card-bg, #fff));
    box-shadow: 0 12px 32px color-mix(in srgb, var(--vv-pc-text, #0f172a) 12%, transparent);
}

.vv-pc-video__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.vv-pc-video__placeholder {
    padding: 48px 24px;
    text-align: center;
    font-size: 0.92rem;
    color: var(--vv-pc-muted, var(--vv-theme-muted, #64748b));
    border: 1px dashed var(--vv-pc-border, #e2e8f0);
    border-radius: var(--vv-pc-radius, 12px);
    background: var(--vv-pc-card-bg, #fff);
}

/* Karty tekstowe */
.vv-pc-text-cards__title {
    margin: 0 0 18px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--vv-pc-text, inherit);
}

.vv-pc-text-cards__grid {
    display: grid;
    grid-template-columns: repeat(var(--vv-pc-tc-cols-d, 3), minmax(0, 1fr));
    gap: 18px;
}

@media (max-width: 900px) {
    .vv-pc-text-cards__grid {
        grid-template-columns: repeat(var(--vv-pc-tc-cols-t, 2), minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .vv-pc-text-cards__grid {
        grid-template-columns: repeat(var(--vv-pc-tc-cols-m, 1), minmax(0, 1fr));
    }
}

.vv-pc-text-card {
    background: var(--vv-pc-card-bg, var(--vv-theme-card-bg, #fff));
    border: 1px solid var(--vv-pc-border, var(--vv-theme-border, #e2e8f0));
    border-radius: var(--vv-pc-radius, var(--vv-theme-radius, 12px));
    padding: 20px 18px;
    height: 100%;
}

.vv-pc-text-card__icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    margin-bottom: 12px;
}

.vv-pc-text-card__icon--placeholder {
    border-radius: 10px;
    background: var(--vv-pc-accent-soft, rgba(11, 92, 158, 0.08));
}

.vv-pc-text-card__heading {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--vv-pc-accent, var(--vv-theme-accent, #0b5c9e));
}

.vv-pc-text-card__body {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--vv-pc-muted, var(--vv-theme-muted, #64748b));
}

/* Highlight + statystyki */
.vv-pc-stats-highlight {
    background: var(--vv-pc-card-bg, var(--vv-theme-card-bg, #fff));
    border: 1px solid var(--vv-pc-border, var(--vv-theme-border, #e2e8f0));
    border-radius: var(--vv-pc-radius, var(--vv-theme-radius, 12px));
    padding: 28px 24px;
    box-shadow: 0 10px 28px color-mix(in srgb, var(--vv-pc-text, #0f172a) 6%, transparent);
}

.vv-pc-stats-highlight__heading {
    margin: 0 0 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--vv-pc-text, inherit);
}

.vv-pc-stats-highlight__quote {
    margin: 0 0 12px;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--vv-pc-accent, var(--vv-theme-accent, #0b5c9e));
}

.vv-pc-stats-highlight__body {
    margin: 0 0 22px;
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--vv-pc-muted, var(--vv-theme-muted, #64748b));
}

.vv-pc-stats-highlight__grid {
    display: grid;
    grid-template-columns: repeat(var(--vv-pc-sh-cols-d, 4), minmax(0, 1fr));
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid color-mix(in srgb, var(--vv-pc-border, #e2e8f0) 80%, transparent);
}

@media (max-width: 900px) {
    .vv-pc-stats-highlight__grid {
        grid-template-columns: repeat(var(--vv-pc-sh-cols-t, 2), minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .vv-pc-stats-highlight__grid {
        grid-template-columns: repeat(var(--vv-pc-sh-cols-m, 2), minmax(0, 1fr));
    }
}

.vv-pc-stat {
    text-align: center;
    padding: 12px 8px;
    border-radius: calc(var(--vv-pc-radius, 12px) - 4px);
    background: var(--vv-pc-accent-soft, rgba(11, 92, 158, 0.08));
}

.vv-pc-stat__value {
    display: block;
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--vv-pc-accent, var(--vv-theme-accent, #0b5c9e));
}

.vv-pc-stat__label {
    display: block;
    margin-top: 6px;
    font-size: 0.82rem;
    color: var(--vv-pc-muted, var(--vv-theme-muted, #64748b));
}

/* Siatka logo */
.vv-pc-logo-grid__title {
    margin: 0 0 18px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--vv-pc-text, inherit);
    text-align: center;
}

.vv-pc-logo-grid__grid {
    display: grid;
    grid-template-columns: repeat(var(--vv-pc-lg-cols-d, 6), minmax(0, 1fr));
    gap: var(--vv-pc-lg-gap, 16px);
    align-items: stretch;
}

@media (max-width: 900px) {
    .vv-pc-logo-grid__grid {
        grid-template-columns: repeat(var(--vv-pc-lg-cols-t, 4), minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .vv-pc-logo-grid__grid {
        grid-template-columns: repeat(var(--vv-pc-lg-cols-m, 3), minmax(0, 1fr));
    }
}

.vv-pc-logo-grid__cell {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vv-pc-logo-grid--card .vv-pc-logo-grid__cell {
    background: var(--vv-pc-card-bg, var(--vv-theme-card-bg, #fff));
    border: 1px solid var(--vv-pc-border, var(--vv-theme-border, #e2e8f0));
    border-radius: var(--vv-pc-radius, var(--vv-theme-radius, 12px));
    padding: 14px 12px;
    min-height: 72px;
}

.vv-pc-logo-grid__link,
.vv-pc-logo-grid__cell-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
}

.vv-pc-logo-grid__img {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.vv-pc-logo-grid__fallback {
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    color: var(--vv-pc-muted, var(--vv-theme-muted, #64748b));
    line-height: 1.25;
    padding: 4px;
}
