/* Footer sub-menu: keep links on one line */
#sub-menu ul {
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

#sub-menu ul li {
    white-space: nowrap;
}

/* World map background for news section */
section.section-custom-map {
    background: url(../img/map.png) center 0 no-repeat;
    padding: 129px 0 0;
    margin: 0;
    border: 0;
    position: relative;
}

section.section-custom-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(244,244,244,0.6) 40%, rgba(240,240,240,0.85) 100%);
    z-index: 0;
}

section.section-custom-map > .container {
    position: relative;
    z-index: 1;
}

section.section.section-footer {
    margin-bottom: 0;
}

/* Remove footer top margin when news section is present */
#footer {
    margin-top: 0;
}

/* Page header title text shadow for readability on background images */
.page-header-background h1 {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.page-header-background .sub-title {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Header logo vertical centering */
#header .header-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

#header.sticky-active .header-logo {
    display: flex;
    align-items: center;
    height: 100%;
}
