.enrollment-card{
    display: flex;
    flex-direction: column;

    align-items: flex-start;
    justify-content: center;
    gap: 20px;

    padding: 35px;

    /* klucz: zawsze margines + ochrona na małych ekranach */
    margin: 30px auto;
    width: min(900px, calc(100% - 40px));

    border-radius: 24px;

    background: linear-gradient(135deg,#5865F2,#404EED);
    color: white;

    text-decoration: none;

    box-shadow: 0 20px 40px rgba(88,101,242,0.28);

    transition: transform 0.35s ease, box-shadow 0.35s ease;

    position: relative;
    overflow: hidden;
}

/* hover efekt */
.enrollment-card:hover{
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(88,101,242,0.4);
}

/* efekt glow */
.enrollment-glow{
    position: absolute;
    width: 400px;
    height: 400px;

    border-radius: 50%;
    background: rgba(255,255,255,0.12);

    top: -120px;
    right: -100px;

    filter: blur(10px);
    pointer-events: none;
}

/* content */
.enrollment-content{
    position: relative;
    z-index: 2;
}

/* badge */
.enrollment-badge{
    display: inline-block;

    background: white;
    color: #404EED;

    padding: 8px 16px;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;
}

/* nagłówek */
.enrollment-content h2{
    margin: 10px 0;
    font-size: 34px;
    line-height: 1.1;
}

/* opis */
.enrollment-content p{
    margin: 0;
    font-size: 17px;
    opacity: 0.92;
    line-height: 1.5;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 600px){
    .enrollment-card{
        padding: 22px;
        gap: 14px;
    }

    .enrollment-content h2{
        font-size: 26px;
    }

    .enrollment-content p{
        font-size: 15px;
    }
}
