/* =============================================================================
   Kurs 14 — Program Kursu
   ============================================================================= */

.kurs14-section {
    background: var(--kurs-surface-dim, #f2f4fa);
    padding: 6.4rem 2rem;
}

.kurs14-wrapper {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
}

/* Nagłówek */
.kurs14-eyebrow {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--kurs-accent, #626573);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 0.8rem;
}

.kurs14-section .kurs14-title {
    font-size: 2.8rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.03em !important;
    color: #1f1f1f !important;
    margin: 0 0 0.8rem !important;
}

.kurs14-desc {
    font-size: 1.6rem;
    color: #374151;
    line-height: 1.5;
    margin: 0;
}

/* Lista bloków */
.kurs14-lista {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.kurs14-item {
    background: #ffffff;
    border-radius: 1.6rem;
    padding: 2rem 2.4rem 2.4rem;
}

/* Nagłówek elementu */
.kurs14-item-header {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.6rem;
}

/* Meta (numer + daty) */
.kurs14-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--kurs-surface-light, #f9fafc);
    border-radius: 1rem;
    padding: 0.5rem 0.8rem;
    width: fit-content;
}

.kurs14-block-label {
    font-size: 1.3rem;
    font-weight: 500;
    color: #374151;
    line-height: 1;
}

.kurs14-sep {
    font-size: 1.3rem;
    color: #374151;
}

.kurs14-dates {
    font-size: 1.3rem;
    color: #374151;
}

/* Tytuł bloku */
.kurs14-item-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #050709;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin: 0;
}

/* Zawartość WYSIWYG */
.kurs14-content {
    font-size: 1.6rem;
    color: #050709;
    line-height: 1.6;
}

.kurs14-content p {
    margin: 0 0 1.2rem;
}

.kurs14-content p:last-child {
    margin-bottom: 0;
}

.kurs14-content ul,
.kurs14-content ol {
    margin: 0;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.kurs14-content li {
    font-size: 1.6rem;
    color: #050709;
    line-height: 1.6;
}

/* =============================================================================
   Responsive
   ============================================================================= */

@media (max-width: 768px) {
    .kurs14-section {
        padding: 4.8rem 1.6rem;
    }

    .kurs14-section .kurs14-title {
        font-size: 2.4rem !important;
    }

    .kurs14-item {
        padding: 1.6rem 2rem 2rem;
    }

    .kurs14-item-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .kurs14-section {
        padding: 4rem 1.2rem;
    }

    .kurs14-item-title {
        font-size: 1.5rem;
    }

    .kurs14-list-item {
        font-size: 1.5rem;
    }
}
