/* =========================================================
   bm/cta — banner wezwania do dzialania
   ---------------------------------------------------------
   Tlo zwykle z panelu stylu (.bm-sec--*). Gdy brak tla z panelu,
   sekcja dziedziczy domyslne tlo motywu — wtedy warto ustawic
   ciemne tlo/akcent w panelu "Styl sekcji".
   ========================================================= */

.bm-cta { text-align: center; }

.bm-cta__inner {
    max-width: 760px;
    margin: 0 auto;
}

.bm-cta .eyebrow { justify-content: center; }

.bm-cta__title {
    margin: 0 auto var(--sp-3);
    color: inherit;
}

.bm-cta__desc {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.6;
    margin: 0 auto var(--sp-4);
    max-width: 640px;
    color: color-mix(in srgb, currentColor 85%, transparent);
}
.bm-cta__desc p { margin: 0 0 var(--sp-2); }
.bm-cta__desc p:last-child { margin-bottom: 0; }

.bm-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-2);
    margin-bottom: var(--sp-3);
}

.bm-cta__tags {
    list-style: none;
    margin: var(--sp-2) 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-1) var(--sp-3);
}
.bm-cta__tag {
    font-family: var(--f-sans);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: color-mix(in srgb, currentColor 70%, transparent);
    position: relative;
}
.bm-cta__tag:not(:last-child)::after {
    content: "";
    position: absolute;
    right: calc(var(--sp-3) / -2);
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.5;
    transform: translateY(-50%);
}
