/* ----------------------------------------------------------------------------------- */
/* layout-b.css */
/* ----------------------------------------------------------------------------------- */

a {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* ----------------------------------------------------------------------------------- */
/* layout-b.css header and navigation */
/* ----------------------------------------------------------------------------------- */
.header {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 350px;
    height: 100vh;
    padding-top: 50px;
    padding-left: 60px;
    box-sizing: border-box;
}

.site-name {
    font-size: 30px;
    font-weight: 400;
    padding-bottom: 10px;
}

ul.pf-navigation {
    font-size: 15px;
    flex: 1;
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.pf-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.pf-navigation ul li {
    margin: 0;
    line-height: 2em;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 10px;
}

/* ----------------------------------------------------------------------------------- */
/* layout-b.css footer */
/* ----------------------------------------------------------------------------------- */
.footer-left {
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: hidden;
    font-size: 15px;
    box-sizing: border-box;
}

.footer {
    display: none;
    padding-left: 60px;
    font-size: 15px;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
    align-items: center;
}

.site-links {
    flex: 1;
    box-sizing: border-box;
}

.footer-left ul.external-links {
    justify-content: flex-start;
    padding-left: 0;
}

/* ----------------------------------------------------------------------------------- */
/* layout-b.css body */
/* ----------------------------------------------------------------------------------- */
.body {
    padding-left: 370px;
    padding-right: 50px;
    padding-top: 50px;
    min-height: 75vh;
    scrollbar-gutter: stable;
}

.bodyDescription {
    padding-bottom: 30px;
}

/* ----------------------------------------------------------------------------------- */
/* layout-b.css gallery */
/* ----------------------------------------------------------------------------------- */
h3.gallery-title {
    font-size: 20px;
}

/* ----------------------------------------------------------------------------------- */
/* layout-b.css media queries */
/* ----------------------------------------------------------------------------------- */
@media screen and (max-width: 575px) {
    .header-content, .body, .footer, .site-name {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .header-content, .body, .footer, .site-name {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .header-content, .body, .footer, .site-name {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media screen and (max-width: 767px) {
    .header {
        position: static;
        height: auto;
        width: 100%;
        padding-left: 0;
    }
    
    .footer-left {
        display: none;
    }
    
    .footer {
        display: flex;
    }
}