/* ============================================================
   Kurs 11 — Polecane Kursy (slider bez filtra, nawigacja po boku)
   ============================================================ */

.kurs11-section {
    background-color: var(--kurs-surface-dim);
    padding: 6.4rem 1.6rem;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
}

.kurs11-wrapper {
    width: 100%;
    max-width: 128rem;
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
}

/* Top row: header + nawigacja */
.kurs11-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2.4rem;
}

/* Header */
.kurs11-header {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 62.4rem;
}

.kurs11-header--align-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.kurs11-header--align-left {
    text-align: left;
}

.kurs11-eyebrow {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    color: #626573;
    margin: 0;
}

.kurs11-title {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.056rem;
    color: #1f1f1f;
    margin: 0;
}

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

/* Nav arrows (w rogu) */
.kurs11-nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    flex-shrink: 0;
}

.kurs11-arrow {
    width: 4.0rem;
    height: 4.0rem;
    border: none;
    background: transparent;
    color: #050709;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    padding: 0;
}

.kurs11-arrow:hover {
    opacity: 0.7;
}

/* Cards */
.kurs11-card {
    width: 100%;
    background-color: var(--kurs-surface-light, #ffffff);
    border-radius: 2.0rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.kurs11-card-img {
    width: 100%;
    aspect-ratio: 177 / 118;
    overflow: hidden;
    border-radius: 2.0rem;
    flex-shrink: 0;
}

.kurs11-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kurs11-card-img--placeholder {
    background-color: var(--kurs-surface-base, #f0f7fb);
}

.kurs11-card-body {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    padding: 0.8rem 0.8rem 1.6rem;
    flex: 1;
}

.kurs11-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
}

.kurs11-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    color: #050709;
    margin: 0;
}

.kurs11-card-date {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.5;
    color: #374151;
    margin: 0;
}

.kurs11-card-link {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.2;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s;
}

.kurs11-card-link:hover {
    color: #050709;
}

.kurs11-card-link svg {
    flex-shrink: 0;
}

/* Reset — neutralizacja globalnych styli motywu */
.kurs11-section .kurs11-title {
    font-size: 2.8rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.056rem !important;
    color: #1f1f1f !important;
    margin: 0 !important;
}

.kurs11-section .kurs11-arrow,
.kurs11-section .kurs11-arrow:hover,
.kurs11-section .kurs11-arrow:focus,
.kurs11-section .kurs11-arrow:active {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    color: #050709 !important;
}

.kurs11-section .kurs11-arrow:hover {
    opacity: 0.7 !important;
}

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

@media (max-width: 1280px) {
    .kurs11-title {
        font-size: 2.4rem;
    }
}

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

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

    .kurs11-wrapper {
        gap: 2.4rem;
    }

    .kurs11-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.0rem;
    }

    .kurs11-title {
        font-size: 2.2rem;
    }

    .kurs11-card {
        min-width: 0;
    }
}

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

    .kurs11-eyebrow {
        font-size: 1.4rem;
    }
}
