main > section.info {
    background-color: var(--color-putki);
    padding: 2em 0;
    color: white;
    width: 100%;
}

main > section.bios > div.bio {
    display: grid;
    justify-content: left;
    text-align: left;

    grid-auto-columns: max-content;
    grid-auto-flow: column;
}

main > section.bios > div.bio > div.biotext {
    width: 50ch;
    margin: 0 2em;
}

main > section.bios > div.bio > div.biotext > p {
    font-style: oblique;
}

main > section.bios > div.bio > div.biotext > address {
    font-weight: bold;
    color: black;
    word-wrap: break-word;
}

main > section.bios > div.bio > div.biotext > address > a {
    color: black;
    text-decoration: none;
    white-space: nowrap;
}

main > section.bios > div.bio > div.biotext > h1 {
    text-transform: uppercase;
}

a.footer-button {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-style: italic;
    margin: 1em;
    padding: 0.5em;
    border: solid var(--color-vesi);
}

@media only screen and (max-width: 1024px) {
    main > section.bios > div.bio {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: left;
        flex-direction: column;

        margin: 1em;
    }

    main > section.bios > div.bio h1 {
        font-size: 12pt;
    }

    main > section.bios > div.bio > div.biotext {
        width: 100%;
        margin: 0;
    }

    main > section.bios > div.bio > img {
        width: 50%;
    }

    main > section.bios > div.bio > img.right {
        order: -1;
    }
}