.sitemap h1 {
    font-weight: 700;
    font-size: var(--h1-size);
    line-height: var(--h1-line-height);
    letter-spacing: 0;
}

.sitemap h2 {
    font-weight: 600;
    font-size: var(--p-l-size);
    line-height: 1.1875rem;
    letter-spacing: 0;
}

.sitemap .pageGeneric-content .block {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition-time);
    padding: 2rem 10%;
    margin-top: 2rem;
    text-align: center;
}
.sitemap .pageGeneric-content .block:first-child {
    margin-top: 0;
}
.sitemap .pageGeneric-content .block:nth-child(odd) {
    background-color: var(--white);
    color: var(--blue);
}
.sitemap .pageGeneric-content .block:nth-child(even) {
    background-color: var(--blue);
    color: var(--white);
}
.sitemap .pageGeneric-content .block a {
    display: block;
    font-weight: 400;
    font-size: 0.6875rem;
    line-height: 0.9375rem;
    letter-spacing: 0;
    text-decoration: underline;
}
.sitemap .pageGeneric-content .block a:hover {
    text-decoration: underline;
}
.sitemap .pageGeneric-content .block:nth-child(odd) a {
    color: var(--blue);
}
.sitemap .pageGeneric-content .block:nth-child(even) a {
    color: var(--white);
}
.sitemap .pageGeneric-content .block:last-of-type a {
    font-family: 'Brygada 1918';
    font-weight: 600;
    font-size: var(--p-l-size);
    line-height: var(--p-l-line-height);
    letter-spacing: 0;
    text-decoration: none;
}

@media screen and (min-width: 64rem) { /* 1024px */
    
    .sitemap h1 {
        font-size: var(--h1-size);
        line-height: var(--h1-size);
    }
    
    .sitemap h2 {
        font-weight: 700;
        font-size: var(--h3-size);
        line-height: var(--h3-line-height);
    }
    
    .sitemap .pageGeneric-content .block a {
        display: inline;
        font-size: var(--p-l-size);
        line-height: var(--p-l-line-height);
        text-decoration: none;
    }
    .sitemap .pageGeneric-content .block:last-of-type a {
        font-size: var(--p-l-size);
        line-height: var(--p-l-line-height);
    }
    .sitemap .pageGeneric-content .block a::after {
        content: " - ";
    }
    .sitemap .pageGeneric-content .block a:last-of-type::after {
        content: "";
    }
}