/*
Theme Name: Nature's Wonderland Info Site
Author: Nicholas Thorondor
Requires at least: WordPress 4.9.6
Version: 1.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: nwinfosite
*/

/* ==========================================================================
   WordPress specific classes
   ========================================================================== */
.wp-block-embed__wrapper {
    display: flex;
    justify-content: center;
}

.wp-block-button .wp-block-button__link {
    border-radius: 0;
    text-decoration: none;
}

.wp-block-separator {
    width: 15%;
    border-top: 3px solid black;
}

.wp-block-gallery .blocks-gallery-item figcaption {
    background: none;
    color: black;
}

.wp-block-columns {
    flex-wrap: wrap;
}
.wp-block-gallery .blocks-gallery-item {
    min-width: 100%;
}

.wp-block-column {
    min-width: 100%;
    margin: 0 !important;
}

@media (min-width: 992px) {
    .wp-block-gallery .blocks-gallery-item {
        min-width: 40%;
    }

    .wp-block-column {
        min-width: 50%;
    }
}

@media screen and (min-width: 1366px) {
    .wp-block-gallery .blocks-gallery-item {
        min-width: initial;
    }
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden {
    display: none !important;
}

.visually-hidden, .screen-reader-text, .sr-only {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.invisible {
    visibility: hidden;
}

.clearfix::before,
.clearfix::after {
    content: " ";
    display: table;
}

.clearfix::after {
    clear: both;
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
    *, *::before, *::after, *:first-letter, *:first-line {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a, a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]::after, a[href^="javascript:"]::after {
        content: "";
    }

    pre, blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr, img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }

    h2, h3 {
        page-break-after: avoid;
    }
}