/* ==============================
   Separator
   ============================== */

.t-sep { width: 100%; }

/* Linia */
.t-sep-line {
    border: none;
    border-top-style: solid;
}

/* Gradient */
.t-sep-gradient { width: 100%; }

/* Kropki */
.t-sep-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.t-sep-dots span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sep-color, #1a56a0);
    opacity: 0.6;
}
.t-sep-dots span:nth-child(2) {
    width: 12px;
    height: 12px;
    opacity: 1;
}

/* Fala */
.t-sep-wave {
    width: 100%;
    height: 30px;
}
.t-sep-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Label z liniami */
.t-sep-label {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.t-sep-label-line {
    flex: 1;
    height: var(--sep-w, 2px);
    background: var(--sep-color, #1a56a0);
    opacity: 0.25;
    border-radius: 2px;
}
.t-sep-label-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Gruba kreska (akcent) */
.t-sep-thick { /* style inline */ }
