/*
Theme Name: Knox
Theme URI: https://studiogem.co/knox
Description: A WordPress theme by Studio Gem.
Version: 1.7.1
Text Domain: knox
Tags: blog, custom-logo, custom-menu, featured-images, theme-options, translation-ready
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Author: Studio Gem
Author URI: https://studiogem.co
 */

/* ------------------------------------------------------------------------------
>>> TABLE OF CONTENTS:
---------------------------------------------------------------------------------
- Normalize
- Typography
- Elements
- Forms
- Structure and Layout
- Accessibility
- Alignments
- Float Clearing
- Site Header
- Navigation
- Content Area
- Widgets
- Site Footer
- Media
 */

/* Normalize
---------------------------------------------------------------------------- */

/* @formatter:off */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
/* @formatter:on */

/* Typography
---------------------------------------------------------------------------- */

html {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: #fff;
    border-top: 20px solid #111;
    color: #111;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    margin: 0;
}

.page-template-landing-page {
    border: 0;
}

a {
    color: #111;
    text-decoration: none;
}

a:focus,
a:hover,
.entry-content a:not(.wp-block-button__link) {
    color: #a48668;
    outline: 0;
}

.entry-content a:not(.wp-block-button__link):hover {
    color: #111;
}

p {
    margin: 0 0 1.8em;
    padding: 0;
}

b,
strong {
    font-weight: 700;
}

blockquote,
cite,
em,
i {
    font-style: italic;
}

mark {
    background: #ddd;
    color: #111;
}

blockquote,
.wp-block-quote {
    margin-bottom: 2em;
}

/* Headings
--------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
    clear: both;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 20px 0;
    padding: 0;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

.site-title a,
.site-title a:hover,
.entry-title a,
.entry-title a:hover {
    color: #111;
}

/* Elements
---------------------------------------------------------------------------- */

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

.site {
    overflow-x: hidden;
}

hr {
    border: 0;
    border-collapse: collapse;
    border-bottom: 1px solid #ddd;
    clear: both;
    color: #eee;
    margin: 2em auto;
}

.wp-block-separator {
    border-width: 1px;
    border-color: #ddd;
    margin: 2em auto;
}

.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
    max-width: 100px;
}

.wp-block-separator.is-style-dots {
    color: #111;
}

ol,
ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

img {
    height: auto;
    /* Make sure images are scaled correctly. */
    max-width: 100%;
    /* Adhere to container width. */
}

figure {
    margin: 0;
}

a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.gallery img {
    transition: all 0.2s ease-in-out;
}

table {
    margin: 0 0 1.8em;
    width: 100%;
}

/* Forms
---------------------------------------------------------------------------- */

input,
select,
textarea {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    color: #111;
    font-size: 14px;
    font-weight: 400;
    padding: 15px;
    width: 100%;
}

input:focus,
textarea:focus {
    border: 1px solid #999;
    outline: none;
}

.nf-form-content .list-select-wrap .nf-field-element > div,
.nf-form-content input:not([type=button]),
.nf-form-content textarea {
    background: #fff !important;
    border: 1px solid #ddd !important;
    color: #111 !important;
}

.nf-form-content input:focus,
.nf-form-content textarea:focus {
    border-color: #999 !important;
}

.nf-error.field-wrap .nf-field-element:after {
    display: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
    width: auto;
}

::-ms-input-placeholder {
    color: #111;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #111;
    opacity: 1;
}

::placeholder {
    color: #111;
    opacity: 1;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.home .nav-next a,
.home .nav-previous a,
.archive .nav-next a,
.archive .nav-previous a,
.search .nav-next a,
.search .nav-previous a,
.nf-form-content button,
.nf-form-content input[type=button],
.nf-form-content input[type=submit] {
    background-color: #fff;
    border: 1px solid #111;
    border-radius: 0;
    color: #111;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .2em;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: normal;
    width: auto;
}

.nf-form-content button,
.nf-form-content input[type=button],
.nf-form-content input[type=submit] {
    background: #fff !important;
    border: 1px solid #111 !important;
    color: #111 !important;
}

button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
.button:focus,
.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:focus,
.woocommerce a.button:focus,
.woocommerce button.button:focus,
.woocommerce input.button:focus,
.home .nav-next a:hover,
.home .nav-previous a:hover,
.archive .nav-next a:hover,
.archive .nav-previous a:hover,
.search .nav-next a:hover,
.search .nav-previous a:hover,
.posts-navigation .nav-previous a:focus,
.posts-navigation .nav-next a:focus,
.posts-navigation .nav-previous a:hover,
.posts-navigation .nav-next a:hover {
    background-color: #111;
    color: #fff;
}

.nf-form-content button:focus,
.nf-form-content input[type=button]:focus,
.nf-form-content input[type=submit]:focus,
.nf-form-content button:hover,
.nf-form-content input[type=button]:hover,
.nf-form-content input[type=submit]:hover {
    background: #111 !important;
    color: #ccc !important;
}

.button,
.home .nav-next a,
.home .nav-previous a,
.archive .nav-next a,
.archive .nav-previous a,
.search .nav-next a,
.search .nav-previous a {
    display: inline-block;
}

.search-form input[type="submit"] {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* Structure and Layout
---------------------------------------------------------------------------- */

@media only screen and (max-width: 1180px) {

    .site-content {
        padding: 0 1em;
    }

}

.site-content {
    margin: 4em auto;
}

@media only screen and (min-width: 960px) {

    .site-content {
        max-width: 1100px;
    }

    #primary {
        float: left;
        width: 65%;
    }

    #secondary {
        float: right;
        width: 28%;
    }

}

#secondary {
    font-size: 90%;
}

.full-width-content #primary,
.woocommerce #primary,
.woocommerce-cart #primary,
.woocommerce-checkout #primary {
    float: none;
    margin: 0 auto;
}

.woocommerce #primary {
    width: 100%;
}

.woocommerce-cart #secondary,
.woocommerce-checkout #secondary {
    display: none;
}

/* Accessibility
---------------------------------------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background: #fff;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #111;
    display: block;
    font-size: 1em;
    font-weight: 700;
    height: auto;
    padding: 15px 23px 14px;
    text-decoration: none;
    width: auto;
    z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
    outline: 0;
}

/* Alignments
---------------------------------------------------------------------------- */

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 960px) {
    .full-width-content .alignwide {
        margin-left: -80px;
        margin-right: -80px;
        max-width: 100vw;
    }
}

.full-width-content .alignfull {
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    max-width: 100vw;
}

.full-width-content .alignfull img {
    width: 100vw;
}

.full-width-content .wp-block-cover.alignfull {
    width: 100vw;
}

/* Float Clearing
---------------------------------------------------------------------------- */

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}

/* Site Header
---------------------------------------------------------------------------- */

.site-header {
    text-align: center;
}

.site-title {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: .2em;
    line-height: 1.2;
    margin: 0 -.2em 0 0;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .site-title {
        font-size: 58px;
    }
}

.site-branding {
    padding: 3em 0;
}

.custom-logo,
.woocommerce .custom-logo,
.woocommerce-page .custom-logo {
    width: 100%;
    max-width: 300px;
}

.site-description,
.wp-custom-logo .site-title {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Navigation
---------------------------------------------------------------------------- */

.main-navigation {
    clear: both;
    display: block;
    width: 100%;
}

.main-navigation ul,
.footer-navigation {
    list-style: none;
    margin: 0;
    padding-left: 0;
    text-align: center;
}

.main-navigation ul ul {
    background: rgba(255, 255, 255, 0.9);
    text-align: left;
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
    opacity: 0;
    -webkit-transition: opacity .4s ease-in-out;
    -moz-transition: opacity .4s ease-in-out;
    -ms-transition: opacity .4s ease-in-out;
    -o-transition: opacity .4s ease-in-out;
    transition: opacity .4s ease-in-out;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
    margin-top: -1px;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
    left: 100%;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
    left: auto;
    opacity: 1;
}

.main-navigation li,
.footer-navigation li {
    display: inline-block;
    position: relative;
}

.main-navigation a,
.footer-navigation a {
    color: #111;
    display: block;
    font-size: 12px;
    letter-spacing: .2em;
    padding: 0 24px;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-navigation a {
    padding: 0 8px;
}

.main-navigation ul ul a {
    padding: 24px 24px 0;
    width: 200px;
}

.main-navigation a i {
    margin-left: 5px;
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main .post-navigation {
    margin: 0 0 1.5em;
}

.single .post-navigation,
.single .posts-navigation {
    overflow: hidden;
}

.nav-links {
    margin-bottom: 1.8em;
    overflow: auto;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}

.navigation.post-navigation {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .2em;
    margin-top: 2em;
    text-transform: uppercase;
}

/* Slicknav
--------------------------------------------- */

.slicknav_menu {
    background: #fff;
    display: none;
    text-transform: uppercase;
    letter-spacing: .15em;
    padding: 0 1em;
    text-align: center;
}

.slicknav_menutxt {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slicknav_menutxt {
    font-size: 16px;
    line-height: 1.2;
}

.slicknav_menutxt:before {
    font-size: 28px;
}

a.slicknav_btn,
.slicknav_btn,
.slicknav_btn:hover {
    color: #222;
}

.slicknav_btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slicknav_nav li {
    margin-top: 15px;
    text-align: left;
}

@media screen and (max-width: 900px) {
    .slicknav_menu {
        display: block;
    }

    .main-navigation {
        display: none;
    }
}

/* Slicknav menu icon */
.slicknav_collapsed .slicknav_menutxt:before {
    content: "\f333";
    font-family: "Dashicons";
    font-weight: normal;
}

/* Slicknav menu icon close */
.slicknav_open .slicknav_menutxt:before {
    content: "\f335";
    font-family: "Dashicons";
    font-weight: normal;
}

.slicknav_arrow {
    float: right;
    font-size: 16px;
}

/* Content Area
---------------------------------------------------------------------------- */

.post,
.search-results #primary .page {
    margin-bottom: 4em;
}

.post:last-of-type {
    margin-bottom: 1.8em;
}

.page-header {
    margin-bottom: 4em;
}

.page-header .archive-description {
    margin-top: 10px;
}

.page-header p:last-of-type {
    margin-bottom: 0;
}

.page-header .page-title {
    font-size: 18px;
    letter-spacing: .1em;
    margin-bottom: 0;
    text-transform: uppercase;
}

/* Entry Content
--------------------------------------------- */

.sticky {
    display: block;
}

.updated:not(.published) {
    display: none;
}

.page-content,
.entry-content,
.entry-summary {
    font-family: "Lora", serif;
    letter-spacing: .06em;
    line-height: 2;
    margin: 2em 0 0;
}

.page-title {
    margin-bottom: 2em;
    text-align: center;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

.entry-content ol,
.entry-content ul:not(.wp-block-latest-posts):not(.blocks-gallery-grid) {
    margin-bottom: 30px;
    padding-left: 40px;
}

.entry-content ol > li {
    list-style-type: decimal;
}

.entry-content ul:not(.wp-block-latest-posts):not(.blocks-gallery-grid) > li {
    list-style-type: disc;
}

.entry-content ol ul > li,
.entry-content ul ul > li {
    list-style-type: circle;
}

.entry-content ol ol,
.entry-content ul ul {
    margin-bottom: 0;
}

.more-link {
    border: 1px solid #ddd;
    color: #111;
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 90%;
    letter-spacing: .2em;
    margin-bottom: 1.8em;
    padding: 6px 10px;
    text-align: center;
    text-transform: uppercase;
}

a.more-link {
    color: #111;
}

.no-title .entry-content {
    margin: 0;
}

/* Entry Meta
--------------------------------------------- */

.entry-header {
    margin-bottom: 1.8em;
    text-align: center;
}

.entry-title {
    font-size: 24px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.no-title .entry-header,
.no-title .page-header {
    display: none;
}

.post-cats {
    border-top: 1px solid #111;
    text-align: center;
}

.cat-links {
    background: #fff;
    display: inline-block;
    font-size: 12px;
    letter-spacing: .2em;
    padding: 4px 14px;
    position: relative;
    text-transform: uppercase;
    top: -14px;
}

.entry-header,
.entry-footer {
    font-size: 12px;
    letter-spacing: .2em;
    text-align: center;
    text-transform: uppercase;
}

.entry-footer {
    display: none;
}

.single .entry-footer {
    display: block;
}

.tags-links {
    display: block;
}

/* Comments
--------------------------------------------- */

.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

#comments .children {
    margin-left: 4%;
}

.comment-body {
    background: #f8f8f8;
    margin-bottom: 2em;
    padding: 2em;
}

.comments-title,
#comments .avatar {
    display: none;
}

#comments {
    border-top: 1px solid #111;
    margin-top: 1.8em;
    padding-top: 1.8em;
}

/* Widgets
---------------------------------------------------------------------------- */

.widget {
    margin: 0;
}

#secondary .widget {
    margin-bottom: 3em;
}

.widget-title,
.is-style-widget-title {
    background: #111;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    letter-spacing: .2em;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
}

/* eNews
--------------------------------------------- */

.enews p:last-of-type {
    margin-bottom: 0;
    margin-top: 1.8em;
}

.enews {
    text-align: center;
}

.enews input {
    margin-bottom: 12px;
    width: 100%;
}

.enews #subbutton {
    margin-bottom: 0;
}

/* Category Widget
--------------------------------------------- */

.widget_categories a {
    border-bottom: 1px solid #eee;
    display: block;
    font-size: 85%;
    letter-spacing: .15em;
    padding: 10px 0;
    text-align: center;
    text-transform: uppercase;
}

/* Site Footer
---------------------------------------------------------------------------- */

.site-footer {
    clear: both;
    font-size: 12px;
    letter-spacing: .2em;
    padding: 2em;
    text-align: center;
    text-transform: uppercase;
}

.site-footer p {
    margin: 0;
}

#sb_instagram,
#sb_instagram #sbi_images {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.footer-navigation {
    margin-bottom: 10px;
}

@media (min-width: 960px) {
    .site-footer {
        align-items: center;
        display: flex;
        justify-content: space-between;
    }

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

/* Media
---------------------------------------------------------------------------- */

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
img,
object,
video,
.wp-caption {
    max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
    display: inline-block;
}

/* Captions
--------------------------------------------- */

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

figcaption,
.gallery-caption,
.wp-caption-text {
    margin-top: 0.5em;
    margin-bottom: 1em;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}

/* Galleries
--------------------------------------------- */

.gallery {
    overflow: hidden;
}

.gallery img {
    border: 1px solid #eee;
    height: auto;
    padding: 4px;
}

.gallery img:focus,
.gallery img:hover {
    border: 1px solid #999;
    outline: none;
}

.gallery-columns-1 .gallery-item {
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    width: 50%;
}

.gallery-columns-3 .gallery-item {
    width: 33%;
}

.gallery-columns-4 .gallery-item {
    width: 25%;
}

.gallery-columns-5 .gallery-item {
    width: 20%;
}

.gallery-columns-6 .gallery-item {
    width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
    width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
    width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
    clear: left;
}

.gallery-item {
    float: left;
    margin: 0 0 30px;
    text-align: center;
}

.site-content .blocks-gallery-grid,
.site-content .wp-block-gallery {
    padding-left: 0;
}

/* Blocks
---------------------------------------------------------------------------- */

/* Buttons
--------------------------------------------- */

.wp-block-buttons {
    margin-top: 2.8rem;
    margin-bottom: 2.8rem;
}

.wp-block-buttons > .wp-block-button:last-of-type {
    margin-bottom: 0;
}

.wp-block-button .wp-block-button__link {
    border-width: 0;
    border-radius: 0;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .2em;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: normal;
    width: auto;
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background-color: transparent;
    border: 1px solid currentColor;
    padding: 14px 28px;
}

.wp-block-button .wp-block-button__link:focus,
.wp-block-button .wp-block-button__link:hover,
.wp-block-button.is-style-outline .wp-block-button__link:focus,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
    box-shadow: inset 0 0 200px rgba(230, 230, 230, 0.25);
}

/* Search
--------------------------------------------- */

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
    border-color: #ddd;
    padding: 8px;
}

.wp-block-search__button.has-icon {
    background: transparent;
    border: 0;
}

.wp-block-search__button.has-icon:hover,
.wp-block-search__button.has-icon:focus {
    color: #111;
}

/* Latest Posts
--------------------------------------------- */

.wp-block-latest-posts__featured-image,
.wp-block-latest-posts__featured-image a,
.wp-block-latest-posts__featured-image img {
    display: block;
}

.is-grid .wp-block-latest-posts__featured-image {
    margin-bottom: 18px;
}

.wp-block-latest-posts.is-grid li {
    line-height: 1.2;
    margin-right: 0;
    text-align: center;
}

@media (min-width: 600px) {
    .wp-block-latest-posts.is-grid li {
        margin-right: 1.25em;
    }
}

.wp-block-latest-posts li a {
    color: #111;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
}

/* Sidebar featured posts ------------------------- */

#secondary .wp-block-latest-posts li {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
    position: relative;
}

#secondary .wp-block-latest-posts li a {
    background: #fff;
    padding: 1em;
    position: absolute;
    text-align: center;
    width: 75%;
}

/* Social Links
--------------------------------------------- */

.is-style-square-links {
    gap: .7em !important;
}

.is-style-square-links .wp-block-social-link {
    border-radius: 0;
}

.is-style-square-links .wp-block-social-link a {
    padding: .5em;
}
