/* calc_footer pages styling */

.footer {
    background: transparent;
    color: #222222;
    padding: 20px 0;
    font-size: 14px;
}

.footer p {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.footer a {
    color: #555555;
    text-decoration: none;
    white-space: nowrap;
}

.footer a:hover {
    text-decoration: underline;
}

/* DESKTOP: od 450px w poziomie */
@media (min-width: 450px) {
    .footer p {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .footer a {
        padding: 0 .75rem;
    }
}