/* Removes some default theme padding which is annoying. */
.wp-site-blocks > * + * {
    margin-block-start: 0px;
}

/* Special class, use this to add an a white border to an image. */
.image-border-white-4 {
	border-style: solid;
	border-color:white;
	border-width:4px;
}

/* Add white border to gallery images. */
.mgl-icon {
    border-color: white;
    border-width: 4px;
    border-style: solid;
}

/* Highlight the page they're currently on, in the navigation menu. */
.current-menu-item a {
text-decoration: underline;
text-decoration-color: #f5b125 !important;
}

/* Hide the "show info" button from the Lightbox, in the top right corner, since we're not sharing info anyway so the button is useless. */
.mwl__topbar__controls__control--fullscreen {
    display: none !important;
}

/* Fix the image cursor still being a magnifiying glass, even after zoom-in disabled for a Lightbox view. */
.mwl .mwl__slider .mwl__slider__image .mwl__slider__image__thumbnail img {
    cursor: unset;
}

/* Change opacity of Lightbox next/prev buttons to make them less distracting. Update: Nevermind, undid the change, too subtle. */
/* .mwl .mwl__navigation__previous, .mwl .mwl__navigation__next {
    opacity: .3;
}*/

/* Fix site tile position to be centered with tagline and menu. */
/* h1.wp-block-site-title {
    margin-top: -14px;
} */ /* Disabled for now because only needed when an underscore is set to denote it's a link, and we undid that. */

/* Make sure site title link is not underlined (even on hover) */
h1.wp-block-site-title a, h2 a, .wp-block-post-content p a {
    text-decoration: none !important;
}

/* Fix header to be centered once menu wraps */
@media (max-width: 827px) {
    .header-group {
        flex-direction: column;
    }
}

/* Set Page titles to have same color as Site Title via CSS, since FSE doesn't work. */
.wp-block-post-title {
    color:#f5b125;
}

/* Unset links so that they don't have an underline. */
a {text-decoration: none;}
.wp-block-post-content p a {text-decoration: none;}
h2 a:hover {text-decoration: none !important;}


/* Links showing up as black all of a sudden, bug fix. */
li.wp-block-navigation-item.wp-block-navigation-link {
    color: white;
}