.bohater {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem var(--odstep);
}

.bohater-tresc {
    max-width: 700px;
}

.bohater-symbol {
    width: 160px;
    height: 160px;
    margin: 0 auto 2.5rem;
    animation: pojawienie 1.2s ease forwards;
    opacity: 0;
}

.bohater-tytul {
    font-size: 3.2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    animation: pojawienie 1.2s ease 0.2s forwards;
    opacity: 0;
}

.bohater-podtytul {
    font-family: var(--czcionka-tresc);
    font-size: 1.3rem;
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
    animation: pojawienie 1.2s ease 0.4s forwards;
    opacity: 0;
}

.bohater-opis {
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 550px;
    margin: 0 auto 2.5rem;
    animation: pojawienie 1.2s ease 0.6s forwards;
    opacity: 0;
}

.bohater-separator {
    width: 80px;
    height: 1px;
    background-color: var(--kolor-glowny);
    margin: 0 auto;
    animation: rozciagniecie 1s ease 0.8s forwards;
    transform: scaleX(0);
}

.dyscypliny {
    padding: 5rem 0;
    border-top: 1px solid var(--kolor-szary);
}

.dyscypliny-tytul {
    text-align: center;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 3rem;
}

.dyscypliny-siatka {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.dyscyplina-karta {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid var(--kolor-szary);
    transition: border-color 0.3s ease;
}

.dyscyplina-karta:hover {
    border-color: var(--kolor-glowny);
}

.dyscyplina-numer {
    font-family: var(--czcionka-naglowek);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #999;
    margin-bottom: 1rem;
}

.dyscyplina-nazwa {
    font-family: var(--czcionka-naglowek);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.dyscyplina-opis {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.wezwanie {
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid var(--kolor-szary);
}

.wezwanie-tekst {
    font-family: var(--czcionka-tresc);
    font-size: 1.4rem;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.wezwanie-link {
    font-family: var(--czcionka-naglowek);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-bottom: 1px solid var(--kolor-glowny);
    padding-bottom: 0.3rem;
    transition: opacity 0.3s ease;
}

.wezwanie-link:hover {
    opacity: 0.6;
}

@keyframes pojawienie {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes rozciagniecie {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@media (max-width: 768px) {
    .bohater-tytul {
        font-size: 2rem;
    }

    .bohater-symbol {
        width: 120px;
        height: 120px;
    }

    .dyscypliny-siatka {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
