/*!
Theme Name: SmThing Pro
Theme URI: https://wpinterface.com/themes/smthing/
Author: WPInterface
Author URI: https://wpinterface.com/
Description: SmThing is a sleek, modern WordPress personal blog theme designed for storytellers. With clean layouts, responsive design, and customizable features, it offers a minimalist aesthetic that enhances readability and showcases your voice beautifully across devices. Perfect for bloggers.
Requires at least: 5.9
Tested up to: 6.8
Requires PHP: 5.6
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smthing-pro
Tags: one-column, two-columns, right-sidebar, left-sidebar, flexible-header, custom-header, custom-background, custom-menu, custom-colors, sticky-post, threaded-comments, translation-ready, featured-images, theme-options, post-formats, footer-widgets, blog, e-commerce, rtl-language-support
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
-----------------------------------------------------------------------------------
	0. 	CSS Reset
	1. 	Document Setup
	2. 	Element Base
	3. 	Helper Classes
	4. 	Site Header
	5. 	Modal: Menu
	6. 	Modal: Search
	7. 	Page Templates
		a. 	Template: Cover Template
		b. 	Template: Only Content
		c. 	Template: Full Width
		d.	Template: Full Width with Only Content
	8. Post: Archive
	9. Post: Single
	10. Blocks
	11. Entry Content
	12. Comments
	13. Site Pagination
	14. Error 404
	15. WooCommerce
	16. Widgets
	17. Site Footer
	18. Media Queries
----------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/*	0. CSS Reset
/* -------------------------------------------------------------------------------- */

html, body {
    border: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, p, blockquote, address, big, cite, code, em, font, img, small, strike, sub, sup, li, ol, ul, fieldset, form, label, legend, button, table, caption, tr, th, td {
    border: none;
    font-size: inherit;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    text-align: inherit;
}

blockquote:before,
blockquote:after {
    content: "";
}

/* --------------------------------------------------------------------------------------------- */
/*	1. Document Setup
/* --------------------------------------------------------------------------------------------- */
html {
    font-size: 62.5%; /* 1rem = 10px */
}

/* Fix for the admin bar */
@media ( max-width: 599px ) {
    html.scroll-locked {
        margin: 0 !important;
    }
}

body {
    background: #f0f0f0;
    color: #1A1B1F;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 1.6rem;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    word-break: break-word;
    word-wrap: break-word;
}

::selection {
    background: black;
    color: #fff;
}

#site-content {
    overflow: hidden;
}

/* Clearing ---------------------------------- */
.group:after,
.entry-content:after,
[class*="__inner-container"]:after {
    clear: both;
    content: "";
    display: block;
}

/* Base Transitions -------------------------- */
a,
path {
    transition: all .15s linear;
}

/* Screen Reader Text ------------------------ */
.screen-reader-text {
    clip: rect(.1rem, .1rem, .1rem, .1rem);
    height: .1rem;
    overflow: hidden;
    position: absolute !important;
    left: -999999rem;
    width: .1rem;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: .3rem;
    box-shadow: 0 0 .2rem .2rem rgba(0, 0, 0, 0.6);
    clip: auto !important;
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    height: auto;
    left: .5rem;
    line-height: normal;
    padding: 1.5rem 2.3rem 1.4rem 2.3rem;
    text-decoration: none;
    top: .5rem;
    width: auto;
    z-index: 100000;
}

/* Skip Link --------------------------------- */
.skip-link {
    position: absolute;
    left: -9999rem;
    top: 2.5rem;
    z-index: 999999999;
}

.skip-link:focus {
    left: 2.5rem;
    text-decoration: none;
}

/* Accessibility Settings -------------------- */
@media ( prefers-reduced-motion: reduce ) {
    * {
        animation-duration: 0s !important;
        transition-duration: 0s !important;
    }
}

/* CSS Variables ----------------------------- */
:root {
    /* Typography */
    --body-font: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, sans-serif;
    --headings-font: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, sans-serif;
    --headings-weight: 700;
    --headings-case: normal;
    --headings-spacing: normal;
    /* Colors */
    --accent-color: #b14a37;
    --primary-color: #1a1b1f;
    --secondary-color: #747579;
    --border-color: #e1e1e3;
    --light-background-color: #f1f1f3;
    --background-color: #fff;
    --headings-color: #1a1b1f;
    --buttons-background-color: #b14a37;
    --buttons-text-color: #fff;
    --overlay-text-color: #fff;
}

/* --------------------------------------------------------------------------------------------- */
/*	2. Element Base
/* --------------------------------------------------------------------------------------------- */
main {
    display: block;
}

h1, h2, h3, h4, h5, h6, .ff-headings {
    font-family: "Mona Sans", sans-serif;
    font-feature-settings: "lnum";
    font-variant-numeric: lining-nums;
    font-weight: 500;
    margin: 4rem 0 2.5rem;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2.1rem;
}

h5 {
    font-size: 1.9rem;
}

h6 {
    font-size: 1em;
}

p {
    line-height: 1.5;
    margin: 0 0 1.175em 0;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

abbr,
acronym {
    cursor: help;
}

address {
    line-height: 1.5;
    margin: 0 0 2rem 0;
}

hr {
    border: none;
    border-top: .1rem solid currentColor;
    color: #E1E1E3;
    margin: 5rem 0;
}

a {
    color: #b14a37;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

/* Lists ------------------------------------- */
ul,
ol {
    margin: .5rem 0 3rem 3rem;
}

li {
    line-height: 1.5;
    margin: .5rem 0 .5rem 2rem;
}

li > ul,
li > ol {
    margin: .5rem 0 .5rem 2rem;
}

.reset-list-style,
.reset-list-style ul,
.reset-list-style ol {
    list-style: none;
    margin: 0;
}

.reset-list-style li {
    margin: 0;
}

dt,
dd {
    line-height: 1.5;
}

dt {
    font-weight: 700;
}

dt + dd {
    margin-top: 0.5rem;
}

dd + dt {
    margin-top: 1.5rem;
}

/* Quotes ------------------------------------ */
blockquote {
    border-color: #b14a37;
    border-style: solid;
    border-width: 0 0 0 .2rem;
    color: inherit;
    font-size: 1em;
    margin: 3rem 0;
    padding: 0 0 0 2rem;
}

cite {
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 600;
}

blockquote cite {
    display: block;
    margin: 2rem 0 0 0;
}

blockquote p:last-of-type {
    margin: 0;
}

/* Code -------------------------------------- */
code,
kbd,
pre,
samp {
    font-family: monospace;
    font-size: 1em;
    padding: .4rem .6rem;
}

code,
kbd,
samp {
    background: #FFFFFF;
    border-radius: .2rem;
}

pre {
    border: .1rem solid #E1E1E3;
    line-height: 1.5;
    margin: 4rem 0;
    overflow: auto;
    padding: 3rem 2rem;
    text-align: left;
}

pre code {
    background: transparent;
    padding: 0;
}

/* Media ------------------------------------- */
figure {
    margin: 0;
}

iframe {
    border: none;
    display: block;
    max-width: 100%;
}

svg,
img,
embed,
object {
    display: block;
    height: auto;
    max-width: 100%;
}

figcaption,
.wp-caption-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 1.5rem;
}

/* GALLERIES */
.gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 3em 0 3em -.8em;
    width: calc(100% + 1.6em);
}

.gallery-item {
    margin: .8em 0;
    padding: 0 .8em;
}

.gallery-item img,
.gallery-item {
    display: block;
    width: 100%;
}

.gallery-caption {
    display: block;
    margin-top: .8em;
}

/* Inputs ------------------------------------ */
fieldset {
    border: .2rem solid #e1e1e3;
    margin-bottom: 3rem;
    margin-top: 3rem;
    padding: 2rem;
}

fieldset > *:first-child {
    margin-top: 0;
}

fieldset > *:last-child {
    margin-bottom: 0;
}

form {
    margin-bottom: 3rem;
    margin-top: 3rem;
}

form > *:first-child {
    margin-top: 0;
}

form > *:last-child {
    margin-bottom: 0;
}

legend {
    font-size: .85em;
    font-weight: 700;
    padding: 0 1rem;
}

label {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 .5rem 0;
}

label.inline,
input[type="checkbox"] + label {
    display: inline;
    font-weight: 400;
    margin-left: .5rem;
}

input,
textarea,
button,
.select2-container .select2-selection--single {
    font-family: inherit;
    line-height: 1;
}

input,
textarea,
.select2-container .select2-selection--single {
    border-color: #E1E1E3;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="color"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border-radius: .3rem;
    border-style: solid;
    border-width: .1rem;
    box-shadow: none;
    color: inherit;
    display: block;
    font-size: 1.6rem;
    line-height: normal;
    margin: 0;
    max-width: 100%;
    outline: none;
    padding: 1.5rem 1.8rem;
    width: 100%;
}

textarea {
    height: 12rem;
    line-height: 1.5;
    width: 100%;
}

select {
    font-family: inherit;
    font-size: inherit;
}

::-webkit-input-placeholder {
    color: #747579;
    line-height: normal;
}

::-moz-placeholder {
    color: #747579;
    line-height: normal;
}

:-ms-input-placeholder {
    color: #747579;
    line-height: normal;
}

:-moz-placeholder {
    color: #747579;
    opacity: 1;
    line-height: normal;
}

::placeholder {
    color: #747579;
    line-height: normal;
    opacity: 1;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

button,
.button,
.faux-button,
.wp-block-button__link,
:root .wp-block-file__button,
input[type="button"],
input[type="reset"],
input[type="submit"],
:root .woocommerce #respond input#submit,
:root .woocommerce a.button,
:root .woocommerce button.button,
:root .woocommerce input.button {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #b14a37;
    border: none;
    border-radius: .3rem;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: .8888em;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    padding: 1.175em 1.75em;
    text-align: center;
    text-decoration: none;
    transition: opacity .15s linear;
}

button:hover,
.button:hover,
.faux-button:hover,
.wp-block-button__link:hover,
:root .wp-block-file__button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
:root .woocommerce #respond input#submit:hover,
:root .woocommerce a.button:hover,
:root .woocommerce button.button:hover,
:root .woocommerce input.button:hover,
button:focus,
.button:focus,
.faux-button:focus,
.wp-block-button__link:focus,
:root .wp-block-file__button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
:root .woocommerce #respond input#submit:focus,
:root .woocommerce a.button:focus,
:root .woocommerce button.button:focus,
:root .woocommerce input.button:focus {
    text-decoration: underline;
}

/* SELECT2 */
.select2-container--default .select2-selection--single {
    background: transparent;
}

.select2-container .select2-selection--single {
    font-size: 1.6rem;
    height: 50px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: inherit;
    font-size: 1.6rem;
    line-height: 50px;
    padding-left: 18px;
    padding-right: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
    width: 40px;
}

/* Tables ------------------------------------ */
table {
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    margin: 4rem 0;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
}

th,
td,
caption {
    padding: .8rem;
}

th,
td {
    border: .1rem solid #E1E1E3;
    line-height: 1.4;
    margin: 0;
    overflow: visible;
}

caption {
    background-color: #E1E1E3;
    font-weight: 700;
    text-align: center;
}

thead {
    white-space: nowrap;
}

th {
    font-weight: 700;
}

/* --------------------------------------------------------------------------------------------- */
/*	3. Helper Classes
/* --------------------------------------------------------------------------------------------- */
/* Layout ------------------------------------ */
.no-margin {
    margin: 0;
}

.no-padding {
    padding: 0;
}

.screen-height {
    min-height: 100vh;
}

.screen-width {
    position: relative;
    left: calc(50% - 50vw);
    width: 100vw;
}

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

.no-scrollbars {
    scrollbar-width: none;
}

.no-scrollbars::-webkit-scrollbar {
    display: none;
}

/* Sections ---------------------------------- */
section {
    padding: 5rem 0;
    width: 100%;
}

.section-inner {
    margin: 0 auto;
    max-width: 117rem;
    width: calc(100% - 4rem);
}

.section-inner.no-margin {
    margin: 0;
}

/* Toggles ----------------------------------- */
.toggle {
    -moz-appearance: none;
    -webkit-appearance: none;
    color: inherit;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    text-align: inherit;
    user-select: none;
}

button.toggle {
    background: none;
    border-radius: 0;
    padding: 0;
}

/* Grid Structure ---------------------------- */
.grid {
    display: grid;
    gap: 3rem;
    width: 100%;
}

.grid-align-top {
    align-items: start;
}

.grid-align-baseline {
    align-items: baseline;
}

.grid-align-bottom {
    align-items: end;
}

.grid-justify-start {
    justify-content: start;
}

.grid-justify-center {
    justify-content: center;
}

.grid-justify-end {
    justify-content: end;
}

.grid.column-lg-1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid.column-lg-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid.column-lg-3 {
    grid-template-columns: repeat(3, 1fr);
}

.posts-grid.column-lg-2,
.posts-grid.column-lg-3 {
    gap: 6rem;
}

.grid.column-lg-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Column configurations */
@media (max-width: 1000px) {
    .grid.column-md-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid.column-md-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .grid.column-sm-1 {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Individual column width overrides (optional but retained for compatibility) */
.grid-item.col-1 {
    grid-column: span 1;
}

.grid-item.col-2 {
    grid-column: span 2;
}

.grid-item.col-3 {
    grid-column: span 3;
}

.grid-item.col-4 {
    grid-column: span 4;
}

/* Optional modifier for zero gutter */
.grid.no-hgutter {
    column-gap: 0;
}

.grid.no-vgutter {
    row-gap: 0;
}

.grid.match-gutter {
    gap: 3rem;
}

/* Hiding and Showing ------------------------ */
.js .show-js {
    display: block !important;
}

.js .hide-js {
    display: none !important;
}

.no-js .show-no-js {
    display: block !important;
}

.no-js .hide-no-js {
    display: none !important;
}

/* Typography -------------------------------- */
.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Colors ------------------------------------ */
/* TEXT COLOR */
.color-body-background,
.color-body-background-hover:hover {
    color: #fff;
}

.color-primary,
.color-primary-hover:hover {
    color: #1A1B1F;
}

.color-secondary,
.color-secondary-hover:hover {
    color: #747579;
}

.color-accent,
.color-accent-hover:hover {
    color: #b14a37;
}

.color-border,
.color-border-hover:hover {
    color: #E1E1E3;
}

.color-light-background,
.color-light-background-hover:hover {
    color: #FFFFFF;
}

/* BACKGROUND COLOR */
.bg-body-background,
.bg-body-background-hover:hover {
    background: #fff;
}

.bg-primary,
.bg-primary-hover:hover {
    background: #1A1B1F;
}

.bg-secondary,
.bg-secondary-hover:hover {
    background: #747579;
}

.bg-accent,
.bg-accent-hover:hover {
    background: #b14a37;
}

.bg-border,
.bg-border-hover:hover {
    background: #E1E1E3;
}

.bg-light-background,
.bg-light-background-hover:hover {
    background: #FFFFFF;
}

.bg-current-color,
.bg-current-color-hover:hover {
    background: currentColor;
}

/* BORDER COLOR */
.border-body-background,
.border-body-background-hover:hover {
    border-color: #fff;
}

.border-color-primary,
.border-color-primary-hover:hover {
    border-color: #1A1B1F;
}

.border-color-secondary,
.border-color-secondary-hover:hover {
    border-color: #747579;
}

.border-color-accent,
.border-color-accent-hover:hover {
    border-color: #b14a37;
}

.border-color-border,
.border-color-border-hover:hover {
    border-color: #E1E1E3;
}

.border-color-light-background,
.border-color-light-background-hover:hover {
    border-color: #FFFFFF;
}

/* FILL COLOR */
.fill-children-body-background,
.fill-children-body-background * {
    fill: #FFF;
}

.fill-children-primary,
.fill-children-primary * {
    fill: #1A1B1F;
}

.fill-children-secondary,
.fill-children-secondary * {
    fill: #747579;
}

.fill-children-accent,
.fill-children-accent * {
    fill: #b14a37;
}

.fill-children-border,
.fill-children-border * {
    fill: #E1E1E3;
}

.fill-children-light-background,
.fill-children-light-background * {
    fill: #FFFFFF;
}

.fill-children-current-color,
.fill-children-current-color * {
    fill: currentColor;
}

/* Typography -------------------------------- */
[class*="limit-line-"] {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--limit-line-clamp, 5);
}

.limit-line-1 {
    --limit-line-clamp: 1;
}

.limit-line-2 {
    --limit-line-clamp: 2;
}

.limit-line-3 {
    --limit-line-clamp: 3;
}

.limit-line-4 {
    --limit-line-clamp: 4;
}

.entry-title {
    margin: 0 0 1rem;
}

.entry-title-large {
    font-size: 4.6rem;
}

.entry-title-big {
    font-size: 2.6rem;
}

.entry-title-medium {
    font-size: 2.2rem;
}

.entry-title-small {
    font-size: 1.8rem;
}

.entry-title a {
    color: inherit;
    text-decoration: none;
}

.entry-title a:hover {
    text-decoration: underline;
}

.ff-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, sans-serif;
}

.fw-headings {
    font-weight: 700;
}

.tt-headings {
    text-transform: none;
}

.ls-headings {
    letter-spacing: normal;
}

/* Opacity ----------------------------------- */
.opacity-0 {
    opacity: 0.0;
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-20 {
    opacity: 0.2;
}

.opacity-30 {
    opacity: 0.3;
}

.opacity-40 {
    opacity: 0.4;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-90 {
    opacity: 0.9;
}

.opacity-100 {
    opacity: 1.0;
}

/* Blend Mode -------------------------------- */
.blend-mode-normal {
    mix-blend-mode: normal;
}

.blend-mode-multiply {
    mix-blend-mode: multiply;
}

.blend-mode-screen {
    mix-blend-mode: screen;
}

.blend-mode-overlay {
    mix-blend-mode: overlay;
}

.blend-mode-darken {
    mix-blend-mode: darken;
}

.blend-mode-lighten {
    mix-blend-mode: lighten;
}

.blend-mode-color-dodge {
    mix-blend-mode: color-dodge;
}

.blend-mode-color-burn {
    mix-blend-mode: color-burn;
}

.blend-mode-hard-light {
    mix-blend-mode: hard-light;
}

.blend-mode-soft-light {
    mix-blend-mode: soft-light;
}

.blend-mode-difference {
    mix-blend-mode: difference;
}

.blend-mode-exclusion {
    mix-blend-mode: exclusion;
}

.blend-mode-hue {
    mix-blend-mode: hue;
}

.blend-mode-saturation {
    mix-blend-mode: saturation;
}

.blend-mode-color {
    mix-blend-mode: color;
}

.blend-mode-luminosity {
    mix-blend-mode: luminosity;
}

/* Image Classes ----------------------------- */
.faux-image,
.bg-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-contain {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* Only enabled when no touch events are detected */
.no-touchevents .bg-attachment-fixed {
    background-attachment: fixed;
}

@supports ( -webkit-overflow-scrolling: touch ) {
    .bg-attachment-fixed {
        background-attachment: scroll;
    }
}

@media ( prefers-reduced-motion: reduce ) {
    .bg-attachment-fixed {
        background-attachment: scroll;
    }
}

.faux-image {
    position: relative;
}

a.faux-image {
    display: block;
}

.faux-image:after {
    content: "";
    display: block;
    padding-top: 62.5%;
    width: 100%;
}

.faux-image.aspect-ratio-16x9:after {
    padding-top: 56.25%;
}

.faux-image.aspect-ratio-16x10:after {
    padding-top: 62.5%;
}

.faux-image.aspect-ratio-4x3:after {
    padding-top: 75%;
}

.faux-image.aspect-ratio-1x1:after {
    padding-top: 100%;
}

.faux-image.aspect-ratio-3x4:after {
    padding-top: 133.33%;
}

.faux-image.aspect-ratio-10x16:after {
    padding-top: 160%;
}

.faux-image.aspect-ratio-9x16:after {
    padding-top: 177.77%;
}

.faux-image img {
    position: absolute;
    left: -9999rem;
}

/* Search Form ------------------------------- */
.search-form {
    align-items: stretch;
    display: flex;
    flex-wrap: nowrap;
    margin: 0 0 -.8rem -.8rem;
}

.search-form .search-field,
.search-form .search-submit {
    margin: 0 0 .8rem .8rem;
}

.search-form label {
    align-items: stretch;
    display: flex;
    font-size: inherit;
    margin: 0;
}

.search-form .search-field {
    width: 100%;
}

.search-form .search-submit {
    flex-shrink: 0;
}

/* Social Icons ------------------------------ */
.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.social-icons a {
    align-items: center;
    color: inherit;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.social-icons a:hover,
.social-icons a:focus {
    text-decoration: none !important;
}

.social-icons .svg-icon {
    height: 2.6rem;
    width: 2.6rem;
}

.social-icons a[href*="twitter"] .svg-icon,
.social-icons a[href*="x"] .svg-icon {
    height: 2.2rem;
    margin-top: 0.2rem;
    width: 2.2rem;
}

/* Cover Modals ------------------------------ */
.cover-modal {
    display: none;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
}

.cover-modal::-webkit-scrollbar {
    display: none !important;
}

.cover-modal.show-modal {
    display: block;
}

/* Loading Indicator ------------------------- */
.loader {
    animation: spin 1.4s linear infinite;
    border-radius: 50%;
    border-style: solid;
    border-width: .3rem;
    height: 5rem;
    margin: auto;
    width: 5rem;
}

#pagination .loader {
    border-top-color: currentColor;
}

#pagination .loader.same-primary-border-color {
    border-top-color: #fff;
}

/* Breadcrumbs ------------------------------- */
.breadcrumbs-wrapper {
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
}

.breadcrumbs-inner-wrapper {
    -ms-overflow-style: none;
    overflow: scroll;
    padding: .5rem 0;
}

.breadcrumbs {
    align-items: center;
    display: flex;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    width: auto;
}

.overlay-header .breadcrumbs {
    color: inherit;
}

.breadcrumbs li,
.breadcrumbs .sep {
    align-items: inherit;
    display: inherit;
    flex-shrink: 0;
    line-height: inherit;
}

.breadcrumbs .sep {
    margin: 0 1.2rem;
    opacity: .5;
}

.breadcrumbs .sep.chevron-icon svg {
    height: 1rem;
    width: .6rem;
}

.breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Animations -------------------------------- */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.25);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes popIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    70% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1.0);
    }
}

/* -------------------------------------------------------------------------------- */
/*	4.	Site Header
/* -------------------------------------------------------------------------------- */
#site-header {
    background: transparent;
    margin-bottom: 4rem;
}

.header-inner {
    background-color: #fff;
    align-items: center;
    display: flex;
    min-height: 8rem;
    position: relative;
    transition: none;
}

.overlay-header .header-inner {
    z-index: 1;
}

.overlay-header .header-inner:not(.is-sticky) {
    background: none;
    color: #fff;
}

.overlay-header.has-overlay-logo .header-inner:not(.is-sticky) .custom-logo,
.overlay-header.has-overlay-logo .header-inner.is-sticky .smthing-overlay-logo {
    display: none;
}

.header-inner .section-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.header-titles {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.wp-custom-logo .header-titles {
    align-items: center;
}

.site-title,
.site-logo {
    margin: 0;
}

.site-title {
    font-size: 3.2rem;
    line-height: 1;
}

.overlay-header .site-title {
    color: inherit;
}

.site-title a {
    color: inherit;
    display: block;
    text-decoration: none;
}

.site-logo a,
.site-logo img {
    display: block;
}

.site-logo img {
    max-height: 6rem;
    width: auto;
}

.site-description {
    display: none;
    transition: all .15s linear;
}

/* Sticky Header ----------------------------- */
.header-inner.is-sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    transition: box-shadow .2s linear, background-color .2s linear;
    z-index: 9999;
}

@media ( min-width: 600px ) and ( max-width: 782px ) {
    .admin-bar .header-inner.is-sticky {
        top: 4.6rem;
    }
}

@media ( min-width: 782px ) {
    .admin-bar .header-inner.is-sticky {
        top: 3.2rem;
    }
}

.showing-menu-modal .header-inner.is-sticky {
    box-shadow: none;
}

/* Overlay Header ---------------------------- */
.overlay-header #site-header {
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.overlay-header:not(.showing-menu-modal):not(.overlay-header-has-text-color) .header-inner:not(.is-sticky) {
    color: #fff;
}

/* Header Navigation ------------------------- */
.header-navigation-wrapper {
    align-items: center;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

/* Header Toggles ---------------------------- */
.header-toggles {
    display: flex;
    flex-shrink: 0;
    justify-content: flex-end;
    overflow: hidden;
}

.header-toggles .toggle {
    border-radius: 0;
    align-items: center;
    display: flex;
    gap: 1rem;
    height: 10rem;
    justify-content: flex-end;
    padding: 3rem;
    position: relative;
    text-decoration: none;
}

#site-header .header-toggles .nav-toggle {
    color: #fff;
}

.header-toggles .toggle:hover,
.header-toggles .toggle:focus {
    outline: none;
    text-decoration: underline;
}

.header-toggles .search-toggle:focus-visible .svg-icon,
.header-toggles .nav-toggle:focus-visible .toggle-text-area {
    outline: -webkit-focus-ring-color auto 1px;
    outline-offset: 1px;
}

.header-toggles .toggle-text {
    font-size: 1.6rem;
    font-weight: 500;
    white-space: nowrap;
}

.header-toggles .toggle:not(.active) .hide {
    display: none;
}

.header-toggles .toggle.active .show {
    display: none;
}

/* Search Toggle ----------------------------- */
.search-toggle svg {
    height: 1.8rem;
    width: 1.8rem;
}

/* Navigation Toggle ------------------------- */
.nav-toggle {
    width: auto;
}

.nav-toggle .bars {
    height: 1.4rem;
    position: relative;
    width: 2rem;
}

.nav-toggle .bar {
    background: currentColor;
    display: block;
    height: .18rem;
    position: absolute;
    right: 0;
    top: 50%;
    transition: transform 0.2s ease-in, opacity 0s ease-out 0.2s, margin 0.2s ease-out 0.2s;
    width: 100%;
}

.nav-toggle .bar:nth-child(1) {
    margin-top: -.6rem;
}

.nav-toggle .bar:nth-child(3) {
    margin-top: 0.6rem;
}

.nav-toggle.active .bar {
    transition: margin 0.2s ease-in, opacity 0s ease-in 0.2s, transform 0.2s ease-out 0.25s;
}

.nav-toggle.active .bar:nth-child(1) {
    margin-top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    margin-top: 0;
    transform: rotate(-45deg);
}

/* Main Menu Alt ----------------------------- */
.main-menu-alt-container {
    display: none;
    margin-left: 3rem;
    padding: 2rem 0;
    width: 100%;
}

ul.main-menu-alt {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-end;
}

.main-menu-alt li {
    font-size: inherit;
    line-height: 1.25;
    position: relative;
}

.main-menu-alt > li.menu-item-has-children > .link-icon-wrapper {
    align-items: center;
    display: flex;
    white-space: nowrap;
}

.main-menu-alt .link-icon-wrapper svg {
    display: block;
    height: .6rem;
    margin-left: 0.5rem;
    overflow: hidden;
    width: 1rem;
}

.main-menu-alt a {
    color: inherit;
    display: block;
    line-height: 1;
    text-decoration: none;
}

.main-menu-alt a:hover,
.main-menu-alt li.current-menu-item > a,
.main-menu-alt li.current-menu-item > .link-icon-wrapper > a {
    text-decoration: underline;
}

.main-menu-alt li.current-menu-item > a:hover,
.main-menu-alt li.current-menu-item > .link-icon-wrapper > a:hover {
    text-decoration: none;
}

/* SUB MENU */
.main-menu-alt ul {
    background: currentColor;
    border-radius: .4rem;
    color: #FFFFFF;
    font-size: 1.7rem;
    opacity: 0;
    padding: 1rem 0;
    position: absolute;
    right: 9999rem;
    top: calc(100% + 2rem);
    transition: opacity .15s linear, transform .15s linear, right 0s .15s;
    transform: translateY(.6rem);
    width: 26rem;
    z-index: 10;
}

.main-menu-alt ul li {
    color: #1A1B1F;
}

.main-menu-alt li:hover > ul,
.main-menu-alt li.focus > ul {
    right: -2rem;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .15s linear, transform .15s linear;
}

.main-menu-alt ul:before,
.main-menu-alt ul:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 100%;
}

.main-menu-alt ul:before {
    height: 2rem;
    left: 0;
    right: 0;
}

.main-menu-alt ul:after {
    border: .8rem solid transparent;
    border-bottom-color: currentColor;
    right: 1.8rem;
}

.main-menu-alt ul li + li {
    margin-top: 1rem;
}

.main-menu-alt ul a {
    background-color: transparent;
    border: none;
    display: block;
    line-height: inherit;
    padding: 1rem 2rem;
    transition: background-color .15s linear;
    width: 100%;
}

.main-menu-alt ul li.menu-item-has-children > .link-icon-wrapper > a {
    padding-right: 4.5rem;
}

.main-menu-alt ul li.menu-item-has-children > .link-icon-wrapper svg {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

/* DEEP DOWN */
.main-menu-alt ul ul {
    top: -1rem;
}

.main-menu-alt ul li:hover > ul,
.main-menu-alt ul li.focus > ul {
    right: calc(100% + 2rem);
}

.main-menu-alt ul ul:before {
    bottom: 0;
    height: auto;
    left: auto;
    right: -2rem;
    top: 0;
    width: 2rem;
}

.main-menu-alt ul ul:after {
    border-bottom-color: transparent;
    border-left-color: currentColor;
    bottom: auto;
    right: -1.6rem;
    top: 2rem;
}

/* CONDITIONAL SUB LEVEL DIRECTION */
.main-menu-alt ul ul.expand-right {
    right: auto;
    left: 99999rem;
}

.main-menu-alt ul li:hover > ul.expand-right,
.main-menu-alt ul li.focus > ul.expand-right {
    left: calc(100% + 2rem);
}

.main-menu-alt ul ul.expand-right:before {
    right: auto;
    left: -2rem;
}

.main-menu-alt ul ul.expand-right:after {
    border-left-color: transparent;
    border-right-color: currentColor;
    right: auto;
    left: -1.6rem;
}

/* Main Menu Alt Social ---------------------- */
.main-menu-alt-social-container {
    display: none;
    flex-shrink: 0;
    font-size: 1.6rem;
    position: relative;
}

/* --------------------------------------------------------------------------------------------- */
/*	5. Modal: Menu
/* --------------------------------------------------------------------------------------------- */
.menu-modal {
    background: #fff;
    display: none;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    left: -99999rem;
    right: 99999rem;
    top: 0;
    transition: opacity .25s ease-in, left 0s .25s, right 0s .25s;
    z-index: 9999;
}

.menu-modal.show-modal {
    display: flex;
}

.menu-modal.active {
    left: 0;
    opacity: 1;
    right: 0;
    transition: opacity .25s ease-out;
}

.menu-modal a {
    color: inherit;
    text-decoration: none;
}

.menu-modal-inner {
    display: flex;
    justify-content: stretch;
    overflow: auto;
    width: 100%;
}

.admin-bar .menu-modal-inner {
    margin-top: 4.6rem;
}

@media ( min-width: 782px ) {
    .admin-bar .menu-modal-inner {
        margin-top: 3.2rem;
    }
}

.menu-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* Modal: Menu Toggles ----------------------- */
.menu-modal-toggles {
    margin-left: 0;
}

.menu-modal-toggles .toggle {
    justify-content: center;
    height: 8rem;
    width: 100%;
}

.menu-modal-toggles .toggle-text {
    display: block;
}

/* Main Menu --------------------------------- */
.main-menu {
    position: relative;
    left: calc(50% - 50vw);
    width: 100vw;
}

.main-menu li {
    border-color: #E1E1E3;
    border-style: solid;
    border-width: .1rem 0 0 0;
    display: flex;
    flex-wrap: wrap;
    line-height: 1;
    justify-content: flex-start;
    margin: 0;
}

.main-menu > li:last-child {
    border-bottom-width: .1rem;
}

.main-menu .ancestor-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.main-menu a {
    display: block;
    padding: 2rem;
    width: 100%;
}

.main-menu a:hover,
.main-menu li.current-menu-item > .ancestor-wrapper > a {
    text-decoration: underline;
}

.sub-menu-toggle-wrapper {
    display: flex;
    flex-shrink: 0;
}

a.sub-menu-toggle {
    align-items: center;
    border-style: solid;
    border-width: 0 0 0 .1rem;
    display: flex;
    flex-shrink: 0;
    margin: 1rem 0;
    padding: 0 2rem;
}

a.sub-menu-toggle svg {
    height: .9rem;
    transition: transform .15s linear;
    width: 1.5rem;
}

a.sub-menu-toggle.active svg {
    transform: rotate(180deg);
}

.main-menu ul {
    margin: 0;
    width: 100%;
}

.main-menu .sub-menu {
    display: none;
}

.main-menu ul li {
    border-left-width: 1rem;
}

/* Menu Bottom ------------------------------- */
.menu-bottom {
    flex-shrink: 0;
    padding: 4rem 0;
}

.menu-copyright {
    display: none;
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0;
}

.menu-copyright a:hover {
    text-decoration: underline;
}

.menu-bottom .social-menu {
    justify-content: center;
}

/* --------------------------------------------------------------------------------------------- */
/*	6. Modal: Search
/* --------------------------------------------------------------------------------------------- */
.search-modal {
    background: rgba(0, 0, 0, .2);
    display: none;
    opacity: 0;
    position: fixed;
    bottom: 0;
    left: -9999rem;
    top: 0;
    transition: opacity .2s linear, left 0s .2s linear;
    width: 100%;
    z-index: 9999;
}

.search-modal-inner {
    transform: translateY(-100%);
    transition: transform .15s linear, box-shadow .15s linear;
}

.admin-bar .search-modal-inner {
    margin-top: 4.6rem;
}

@media ( min-width: 782px ) {
    .admin-bar .search-modal-inner {
        margin-top: 3.2rem;
    }
}

.search-modal-inner .section-inner {
    display: flex;
    align-items: center;
    height: 20rem;
    justify-content: space-between;
}

.search-modal.active {
    left: 0;
    opacity: 1;
    transition: opacity .2s linear;
}

.search-modal.active .search-modal-inner {
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, .08);
    transform: translateY(0);
    transition: transform .25s ease-in-out, box-shadow .1s .25s linear;
}

.search-untoggle {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    height: 5rem;
    justify-content: center;
    margin-right: -2.5rem;
    padding: 0 2.5rem;
}

.search-modal.active .search-untoggle {
    animation: popIn both .3s .2s;
}

.search-untoggle svg {
    height: 1.5rem;
    transition: transform .15s ease-in-out;
    width: 1.5rem;
}

.search-untoggle:hover svg {
    transform: scale(1.15);
}

/* Modal Search Form ------------------------- */
.modal-search-form {
    margin: 0;
    position: relative;
    width: 100%;
}

.modal-search-form .search-field {
    background: none;
    border: none;
    border-radius: 0;
    color: inherit;
    font-size: 2rem;
    height: 8rem;
    padding: 0;
    width: 100%;
}

.modal-search-form .search-submit {
    position: absolute;
    right: -9999rem;
    top: 50%;
    transform: translateY(-50%);
}

.modal-search-form .search-submit:focus {
    right: 0;
}

/* --------------------------------------------------------------------------------------------- */
/*	7a. Page Templates
/* --------------------------------------------------------------------------------------------- */
#site-banner {
    --swiper-navigation-size: 4rem;
    --swiper-navigation-color: #dd3333;
}

#site-banner {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
}

@media (min-width: 1400px) {
    #site-banner {
        --swiper-navigation-size: 6rem;
        --swiper-navigation-sides-offset: -10rem;
    }
}

.site-banner-area {
    position: relative;
}

.banner-post {
    height: 64rem;
}

@media only screen and (max-width: 575px) {
    .banner-post {
        height: inherit;
    }
}

.banner-post .entry-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    width: 55%;
}

@media (max-width: 1024px) {
    .banner-post .entry-details {
        width: 100%;
    }
}

.banner-post .entry-details .entry-meta-wrapper {
    display: inline-flex;
    margin: 0 2rem;
    padding: 1rem 2rem;
    position: relative;
    -webkit-transition: all .3s;
    transition: all .3s
}

@media (min-width: 768px) {
    .banner-post .entry-details .entry-meta-wrapper:before,
    .banner-post .entry-details .entry-meta-wrapper:after {
        content: "";
        width: 100%;
    }

    .banner-post .entry-details .entry-meta-wrapper:after {
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        background-color: rgba(var(--theme-rgb-color), 0.5);
        z-index: -2
    }

    .banner-post .entry-details .entry-meta-wrapper:before {
        height: 120%;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        background-color: var(--theme-background-color);
        z-index: -1;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
        -webkit-transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
        transition: all .3s cubic-bezier(.175, .885, .32, 1.275)
    }

    .banner-post .entry-details:hover .entry-meta-wrapper:before,
    .banner-post .entry-details:focus .entry-meta-wrapper:before {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@media only screen and (max-width: 767px) {
    .banner-post .entry-details .entry-meta-wrapper {
        background-color: rgba(var(--theme-rgb-color), 0.5);
        margin: 0;
    }
}

.banner-post .entry-details .entry-meta-wrapper .entry-meta {
    position: relative;
    z-index: 1;
}

.banner-post .entry-details .entry-meta-wrapper .entry-categories {
    margin-bottom: 0;
}

.banner-post .entry-details .entry-header {
    -webkit-transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
    margin-bottom: 6rem;
    padding: 4rem;
    width: calc(100% - 8rem);
}

@media only screen and (max-width: 767px) {
    .banner-post .entry-details .entry-header {
        margin-bottom: 2rem;
    }
}

.banner-post .entry-details:hover .entry-header,
.banner-post .entry-details:focus .entry-header {
    background: #b14a37;
    color: #fff;
    width: 100%;
    padding: 4rem 8rem;
}

.banner-post .entry-details:hover .entry-header a,
.banner-post .entry-details:focus .entry-header a {
    color: #fff;

}

.site-swiper-pagination {
    position: absolute;
    right: 0;
    bottom: -5rem;
    padding: 0 3rem;
    width: 45%;
}

@media only screen and (max-width: 1024px) {
    .site-swiper-pagination {
        visibility: hidden;
        opacity: 0;
        z-index: -1;
    }
}

#site-banner .site-pagination-panel {
    position: relative;
}

.swiper-pagination-slide {
    border-bottom: 0.5rem solid #000;
}

.swiper-pagination-slide .entry-details {
    min-height: 12rem;
    padding: 2rem 1.5rem;
}

.entry-thumbnail img {
    display: block;
    object-fit: cover;
    width: 100%;
}

.entry-thumbnail-large img {
    height: 64rem;
}

.entry-thumbnail-small img {
    height: 14rem;
}

#site-categories {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
}

.category-media-link {
    background-color: #333;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.category-media-link .category-panel-overlay:before,
.category-media-link .category-panel-overlay:after {
    position: absolute;
    left: 2rem;
    right: 2rem;
    top: 2rem;
    bottom: 2rem;
    content: '';
    filter: alpha(opacity=0);
    opacity: 0;
    z-index: 200;
    -o-transition: opacity .35s, transform .35s;
    -ms-transition: opacity .35s, transform .35s;
    -moz-transition: opacity .35s, transform .35s;
    -webkit-transition: opacity .35s, transform .35s;
    transition: opacity .35s, transform .35s;
}

.category-media-link .category-panel-overlay:before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
}

.category-media-link .category-panel-overlay:after {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
}

.category-media-link:hover .category-panel-overlay:before,
.category-media-link:hover .category-panel-overlay:after,
.category-media-link:focus .category-panel-overlay:before,
.category-media-link:focus .category-panel-overlay:after {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.feat-text {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.20);
    width: 100%;
    -o-transition: .8s;
    -ms-transition: .8s;
    -moz-transition: .8s;
    -webkit-transition: .8s;
}

.feat-text .category-title {
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    padding: 2rem;
    width: 100%;
}

.category-media-link,
.feat-text {
    min-height: 28rem;
}

@media ( min-width: 782px ) {
    .column-lg-4 .category-media-link,
    .column-lg-4 .feat-text {
        min-height: 20rem;
    }

    .column-lg-2 .category-media-link,
    .column-lg-2 .feat-text {
        min-height: 40rem;
    }
}

/* --------------------------------------------------------------------------------------------- */
/*	7a. Template: Cover Template
/* --------------------------------------------------------------------------------------------- */
.cover-header {
    display: flex;
    overflow: hidden;
}

.cover-header-inner-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
}

.cover-header-inner {
    padding: 10rem 0 4rem 0;
    width: 100%;
}

.cover-header img {
    position: absolute;
    left: -9999rem;
}

.cover-color-overlay,
.cover-color-overlay:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}

.cover-color-overlay:before {
    background: currentColor;
    content: "";
    display: block;
}

.cover-header .entry-header {
    color: #fff;
    position: relative;
    width: 100%;
}

.cover-header h1, .cover-header h2, .cover-header h3, .cover-header h4, .cover-header h5, .cover-header h6 {
    color: inherit;
}

.cover-header .entry-header a {
    color: inherit;
}

/* To The Content ---------------------------- */
.to-the-content-wrapper {
    margin-top: 2.5rem;
}

.to-the-content {
    align-items: center;
    display: flex;
    text-decoration: none;
}

.to-the-content .icon {
    transition: transform .1s linear;
}

.to-the-content .icon svg {
    height: 3.2rem;
    width: 3.2rem;
}

.to-the-content .text {
    font-size: 1.5rem;
    font-weight: 500;
    margin-left: 1.5rem;
}

.to-the-content:hover .icon {
    transform: scale(1.1);
}

.to-the-content:hover .text {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------------------------- */
/*	7b. Template: Only Content
/* --------------------------------------------------------------------------------------------- */
.has-only-content .post-inner {
    padding: 0;
}

/* --------------------------------------------------------------------------------------------- */
/*	7c. Template: Full Width
/* --------------------------------------------------------------------------------------------- */
.has-full-width-content .entry-content,
.has-full-width-content .entry-content .alignwide {
    max-width: 100%;
    width: 100%;
}

.has-full-width-content .entry-content .alignfull {
    margin-left: calc(50% - 50vw);
    max-width: 100vw;
    width: 100vw;
}

/* --------------------------------------------------------------------------------------------- */
/*	7d. Template: Full Width with Only Content
/* --------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------- */
/*	8. Post: Archive
/* --------------------------------------------------------------------------------------------- */
/* Archive Header ---------------------------- */
.archive-title {
    margin: 0;
}

.archive-header {
    margin-bottom: 5rem;
}

/* Preview Post ------------------------------ */
.preview-post .preview-header,
.preview-post .preview-footer {
    padding-left: 2rem;
    padding-right: 2rem;
}

.preview-post .preview-header,
.preview-post .preview-media {
    margin-bottom: 1rem;
    position: relative;
}

.preview-post.has-post-thumbnail .preview-media .post-meta-wrapper {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.preview-excerpt {
    margin: 1rem 0 2rem;
    font-size: 1.4rem;
    opacity: 0.75;
}

.preview-excerpt p:last-child {
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------------------------- */
/*	9. Post: Single
/* --------------------------------------------------------------------------------------------- */
/* Post Header ------------------------------- */
.intro-text {
    margin: 2rem 0 0;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.5rem;
    font-weight: 600;
    gap: 1rem;
    list-style: none;
    margin: 0;
}

.post-meta li {
    flex-shrink: 0;
    margin: 0;
}

.post-meta a {
    color: inherit;
    text-decoration: none;
}

.post-meta a:hover {
    text-decoration: underline;
}

.post-meta .meta-wrapper {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
}

.post-meta .meta-icon {
    flex-shrink: 0;
    margin-right: 1rem;
}

.sticky .post-sticky {
    color: inherit;
}

.post-meta .icon-chevron-circled .meta-icon svg {
    width: 1.8rem;
    height: 1.8rem;
}

.post-meta .post-author .meta-icon svg {
    width: 1.6rem;
    height: 1.8rem;
}

.post-meta .post-categories .meta-icon svg {
    width: 1.8rem;
    height: 1.7rem;
}

.post-meta .post-comment-link .meta-icon svg {
    width: 1.8rem;
    height: 1.8rem;
    transform: translateY(.1rem);
}

.post-meta .post-date .meta-icon svg {
    width: 1.7rem;
    height: 1.8rem;
}

.post-meta .post-edit .meta-icon svg {
    width: 1.8rem;
    height: 1.8rem;
}

.post-meta .post-sticky .meta-icon svg {
    width: 1.5rem;
    height: 1.8rem;
}

.post-meta .post-tags .meta-icon svg {
    width: 1.8rem;
    height: 1.8rem;
}

/* Featured Media ---------------------------- */
.featured-media {
    margin-top: 4rem;
    position: relative;
}

.featured-media img {
    width: 100%;
}

.featured-media figcaption {
    margin: 1.5rem auto 0 auto;
}

.post-inner {
    padding-top: 5rem;
}

/* Post Footer ------------------------------- */
/* AUTHOR BIO */
:root .author-bio {
    margin: 4rem auto 0;
    width: 100%;
    max-width: 58rem;
}

.author-bio {
    border-radius: .4rem;
    padding: 2rem;
    position: relative;
}

.author-bio:before {
    border: .6rem solid transparent;
    border-bottom-color: currentColor;
    content: "";
    display: block;
    position: absolute;
    left: 3.1rem;
    bottom: 100%;
}

.author-bio-inner > * + * {
    margin-top: 1.6rem;
}

.author-bio-header {
    align-items: center;
    display: flex;
}

.author-bio-header .avatar {
    border-radius: 50%;
    flex-shrink: 0;
    height: 3.6rem;
    margin: 0 1.6rem 0 0;
    width: 3.6rem;
}

.author-bio-title {
    font-size: 2.1rem;
    margin: 0;
}

.author-bio-title a {
    color: inherit;
    text-decoration: none;
}

.author-bio-title a:hover {
    text-decoration: underline;
}

.author-bio-description > *:first-child {
    margin-top: 0;
}

.author-bio-description > *:last-child {
    margin-bottom: 0;
}

/* POST NAV LINKS */
.post-nav-links {
    border-radius: .4rem;
    display: flex;
    flex-wrap: wrap;
    font-size: .9em;
    font-weight: 600;
    line-height: 1;
    margin-top: 3em;
    padding: 0 .25em;
}

.post-nav-links > * {
    padding: 1em .75em;
}

/* Single Pagination ------------------------- */
.post-navigation {
    border-color: #E1E1E3;
    border-style: solid;
    border-width: .1rem 0;
    font-size: 1.8rem;
    margin-top: 5rem;
    padding: 3rem 0;
}

.post-navigation .nav-links {
    display: flex;
    flex-direction: column;
}

.post-navigation .nav-links > div + div {
    margin-top: 1rem;
}

.post-navigation a {
    align-items: baseline;
    color: inherit;
    display: flex;
    font-weight: 500;
    text-decoration: none;
}

.post-navigation .arrow {
    margin-right: 1rem;
}

.post-navigation a:hover .post-title {
    text-decoration: underline;
}

/* Related Posts ----------------------------- */
.related-posts {
    border-top: .1rem solid #E1E1E3;
    margin-top: 5rem;
    padding-top: 5rem;
}

.has-single-pagination.not-showing-comments .related-posts {
    border-top: none;
    padding-top: 0;
}

.related-posts .related-posts-title {
    margin-top: 0;
}

/* --------------------------------------------------------------------------------------------- */
/*	10. Blocks
/* --------------------------------------------------------------------------------------------- */
/* Block Colors ------------------------------ */
.has-text-color a {
    color: inherit;
}

/* CUSTOM COLORS */
:root .has-accent-color {
    color: #b14a37;
}

:root .has-primary-color {
    color: #1A1B1F;
}

:root .has-secondary-color {
    color: #747579;
}

:root .has-border-color {
    color: #E1E1E3;
}

:root .has-light-background-color {
    color: #FFFFFF;
}

:root .has-background-color {
    color: #FFF;
}

:root .has-buttons-background-color {
    color: #b14a37;
}

:root .has-buttons-text-color {
    color: #fff;
}

:root .has-accent-background-color {
    background-color: #b14a37;
}

:root .has-primary-background-color {
    background-color: #1A1B1F;
}

:root .has-secondary-background-color {
    background-color: #747579;
}

:root .has-border-background-color {
    background-color: #E1E1E3;
}

:root .has-light-background-background-color {
    background-color: #FFFFFF;
}

:root .has-background-background-color {
    background-color: #FFF;
}

:root .has-buttons-background-background-color {
    background-color: #b14a37;
}

:root .has-buttons-text-background-color {
    background-color: #fff;
}

/* Block Typography Classes ------------------ */
.has-text-align-left {
    text-align: left;
}

.has-text-align-center {
    text-align: center;
}

.has-text-align-right {
    text-align: right;
}

.has-text-align-justify {
    text-align: justify;
}

/* Block: Base Margins ----------------------- */
:root *[class*="_inner-container"] > *:first-child {
    margin-top: 0;
}

:root *[class*="_inner-container"] > *:last-child {
    margin-bottom: 0;
}

.wp-block-archives,
.wp-block-button,
.wp-block-buttons,
.wp-block-calendar,
.wp-block-categories,
.wp-block-code,
.wp-block-columns,
.wp-block-cover,
.wp-block-cover-image,
.wp-block-embed,
.wp-block-file,
.wp-block-gallery,
.wp-block-group,
.wp-block-image,
.wp-block-latest-comments,
.wp-block-latest-posts,
.wp-block-media-text,
.wp-block-preformatted,
.wp-block-pullquote,
.wp-block-quote,
.wp-block-quote.is-large,
.wp-block-quote.is-style-large,
.wp-block-search,
.wp-block-social,
.wp-block-tag-cloud,
.wp-block-verse,
.wp-block-video {
    margin-bottom: 3rem;
    margin-top: 3rem;
}

/* Block: Shared Nesting Alignment Resets ---- */
[class*="__inner-container"] .wp-block-group:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright),
[class*="__inner-container"] .wp-block-cover:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright) {
    margin-left: auto;
    margin-right: auto;
    max-width: 58rem;
}

.alignfull > [class*="__inner-container"] > .wp-block-group.alignwide,
.alignfull > [class*="__inner-container"] > .wp-block-group:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright),
.alignfull > [class*="__inner-container"] > .wp-block-cover.alignwide,
.alignfull > [class*="__inner-container"] > .wp-block-cover:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright) {
    margin-left: auto;
    margin-right: auto;
}

.alignfull > [class*="__inner-container"] > .wp-block-group:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright),
.alignfull > [class*="__inner-container"] > .wp-block-cover:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright) {
    margin-left: 0;
}

/* Block: _Shared Lists ---------------------- */
.wp-block-archives,
.wp-block-categories,
.wp-block-latest-posts,
.wp-block-latest-comments {
    list-style: none;
    margin: 4rem 0;
}

.wp-block-archives ul,
.wp-block-categories ul,
.wp-block-latest-posts ul,
.wp-block-latest-comments ul {
    list-style: none;
}

.wp-block-archives li,
.wp-block-categories li,
.wp-block-latest-posts li,
.wp-block-latest-comments li {
    line-height: 1.2;
    margin: 2rem 0 0 0;
}

.wp-block-archives li li,
.wp-block-categories li li,
.wp-block-latest-posts li li {
    margin-left: 2rem;
}

.wp-block-archives li > a,
.wp-block-categories li > a,
.wp-block-latest-posts li > a,
.wp-block-latest-comments li > a {
    font-size: 1.25em;
    font-weight: 700;
    text-decoration: none;
}

.wp-block-archives.aligncenter,
.wp-block-categories.aligncenter {
    text-align: center;
}

/* Block: Archives --------------------------- */
/* Block: Audio ------------------------------ */
.wp-block-audio audio {
    width: 100%;
}

/* Block: Button ----------------------------- */
.wp-block-button:not(.alignleft):not(.alignright):first-child {
    margin-top: 0;
}

.wp-block-button:not(.alignleft):not(.alignright):last-child {
    margin-bottom: 0;
}

.is-style-squared .wp-block-button__link {
    border-radius: 0;
}

.is-style-outline .wp-block-button__link:not(.has-text-color) {
    color: #b14a37;
}

.is-style-outline .wp-block-button__link,
.wp-block-button__link.is-style-outline {
    background-color: transparent;
    border: .2rem solid currentColor;
    padding: calc(1.175em - .2rem) calc(1.75em - .2rem);
}

.wp-block-button__link.is-style-outline {
    color: #b14a37;
}

.wp-block-buttons:not([class*="is-content-justification-"]).aligncenter {
    justify-content: center;
}

.wp-block-buttons:not([class*="is-content-justification-"]).alignright {
    justify-content: flex-end;
}

/* Block: Buttons ---------------------------- */
.wp-block-buttons .wp-block-button {
    margin-top: 0;
}

/* Block: Calendar --------------------------- */
.wp-block-calendar {
    border-color: #E1E1E3;
}

:root .wp-block-calendar * {
    border-color: inherit;
}

.wp-block-calendar table {
    font-family: inherit;
    margin-bottom: 1rem;
}

.wp-block-calendar table caption,
.wp-block-calendar table tbody {
    color: inherit;
}

.wp-block-calendar table th {
    background-color: transparent;
}

:root .wp-block-calendar td,
:root .wp-block-calendar th {
    padding: .8rem;
}

/* Block: Categories ------------------------- */
/* Block: Classic ---------------------------- */
/* Block: Code ------------------------------- */
/* Block: Columns ---------------------------- */
.wp-block-column {
    margin-bottom: 3rem;
}

.wp-block-column > *:first-child {
    margin-top: 0;
}

.wp-block-column > *:last-child {
    margin-bottom: 0;
}

@media ( max-width: 599px ) {
    /* While columns are stacked */
    .wp-block-column:last-child {
        margin-bottom: 0;
    }
}

/* Block: Cover ------------------------------ */
.wp-block-cover,
.wp-block-cover-image {
    color: #fff;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.wp-block-cover-image.alignleft, .wp-block-cover-image.alignright,
.wp-block-cover.alignleft, .wp-block-cover.alignright {
    max-width: 30.5rem;
    width: 100%;
}

.wp-block-cover-image .wp-block-cover__inner-container,
.wp-block-cover .wp-block-cover__inner-container {
    color: inherit;
    margin: 0 auto;
    max-width: 117rem;
    width: calc(100% - 4rem);
    z-index: 1;
}

.wp-block-cover-image .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text,
section.wp-block-cover-image > h2 {
    max-width: 58rem;
}

.wp-block-cover-image .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text {
    font-size: inherit;
}

.wp-block-cover a,
.wp-block-cover-image a {
    color: inherit;
}

/* Block: Embed ------------------------------ */
.wp-block-embed {
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.wp-block-embed.aligncenter * {
    margin-left: auto;
    margin-right: auto;
}

.wp-block-embed figcaption {
    margin-bottom: 0;
    margin-top: 1.5rem;
}

/* Block: File ------------------------------- */
.wp-block-file {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    width: 100%;
}

.wp-block-file.aligncenter {
    text-align: center;
    align-items: center;
}

.wp-block-file.alignright {
    text-align: right;
    align-items: flex-end;
}

.wp-block-file a:not( .wp-block-file__button ) {
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
}

.wp-block-file .wp-block-file__button {
    display: block;
    flex-shrink: 0;
    font-size: .8em;
    padding: 1em 1.25em;
}

:root .wp-block-file a.wp-block-file__button {
    color: #fff;
    opacity: 1;
}

.wp-block-file a.wp-block-file__button:hover {
    text-decoration: underline;
}

.wp-block-file > *:first-child {
    margin: 0 0 1rem 0;
}

.wp-block-file > a:only-child {
    margin: 0;
}

/* Block: Gallery ---------------------------- */
.wp-block-gallery > .blocks-gallery-grid {
    margin-bottom: -1.6rem;
    width: 100%;
}

.wp-block-gallery figure > a {
    width: 100%;
}

/* Block: Group ------------------------------ */
.wp-block-group.has-background {
    padding: 3rem 2rem;
}

/* Block: HTML ------------------------------- */
/* Block: Image ------------------------------ */
.wp-block-image.alignwide img,
.wp-block-image .alignwide img,
.wp-block-image.alignfull img,
.wp-block-image .alignfull img {
    width: 100%;
}

.wp-block-image.alignleft,
.wp-block-image .alignleft {
    margin-right: 2rem;
}

.wp-block-image.alignright,
.wp-block-image .alignright {
    margin-left: 2rem;
}

.wp-block-image figcaption {
    margin: 1.5rem 0 0;
}

/* Block: Latest Comments -------------------- */
.wp-block-latest-comments__comment {
    font-size: inherit;
}

.wp-block-latest-comments__comment-meta {
    font-weight: 700;
}

.wp-block-latest-comments__comment-meta a {
    text-decoration: none;
}

/* HAS EXCERPT */
.wp-block-latest-comments__comment-excerpt p {
    font-size: .9em;
    line-height: inherit;
}

/* HAS TIME */
.wp-block-latest-comments time {
    color: #747579;
    font-size: .9em;
    font-weight: 400;
    margin-top: .2rem;
}

/* Block: Latest Posts ----------------------- */
.wp-block-latest-posts li > *:first-child {
    margin-top: 0;
}

.wp-block-latest-posts__featured-image {
    margin-bottom: 1.6rem;
}

/* STYLE: GRID */
.wp-block-latest-posts.is-grid {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.wp-block-latest-posts.is-grid li {
    border-top: .1rem solid #E1E1E3;
    margin: 0 0 2.4rem 0;
    padding-top: 1.2rem;
    width: 100%;
}

.wp-block-latest-posts.is-grid li > a {
    font-size: 1.25em;
}

.wp-block-latest-posts.is-grid a:hover {
    text-decoration: underline;
}

.wp-block-latest-posts time {
    color: #747579;
    font-size: .9em;
    margin: .8rem 0 0;
}

.wp-block-latest-posts__post-excerpt {
    font-size: .95em;
    line-height: 1.4;
    margin-top: 1.5rem;
}

/* Block: List ------------------------------- */
/* Block: Media and Text --------------------- */
.wp-block-media-text .wp-block-media-text__content {
    padding: 2.5rem;
}

.wp-block-media-text .wp-block-media-text__content > *:first-child {
    margin-top: 0;
}

.wp-block-media-text .wp-block-media-text__content > *:last-child {
    margin-bottom: 0;
}

/* Block: More ------------------------------- */
/* Block: Navigation Menu -------------------- */
/* Block: Page Break ------------------------- */
/* Block: Paragraph -------------------------- */
p.has-background {
    padding: 2rem;
}

/* Block: Preformatted ----------------------- */
/* Block: Pullquote -------------------------- */
.wp-block-pullquote {
    border: none;
    padding: 0;
    text-align: center;
}

.wp-block-pullquote blockquote {
    border: none;
    margin: 0;
    padding: 0;
}

.wp-block-pullquote p {
    font-size: 1.75em;
    font-weight: 700;
    line-height: 1.25;
}

.wp-block-pullquote.is-style-solid-color blockquote p,
.wp-block-pullquote.alignleft p,
.wp-block-pullquote.alignright p {
    font-size: 1.75em;
}

.entry-content .wp-block-pullquote p {
    max-width: 100%;
}

/* STYLE: SOLID */
.wp-block-pullquote.is-style-solid-color.has-background {
    padding: 3rem 2rem;
}

.wp-block-pullquote.is-style-solid-color cite {
    color: inherit;
}

.wp-block-pullquote.is-style-solid-color blockquote {
    max-width: 100%;
    text-align: center;
}

/* Block: Quote ------------------------------ */
.wp-block-quote.has-text-align-center,
.wp-block-quote[style*="text-align:center"],
.wp-block-quote[style*="text-align: center"] {
    border: none;
    padding: 0;
}

.wp-block-quote.has-text-align-right,
.wp-block-quote[style*="text-align:right"],
.wp-block-quote[style*="text-align: right"] {
    border-width: 0 .2rem 0 0;
    padding-left: 0;
    padding-right: 2rem;
}

.wp-block-quote p {
    max-width: 100%;
}

/* STYLE: LARGE */
.wp-block-quote.is-style-large {
    border: none;
    font-size: 1.75em;
    font-weight: 700;
    margin: 4rem 0;
    padding: 0;
}

.wp-block-quote.is-large p,
.wp-block-quote.is-style-large p {
    font-size: inherit;
    font-style: normal;
    line-height: 1.25;
}

.wp-block-quote.is-large cite,
.wp-block-quote.is-large footer,
.wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large footer {
    font-size: 1.4rem;
    text-align: inherit;
}

/* Block: RSS -------------------------------- */
/* Block: Search ----------------------------- */
.wp-block-search {
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
}

.wp-block-search .wp-block-search__label {
    width: 100%
}

.wp-block-search .wp-block-search__input {
    flex-grow: 1;
    width: 20rem;
}

.wp-block-search .wp-block-search__button {
    flex-shrink: 0;
    margin-left: 1rem;
}

/* Block: Separator -------------------------- */
.wp-block-separator.is-style-wide {
    max-width: 117rem;
    width: calc(100vw - 5rem);
}

.wp-block-separator.is-style-dots {
    background: none;
    border: none;
    text-align: center;
    max-width: none;
    line-height: 1;
    height: auto
}

.wp-block-separator.is-style-dots:before {
    color: inherit;
    content: "\00b7 \00b7 \00b7";
    font-size: 2rem;
    letter-spacing: 2em;
    padding-left: 2em;
}

/* Block: Social ----------------------------- */
.wp-social-link {
    margin-bottom: 0;
    margin-left: 0;
    margin-top: 0;
}

/* Block: Spacer ----------------------------- */
/* Block: Table ------------------------------ */
/* STYLE: STRIPES */
table.is-style-stripes * {
    border: none;
}

.wp-block-table.is-style-stripes {
    border: none;
}

table.is-style-stripes tbody tr:nth-child( odd ),
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background: #F1F1F3;
}

/* Block: Tag Cloud -------------------------- */
/* Block: Verse ------------------------------ */
/* Block: Video ------------------------------ */
/* CoBlock: Features ------------------------- */
.wp-block-coblocks-features .wp-block-coblocks-feature .wp-block-coblocks-icon {
    margin-bottom: 2.3rem;
}

.wp-block-coblocks-features .wp-block-coblocks-feature h1,
.wp-block-coblocks-features .wp-block-coblocks-feature h2,
.wp-block-coblocks-features .wp-block-coblocks-feature h3,
.wp-block-coblocks-features .wp-block-coblocks-feature h4,
.wp-block-coblocks-features .wp-block-coblocks-feature h5,
.wp-block-coblocks-features .wp-block-coblocks-feature h6 {
    margin-bottom: 2rem !important;
}

@media ( max-width: 600px ) {
    .wp-block-coblocks-features .wp-block-coblocks-feature__inner.has-no-padding {
        padding: 0;
    }
}

/* CoBlock: Buttons -------------------------- */
.wp-block-coblocks-buttons {
    margin: 3rem 0;
}

.wp-block-coblocks-buttons .wp-block-coblocks-buttons__inner {
    flex-wrap: wrap;
    margin: -1rem 0 0 -2rem;
}

.wp-block-coblocks-buttons .wp-block-coblocks-buttons__inner .wp-block-button {
    margin: 1rem 0 0 2rem !important;
}

/* --------------------------------------------------------------------------------------------- */
/*	11. Entry Content
/* --------------------------------------------------------------------------------------------- */
.entry-content {
    line-height: 1.6;
    max-width: 58rem;
    margin-left: auto;
    margin-right: auto;
}

:root .entry-content > *:first-child {
    margin-top: 0;
}

:root .entry-content > *:last-child {
    margin-bottom: 0;
}

/* Font Sizes -------------------------------- */
:root .has-small-font-size {
    font-size: .842em;
}

:root .has-regular-font-size,
:root .has-normal-font-size {
    font-size: 1em;
}

:root .has-medium-font-size {
    font-size: 1.1em;
}

:root .has-large-font-size {
    font-size: 1.25em;
}

:root .has-larger-font-size {
    font-size: 1.5em;
}

/* Alignments -------------------------------- */
.alignnone,
.aligncenter,
.alignleft,
.alignright,
.alignwide,
.alignfull {
    margin: 3rem 0;
}

.alignnone,
.aligncenter,
.alignleft,
.alignright {
    max-width: 100%;
}

.alignfull {
    margin: 5rem 0;
}

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

.entry-content > .alignwide {
    margin-left: calc(25% - 25vw);
    margin-right: calc(25% - 25vw);
}

.aligncenter,
.aligncenter img {
    margin-left: auto;
    margin-right: auto;
}

.alignleft:not(.is-resized),
.alignright:not(.is-resized) {
    max-width: 50%;
}

.alignleft {
    float: left;
    margin: .3rem 2rem 2rem 0;
}

.alignright {
    float: right;
    margin: .3rem 0 2rem 2rem;
}

/* STACKED BACKGROUND BLOCKS */
.alignwide.wp-block-cover + .alignwide.wp-block-cover,
.alignwide.wp-block-cover + .alignwide.has-background,
.alignwide.has-background + .alignwide.wp-block-cover,
.alignwide.has-background + .alignwide.has-background {
    margin-top: -3rem;
}

.alignfull.wp-block-cover + .alignfull.wp-block-cover,
.alignfull.wp-block-cover + .alignfull.has-background,
.alignfull.has-background + .alignfull.wp-block-cover,
.alignfull.has-background + .alignfull.has-background {
    margin-top: -5rem;
}

/* Entry Media ------------------------------- */
.alignfull > figcaption,
.alignfull > .wp-caption-text {
    margin-left: auto;
    margin-right: auto;
    max-width: 117rem;
    width: calc(100% - 5rem);
}

/* -------------------------------------------------------------------------------- */
/*	12. Comments
/* -------------------------------------------------------------------------------- */
/* Comment Headers --------------------------- */
.comments-wrapper {
    margin: 5rem auto 0;
    max-width: 58rem;
}

.comments-header {
    align-items: baseline;
    display: flex;
    justify-content: space-between;
}

.comment-reply-title {
    margin: 0 0 3rem 0;
}

.comment-reply-title small {
    display: block;
    font-size: 1.8rem;
    margin-top: .6rem;
}

/* Comment Item ------------------------------ */
/* COMMENT HEADER */
.comments .comment,
.comments .pingback,
.comments .trackback,
.comments .review {
    padding-top: 3.5rem;
}

div.comment:first-of-type {
    margin-top: 3.5rem;
    padding-top: 0;
}

.comments .comments-header + div {
    margin-top: 0;
    padding-top: 0;
}

.comment-body {
    position: relative;
}

.comments a {
    color: inherit;
}

.comment .comment {
    border-left: .1rem solid #e1e1e3;
    padding-left: 5%;
}

.comment-meta {
    line-height: 1.1;
}

.comment-meta {
    display: flex;
    flex-wrap: wrap;
    margin: -.5em 0 1.2em -1.2em;
}

.comment-meta .avatar {
    border-radius: 50%;
    display: none;
    height: 6rem;
    width: 6rem;
}

.comment-meta a {
    border-bottom: .1rem solid transparent;
    text-decoration: none;
    transition: border-color .15s linear;
}

.comment-meta a:hover {
    text-decoration: underline;
}

.comment-author,
.comment-metadata {
    margin: .5em 0 0 1.2em;
}

.comment-author {
    font-weight: 500;
}

.comment-author .url {
    text-decoration: underline;
}

/* COMMENT CONTENT */
:root .comment-content > *:first-child {
    margin-top: 0;
}

:root .comment-content > *:last-child {
    margin-bottom: 0;
}

.comment-content p {
    margin-bottom: 1em;
}

.comment-content h1 {
    font-size: 2em;
}

.comment-content h2 {
    font-size: 1.8em;
}

.comment-content h3 {
    font-size: 1.6em;
}

.comment-content h4 {
    font-size: 1.4em;
}

.comment-content h5 {
    font-size: 1.2em;
}

.comment-content h6 {
    font-size: 1em;
}

/* COMMENT FOOTER */
.comment-footer-meta {
    line-height: 1;
    margin: 1.2em 0 0;
}

.comment-footer-meta > * + * {
    margin-left: 1.2em;
}

.bypostauthor .comment-footer-meta .by-post-author {
    display: inline;
}

.comment-footer-meta a {
    text-decoration: none;
}

.comment-footer-meta a:hover {
    text-decoration: underline;
}

/* Pingbacks & Trackbacks -------------------- */
.pingback .comment-meta,
.trackback .comment-meta {
    padding-left: 0;
}

/* Comments Pagination ----------------------- */
.comments-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 6rem;
    text-align: center;
}

.comments-pagination.only-next {
    justify-content: flex-end;
}

.comments-pagination .page-numbers {
    display: none;
    text-decoration: none;
}

.comments-pagination .page-numbers:hover {
    text-decoration: underline;
}

.comments-pagination .prev,
.comments-pagination .next {
    display: block;
}

.comments-pagination .prev {
    left: 0;
}

.comments-pagination .next {
    right: 0;
    text-align: right;
}

/* Comment Respond --------------------------- */
.comment-respond:not(:first-child) {
    padding-top: 6rem;
}

.comment-respond form {
    margin-top: 2.2rem;
}

.comment-respond form p.logged-in-as {
    font-size: 1em;
    line-height: 1.25;
    margin: -2rem 0 3rem 0;
}

.comment-respond form:after {
    clear: both;
    content: "";
    display: block;
}

.comment-respond form .logged-in-as a {
    color: inherit;
    text-decoration: none;
}

.comment-respond form .logged-in-as a:hover {
    text-decoration: underline;
}

.comment-respond form p {
    line-height: 1.1;
    margin-bottom: 2rem;
    width: 100%;
}

.comment-form-cookies-consent {
    align-items: baseline;
    display: flex;
}

.comment-respond form > p:last-of-type {
    margin-bottom: 0;
}

.comment-respond label {
    display: block;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond textarea {
    margin-bottom: 0;
}

.comment-respond #submit {
    display: block;
    margin-left: auto;
}

/* Reply Respond ----------------------------- */
.comments .comment-respond {
    padding: 3rem 0 0;
}

/* --------------------------------------------------------------------------------------------- */
/*	13. Site Pagination
/* --------------------------------------------------------------------------------------------- */
.pagination-wrapper {
    margin-top: 6rem;
}

.no-js .pagination-wrapper {
    display: block !important;
}

.pagination-wrapper.pagination-type-button.loaded-last-page,
.pagination-wrapper.pagination-type-scroll.loaded-last-page {
    display: none;
}

#pagination {
    height: 6rem;
    position: relative;
    text-align: center;
}

.no-js #pagination,
#pagination.pagination-type-links {
    height: auto;
}

#load-more,
#pagination .loading-icon,
#pagination .out-of-posts {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: color .2s linear, opacity .2s linear, transform .2s ease-out;
}

#pagination:not(.last-page) .out-of-posts,
#pagination.loading #load-more,
#pagination.last-page #load-more,
#pagination:not(.loading) .loading-icon {
    left: -9999rem;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) scale(0.5);
    transition: opacity .2s linear, transform .2s ease-out, left 0s .2s, right 0s .2s;
}

#pagination:not(.pagination-type-button) #load-more {
    display: none;
}

html.js body:not(.pagination-type-links) .link-pagination {
    display: none;
}

.no-js #load-more,
.no-js #pagination .loading-icon {
    display: none;
}

#pagination .out-of-posts {
    margin: 0;
    text-align: center;
    width: 100%;
}

/* LINK PAGINATION */
.link-pagination {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    font-weight: 600;
    justify-content: space-between;
}

.link-pagination.only-next {
    justify-content: flex-end;
}

.link-pagination a {
    text-decoration: none;
}

.link-pagination a:hover {
    text-decoration: underline;
}

.link-pagination a + a {
    margin-left: 2rem;
}

/* PREVIOUS POSTS LINK WRAPPER */
.previous-posts-link-wrapper {
    margin-bottom: 3rem;
    text-align: center;
}

.previous-posts-link-wrapper a {
    color: inherit;
}

/* --------------------------------------------------------------------------------------------- */
/*	14. Error 404
/* --------------------------------------------------------------------------------------------- */
.error404 #site-content {
    align-items: center;
    display: flex;
    text-align: center;
}

.error404 #site-content .search-form {
    justify-content: center;
    margin-top: 3rem;
}

/* --------------------------------------------------------------------------------------------- */
/*	15. WooCommerce
/* --------------------------------------------------------------------------------------------- */
body.woocommerce .entry-content,
body.woocommerce-page .entry-content {
    max-width: 100%;
}

/* -------------------------------------------------------------------------------- */
/*	16.	Widgets
/* -------------------------------------------------------------------------------- */
/* Widget Base ------------------------------- */
.widget {
    border-top: .1rem solid #E1E1E3;
    margin-top: 3rem;
    padding-top: 2.5rem;
}

.widget:first-child {
    margin-top: 0;
}

.widget-content > *:first-child {
    margin-top: 0;
}

.widget-content > *:last-child {
    margin-bottom: 0;
}

.widget-title {
    margin: 0 0 2.4rem;
}

/* Base List Widget -------------------------- */
.smthing-widget-list,
.widget_archive ul,
.widget_categories ul,
.widget_pages ul,
.widget_meta ul,
.widget_nav_menu ul {
    list-style: none;
    margin-left: 0;
}

.widget_archive ul ul,
.widget_categories ul ul,
.widget_pages ul ul,
.widget_meta ul ul,
.widget_nav_menu ul ul {
    margin: 0 0 0 3rem;
}

.widget_archive li,
.widget_categories li,
.widget_pages li,
.widget_meta li,
.widget_nav_menu li {
    margin: 0 !important;
}

.widget_archive a,
.widget_categories a,
.widget_pages a,
.widget_meta a,
.widget_nav_menu a {
    color: inherit;
    text-decoration: none;
}

.widget_archive a:hover,
.widget_categories a:hover,
.widget_pages a:hover,
.widget_meta a:hover,
.widget_nav_menu a:hover {
    text-decoration: underline;
}

/* Smthing Widget List ----------------------- */
.smthing-widget-list {
    margin-left: 0;
}

.smthing-widget-list li {
    margin: 0 0 2rem;
}

.smthing-widget-list li:last-child {
    margin-bottom: 0;
}

.smthing-widget-list a {
    align-items: center;
    color: inherit;
    display: flex;
    text-decoration: none;
}

.smthing-widget-list .post-image {
    background: #fff no-repeat center;
    background-size: cover;
    border-radius: 50%;
    flex-shrink: 0;
    height: 7rem;
    width: 7rem;
}

.smthing-widget-list .inner {
    margin-left: 1.5rem;
}

.smthing-widget-list .title {
    margin: 0;
}

.smthing-widget-list p {
    font-size: 1.6rem;
    margin: .5rem 0 0;
}

.smthing-widget-list p ins {
    text-decoration: none;
}

.smthing-widget-list a:hover {
    text-decoration: none;
}

.smthing-widget-list a:hover .title {
    text-decoration: underline;
}

.profile-bio-widget {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.profile-bio-widget .profile-bio-image {
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
}

.profile-bio-widget .social-widget {
    justify-content: center;
}

/* Widget: Calendar -------------------------- */
.calendar_wrap table {
    font-size: 1em;
    margin: 0;
}

.calendar_wrap caption {
    font-weight: 600;
    padding: 2.5% 1.75%;
    text-align: center;
    text-transform: capitalize;
}

.calendar_wrap th,
.calendar_wrap td {
    font-size: 1em;
    font-weight: 500;
    line-height: 1;
    padding: 2.5% 2.5% 1.75% 2.5%;
    text-align: center;
}

.calendar_wrap tfoot td {
    border-bottom: none;
}

.calendar_wrap tfoot a {
    text-decoration: none;
}

.calendar_wrap tfoot #prev {
    text-align: left;
}

.calendar_wrap tfoot #next {
    text-align: right;
}

.wp-calendar-nav {
    display: flex;
    justify-content: space-between;
    margin: 1em 0 0;
}

/* Widget: Image ----------------------------- */
.widget_media_image img {
    width: 100%;
}

/* Widget: Gallery --------------------------- */
.widget_media_gallery .gallery {
    margin: 0 -.4em -.8em -.4em;
    width: calc(100% + .8em);
}

.widget_media_gallery .gallery-item {
    margin: 0 0 .8em 0;
    padding: 0 .4em;
}

/* Widget: Nav Menu -------------------------- */
.widget_nav_menu .widget-content > div > ul {
    margin-left: 0;
}

/* Widget: RSS ------------------------------- */
.widget_rss .rss-widget-icon {
    display: none;
}

.widget_rss .rsswidget {
    font-weight: 600;
    text-decoration: none;
}

.widget_rss .rsswidget:hover {
    text-decoration: underline;
}

.widget_rss .rss-date {
    display: block;
}

.widget_rss cite:before {
    content: "— ";
}

/* Widget: Search ---------------------------- */
.widget_search img {
    display: none;
}

.widget_search .search-form {
    align-items: stretch;
    display: flex;
    flex-wrap: nowrap;
    margin: 0 0 -.8rem -.8rem;
}

.widget_search .search-field,
.widget_search .search-submit {
    margin: 0 0 .8rem .8rem;
}

.widget_search label,
.widget_search .search-field {
    width: 100%;
}

.widget_search .search-submit {
    flex-shrink: 0;
}

/* Widget: Tag Cloud ------------------------- */
.widget_tag_cloud a {
    font-weight: 600;
    margin-right: .5rem;
    text-decoration: none;
    white-space: nowrap;
}

.widget_tag_cloud a:hover {
    text-decoration: underline;
}

.widget_tag_cloud .tag-link-count {
    color: #F9423A;
}

/* Widget: Text ------------------------------ */
.widget_text .widget-content {
    max-width: 50rem;
}

/* --------------------------------------------------------------------------------------------- */
/*	17. Site Footer
/* --------------------------------------------------------------------------------------------- */
#site-footer {
    background-color: #343e47;
    color: #fff;
    padding-top: 6rem;
    margin-top: 6rem;
}

#site-footer a:not(:focus,:hover) {
    color: inherit;
    text-decoration: none;
}

/* Footer Widgets ---------------------------- */
.footer-widgets-outer-wrapper {
    margin-bottom: 6rem;
}

/* footer area bottom ------------------------------ */
.footer-area-bottom {
    background-color: #b14a37;
    color: #fff;
    font-weight: 600;
    padding: 3rem 0;
}

.footer-area-bottom a {
    color: inherit;
    text-decoration: none;
}

.footer-area-bottom a:hover {
    text-decoration: underline;
}

.footer-menu li {
    border-color: #E1E1E3;
    border-style: solid;
    border-width: 0 0 .1rem 0;
    line-height: 1.25;
}

.footer-menu a {
    display: block;
    padding: 1.2rem 0;
}

/* Footer Credits ---------------------------- */
.footer-credits {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    justify-content: space-between;
}

.footer-copyright,
.theme-credits {
    margin: 0;
}

.theme-credits {
    white-space: nowrap;
}

/* --------------------------------------------------------------------------------------------- */
/*	18. Media Queries
/* --------------------------------------------------------------------------------------------- */
@media ( min-width: 700px ) {
    /* Element Base -------------------------- */
    p {
        margin-bottom: 1.22em;
    }

    ul,
    ol {
        margin-bottom: 4rem;
    }

    pre {
        padding: 3rem;
    }

    hr {
        margin: 8rem 0;
    }

    blockquote {
        padding: 0 0 0 2.5rem;
    }

    /* VANILLA GALLERIES */
    .gallery-columns-2 .gallery-item {
        max-width: 50%;
    }

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

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

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

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

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

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

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

    /* INPUTS */
    fieldset {
        padding: 3rem;
    }

    legend {
        padding: 0 1.5rem;
    }

    /* MEDIA */
    figcaption,
    .wp-caption-text {
        margin-top: 1.8rem;
    }

    /* Helper Classes ------------------------ */
    /* SECTIONS */
    section {
        padding: 8rem 0;
    }

    .section-inner {
        width: calc(100% - 8rem);
    }

    /* GRID STRUCTURE */
    /* BREADCRUMBS */
    .breadcrumbs-wrapper {
        margin-bottom: 2rem;
    }

    /* Site Header --------------------------- */
    .header-inner {
        min-height: 10rem;
    }

    .site-title {
        font-size: 4.2rem;
        letter-spacing: -0.2rem;
    }

    .site-logo img {
        max-height: 9rem;
        transition: height .15s linear, width .15s linear, max-height .15s linear;
    }

    .header-inner.is-sticky .site-logo img {
        max-height: 7rem;
    }

    /* Modal: Menu --------------------------- */
    .main-menu {
        left: auto;
        width: 100%;
    }

    .main-menu > li > a,
    .main-menu > li > .ancestor-wrapper > a {
        font-size: 2.4rem;
        padding: 2.5rem 2.5rem 2.5rem 0;
    }

    .main-menu a {
        font-weight: 500;
    }

    .main-menu ul li {
        border-left-width: 0;
    }

    .main-menu ul .ancestor-wrapper > a {
        padding-left: 2.5rem;
    }

    .main-menu ul ul .ancestor-wrapper > a {
        padding-left: 5rem;
    }

    .main-menu ul ul ul .ancestor-wrapper > a {
        padding-left: 7.5rem;
    }

    .main-menu ul ul ul ul .ancestor-wrapper > a {
        padding-left: 10rem;
    }

    .main-menu > li > .ancestor-wrapper a.sub-menu-toggle {
        padding: 0 3rem;
    }

    .main-menu > li > .ancestor-wrapper a.sub-menu-toggle svg {
        height: 1.1rem;
        width: 1.8rem;
    }

    .menu-bottom {
        align-items: center;
        display: flex;
        justify-content: space-between;
        padding: 4.4rem 0;
    }

    .menu-copyright {
        display: block;
        flex-shrink: 0;
        margin-right: 4rem;
    }

    .menu-bottom .social-menu {
        justify-content: flex-end;
    }

    /* Modal Search Form --------------------- */
    .modal-search-form {
        position: relative;
        width: 100%;
    }

    .search-untoggle svg {
        height: 2.5rem;
        width: 2.5rem;
    }


    /* Sub Page ------------------------------ */
    /* Template: Cover Template -------------- */
    .cover-header {
        height: 60rem;
    }

    .cover-header-inner {
        padding: 20rem 0 6rem 0;
    }

    /* Post: Archive ------------------------- */
    .archive-header {
        margin-bottom: 8rem;
    }

    /* Post: Single -------------------------- */
    /* POST HEADER */
    .intro-text {
        font-size: 2rem;
    }

    /* POST FOOTER */
    /* Author Bio */
    .author-bio {
        margin-top: 4rem;
        padding: 3rem;
    }

    .author-bio:before {
        left: 4.4rem;
    }

    .author-bio-inner > * + * {
        margin-top: 2rem;
    }

    .author-bio-header .avatar {
        height: 4.4rem;
        margin: 0 2rem 0 0;
        width: 4.4rem;
    }

    .author-bio-title {
        font-size: 2.4rem;
    }

    /* SINGLE PAGINATION */
    .post-navigation {
        font-size: 2.4rem;
        padding: 3.5rem 0;
        margin-top: 8rem;
    }

    .post-navigation .nav-links {
        flex-direction: row;
        justify-content: space-between;
    }

    .post-navigation .nav-links > div {
        max-width: calc(50% - 2rem);
    }

    .post-navigation .nav-links > div + div {
        margin: 0 0 0 4rem;
    }

    .post-navigation .arrow {
        margin: 0 2rem 0 0;
    }

    .post-navigation .nav-next:only-child {
        margin-left: auto;
    }

    .post-navigation .nav-next a {
        flex-direction: row-reverse;
        text-align: right;
    }

    .post-navigation .nav-next .arrow {
        margin: 0 0 0 2rem;
    }

    /* RELATED POSTS */
    .related-posts {
        margin-top: 8rem;
        padding-top: 6rem;
    }

    /* Blocks -------------------------------- */
    /* BLOCK: BASE MARGINS */
    .wp-block-archives,
    .wp-block-calendar,
    .wp-block-categories,
    .wp-block-code,
    .wp-block-columns,
    .wp-block-cover,
    .wp-block-cover-image,
    .wp-block-embed,
    .wp-block-file,
    .wp-block-gallery,
    .wp-block-group,
    .wp-block-image,
    .wp-block-latest-comments,
    .wp-block-latest-posts,
    .wp-block-media-text,
    .wp-block-preformatted,
    .wp-block-pullquote,
    .wp-block-quote,
    .wp-block-quote.is-large,
    .wp-block-quote.is-style-large,
    .wp-block-search,
    .wp-block-tag-cloud,
    .wp-block-verse,
    .wp-block-video {
        margin-bottom: 4rem;
        margin-top: 4rem;
    }

    /* COBLOCK: BUTTONS */
    .wp-block-coblocks-buttons {
        margin: 4rem 0;
    }

    /* BLOCK: COLUMNS */
    .wp-block-columns.alignwide,
    .wp-block-columns.alignfull {
        margin-bottom: 2rem;
    }

    .wp-block-columns + .wp-block-columns {
        margin-top: 0;
    }

    .wp-block-columns.alignwide + .wp-block-columns.alignwide,
    .wp-block-columns.alignfull + .wp-block-columns.alignfull {
        margin-top: -2rem;
    }

    .wp-block-column {
        font-size: 1.6rem;
        margin-bottom: 4rem;
    }

    /* BLOCK: COVER */
    .wp-block-cover-image .wp-block-cover__inner-container,
    .wp-block-cover .wp-block-cover__inner-container {
        width: calc(100% - 8rem);
    }

    /* BLOCK: EMBED */
    .wp-block-embed {
        margin-bottom: 6rem;
        margin-top: 6rem;
    }

    .wp-block-embed.alignleft,
    .wp-block-embed.alignright {
        margin-top: .5rem;
    }

    .wp-block-embed figcaption {
        margin-top: 1.8rem;
    }

    /* BLOCK: FILE */
    .wp-block-file {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }

    .wp-block-file.aligncenter {
        justify-content: center;
    }

    .wp-block-file.alignright {
        justify-content: flex-end;
        align-items: center;
    }

    .wp-block-file > *:first-child {
        margin: 0 1rem 0 0;
    }

    /* BLOCK: IMAGE */
    .wp-block-image .alignleft,
    .wp-block-image .alignright {
        margin-top: .5rem;
    }

    .wp-block-image.alignleft,
    .wp-block-image .alignleft {
        margin-right: 2.5rem;
    }

    .wp-block-image.alignright,
    .wp-block-image .alignright {
        margin-left: 2.5rem;
    }

    .wp-block-image figcaption {
        margin-bottom: 0;
        margin-top: 1.8rem;
    }

    /* BLOCK: GALLERY */
    .wp-block-gallery.alignwide,
    .wp-block-gallery.alignfull {
        margin-bottom: 4.4rem;
    }

    /* BLOCK: GROUP */
    .wp-block-group.has-background {
        padding: 4rem 3rem;
    }

    /* BLOCK: LATEST POSTS */
    .wp-block-latest-posts.is-grid {
        margin-left: -4rem;
    }

    .wp-block-latest-posts.is-grid li {
        margin: 0 0 4rem 4rem;
        padding-top: 1.6rem;
    }

    .wp-block-latest-posts.is-grid.columns-2 li {
        width: calc((100% / 2) - 4rem);
    }

    .wp-block-latest-posts.is-grid.columns-3 li {
        width: calc((100% / 3) - 4rem);
    }

    .wp-block-latest-posts.is-grid.columns-4 li {
        width: calc((100% / 4) - 4rem);
    }

    .wp-block-latest-posts.is-grid.columns-5 li {
        width: calc((100% / 5) - 4rem);
    }

    .wp-block-latest-posts.is-grid.columns-6 li {
        width: calc((100% / 6) - 4rem);
    }

    .wp-block-latest-posts.is-grid.columns-7 li {
        width: calc((100% / 7) - 4rem);
    }

    .wp-block-latest-posts.is-grid.columns-8 li {
        width: calc((100% / 8) - 4rem);
    }

    .wp-block-latest-posts.is-grid.columns-9 li {
        width: calc((100% / 9) - 4rem);
    }

    .wp-block-latest-posts.is-grid li > a {
        font-size: 1.33em;
    }

    /* BLOCK: MEDIA AND TEXT */
    .wp-block-media-text .wp-block-media-text__content {
        padding: 8%;
    }

    /* BLOCK: PARAGRAPH */
    p.has-background {
        padding: 3rem;
    }

    /* BLOCK: PULLQUOTE */
    .wp-block-pullquote.alignwide p,
    .wp-block-pullquote.alignfull p,
    .wp-block-pullquote.is-style-solid-color.alignfull blockquote p,
    .wp-block-pullquote.is-style-solid-color.alignwide blockquote p {
        font-size: 2.5em;
    }

    .wp-block-pullquote.is-style-solid-color.has-background {
        padding: 4rem 3rem;
    }

    /* BLOCK: SEPARATOR */
    .wp-block-separator.is-style-wide {
        width: calc(100vw - 8rem);
    }

    /* Entry Content ------------------------- */
    /* ALIGNMENTS */
    .alignwide,
    .alignfull {
        margin-bottom: 6rem;
        margin-top: 6rem;
    }

    .alignleft {
        margin: .5rem 2.5rem 2.5rem 0;
    }

    .alignright {
        margin: .5rem 0 2.5rem 2.5rem;
    }


    /* Stacked Background Blocks */
    .alignwide.wp-block-cover + .alignwide.wp-block-cover,
    .alignwide.wp-block-cover + .alignwide.has-background,
    .alignwide.has-background + .alignwide.wp-block-cover,
    .alignwide.has-background + .alignwide.has-background,
    .alignfull.wp-block-cover + .alignfull.wp-block-cover,
    .alignfull.wp-block-cover + .alignfull.has-background,
    .alignfull.has-background + .alignfull.wp-block-cover,
    .alignfull.has-background + .alignfull.has-background {
        margin-top: -6rem;
    }

    /* ENTRY MEDIA */
    .alignfull > figcaption,
    .alignfull > .wp-caption-text {
        width: calc(100% - 8rem);
    }

    /* Comments ------------------------------ */
    .comment-reply-title {
        margin-bottom: 4.6rem;
    }

    .comment-reply-title small {
        display: inline;
        margin: 0 0 0 2rem;
    }

    .comment-respond .logged-in-as {
        margin: -3.1rem 0 4.6rem 0;
    }

    .comments .comment,
    .comments .pingback,
    .comments .trackback,
    .comments .review {
        padding-top: 5rem;
    }

    div.comment:first-of-type {
        margin-top: 5rem;
    }

    .comment-body {
        min-height: 6rem;
        padding-left: 8rem;
    }

    .comment-meta .avatar {
        display: block;
        position: absolute;
        left: 0;
        top: .5em;
    }

    .comment-author b a {
        display: block;
    }

    .comment-metadata {
        white-space: nowrap;
    }

    .comments-pagination {
        margin-top: 8rem;
    }

    /* PINGBACKS & TRACKBACKS */
    .pingback .comment-body {
        padding: 0;
    }

    /* COMMENT RESPOND */
    .comment-respond:not(:first-child) {
        padding-top: 7rem;
    }

    .comment-form {
        margin-top: 4rem;
    }

    .comment-form p {
        margin-bottom: 2.5rem;
    }

    .comment-form p.logged-in-as {
        margin: -2.5rem 0 4.4rem 0;
    }

    .comment-respond .comment-form-author,
    .comment-respond .comment-form-email {
        float: left;
        width: calc(50% - 1rem);
    }

    .comment-respond .comment-form-email {
        margin-left: 2rem;
    }

    .comments .comment-respond {
        padding: 5rem 0 0;
    }

    /* Site Pagination ----------------------- */
    .pagination-wrapper {
        margin-top: 8rem;
    }

    /* Widgets ------------------------------- */
    .widget-title {
        margin-bottom: 3rem;
    }

    /* SMTHING WIDGET LIST */
    .smthing-widget-list .post-image {
        height: 8rem;
        width: 8rem;
    }

    .footer-widgets .widget {
        border-top: none;
        margin-top: 5rem;
        padding-top: 0;
    }

    .footer-widgets .widget:first-child {
        margin-top: 0;
    }
}

@media ( min-width: 782px ) {
    /* Blocks -------------------------------- */
    /* BLOCK: COLUMNS */
    .wp-block-columns.alignwide,
    .wp-block-columns.alignfull {
        margin-bottom: 6rem;
    }

    .wp-block-column {
        margin-bottom: 0;
    }
}

@media ( min-width: 1000px ) {
    /* Document Setup ------------------------ */
    #site-content {
        min-height: calc(100vh - 53.4rem);
    }

    /* Helper Classes ------------------------ */
    /* SECTIONS */
    .section-inner {
        width: calc(100% - 10rem);
    }

    /* GRID STRUCTURE */
    /* Site Header --------------------------- */
    .showing-menu-modal .header-inner.is-sticky {
        box-shadow: 0 0 1rem rgba(0, 0, 0, 0.10);
    }

    .header-titles {
        flex-shrink: 0;
    }

    .site-description {
        display: block;
    }

    .no-js .main-menu-alt-container,
    .disable-menu-modal-on-desktop .main-menu-alt-container {
        display: block !important;
    }

    .main-menu-alt-social-container {
        display: block;
    }

    .disable-menu-modal-on-desktop.disable-search-modal .header-toggles,
    .disable-menu-modal-on-desktop .nav-toggle {
        display: none !important;
    }

    .disable-menu-modal-on-desktop:not(.disable-search-modal) .search-toggle .toggle-text {
        display: none;
    }

    /* Modal: Menu --------------------------- */
    .menu-modal {
        background: rgba(0, 0, 0, .0);
        opacity: 1;
        justify-content: flex-end;
        transition: background-color .3s ease-in, left 0s .3s, right 0s .3s;
    }

    .menu-modal.active {
        background: rgba(0, 0, 0, .2);
        transition: background-color .3s ease-out;
    }

    .menu-modal-inner {
        box-shadow: 0 0 2rem 0 rgba(0, 0, 0, .1);
        min-width: 64rem;
        opacity: 0;
        transform: translateX(20rem);
        transition: transform .2s ease-in, opacity .2s ease-in;
        width: 50%;
    }

    .menu-modal.active .menu-modal-inner {
        opacity: 1;
        transform: translateX(0);
        transition-timing-function: ease-out;
    }

    .menu-modal-toggles .toggle {
        justify-content: flex-end;
    }

    .menu-bottom {
        padding: 6rem 0;
    }

    /* Sub Page ------------------------------ */
    /* RELATED POSTS */
    .related-posts-grid .grid-item:nth-child(4) {
        display: none;
    }

    /* Blocks -------------------------------- */
    /* BLOCK: COLUMNS */
    .wp-block-columns.alignwide,
    .wp-block-columns.alignfull {
        margin-bottom: 8rem;
    }

    .wp-block-columns.alignwide + .wp-block-columns.alignwide,
    .wp-block-columns.alignfull + .wp-block-columns.alignfull {
        margin-top: -4rem;
    }

    .wp-block-column {
        font-size: 1.8rem;
    }

    /* BLOCK: COVER */
    .wp-block-cover-image .wp-block-cover__inner-container,
    .wp-block-cover .wp-block-cover__inner-container {
        width: calc(100% - 10rem);
    }

    /* BLOCK: GALLERY */
    .wp-block-gallery.alignwide,
    .wp-block-gallery.alignfull {
        margin-bottom: 6.4rem;
    }

    /* BLOCK: LATEST POSTS */
    .wp-block-latest-posts.is-grid li {
        margin: 0 0 6rem 4rem;
        padding-top: 2.4rem;
    }

    /* BLOCK: SEPARATOR */
    .wp-block-separator.is-style-wide {
        width: calc(100vw - 10rem);
    }

    /* COBLOCK: FEATURES */
    .wp-block-coblocks-features .wp-block-coblocks-feature .wp-block-coblocks-icon {
        margin-bottom: 3rem;
    }

    .wp-block-coblocks-features .wp-block-coblocks-feature h1,
    .wp-block-coblocks-features .wp-block-coblocks-feature h2,
    .wp-block-coblocks-features .wp-block-coblocks-feature h3,
    .wp-block-coblocks-features .wp-block-coblocks-feature h4,
    .wp-block-coblocks-features .wp-block-coblocks-feature h5,
    .wp-block-coblocks-features .wp-block-coblocks-feature h6 {
        margin-bottom: 2.5rem !important;
    }

    /* Entry Content ------------------------- */
    /* ALIGNMENTS */
    .alignwide,
    .alignfull {
        margin-bottom: 8rem;
        margin-top: 8rem;
    }


    /* Stacked Background Blocks */
    .alignwide.wp-block-cover + .alignwide.wp-block-cover,
    .alignwide.wp-block-cover + .alignwide.has-background,
    .alignwide.has-background + .alignwide.wp-block-cover,
    .alignwide.has-background + .alignwide.has-background,
    .alignfull.wp-block-cover + .alignfull.wp-block-cover,
    .alignfull.wp-block-cover + .alignfull.has-background,
    .alignfull.has-background + .alignfull.wp-block-cover,
    .alignfull.has-background + .alignfull.has-background {
        margin-top: -8rem;
    }

    /* ENTRY MEDIA */
    .alignfull > figcaption,
    .alignfull > .wp-caption-text {
        width: calc(100% - 10rem);
    }

    /* Comments ------------------------------ */
    /* Site Pagination ----------------------- */
    .pagination-wrapper {
        margin-top: 12rem;
    }

    /* Site Footer --------------------------- */
    .footer-area-bottom .has-footer-menu {
        align-items: baseline;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .footer-menu {
        align-items: baseline;
        border: none;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: flex-end;
    }

    .footer-menu li {
        border: none;
    }

    .footer-menu a {
        padding: 0;
    }

    .footer-credits {
        flex-shrink: 0;
        justify-content: flex-start;
    }
}

@media ( min-width: 1120px ) {
    /* Blocks -------------------------------- */
    /* BLOCK: GROUP */
    .wp-block-group.alignfull:not(.has-background) > [class*="__inner-container"] > .wp-block-group:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright),
    .wp-block-group.alignfull:not(.has-background) > [class*="__inner-container"] > .wp-block-cover:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright) {
        margin-left: calc((100vw - 117rem) / 2);
    }
}

@media ( min-width: 1180px ) {
    /* Blocks -------------------------------- */
    /* BLOCK: GROUP */
    .wp-block-group.alignfull.has-background > [class*="__inner-container"] > .wp-block-group:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright),
    .wp-block-group.alignfull.has-background > [class*="__inner-container"] > .wp-block-cover:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright) {
        margin-left: calc((100vw - 117rem - 6rem) / 2);
    }
}

@media ( min-width: 1220px ) {
    /* Helper Classes ------------------------ */
    /* GRID STRUCTURE */
    /* Site Header --------------------------- */
    /* Modal: Search ------------------------- */
    /* Sub Page ------------------------------ */
    /* Template: Cover Template -------------- */
    .cover-header + .post-inner {
        padding-top: 10rem;
    }

    /* Blocks -------------------------------- */
    /* BLOCK: COLUMNS */
    .wp-block-columns.alignfull {
        margin-bottom: 10rem;
    }

    .wp-block-columns.alignfull + .wp-block-columns.alignfull {
        margin-top: -6rem;
    }

    /* BLOCK: GALLERY */
    .wp-block-gallery.alignfull {
        margin-bottom: 8.4rem;
    }

    /* Entry Content ------------------------- */
    /* ALIGNMENTS */
    .alignfull {
        margin-bottom: 10rem;
        margin-top: 10rem;
    }

    /* Stacked Background Blocks */
    .alignfull.wp-block-cover + .alignfull.wp-block-cover,
    .alignfull.wp-block-cover + .alignfull.has-background,
    .alignfull.has-background + .alignfull.wp-block-cover,
    .alignfull.has-background + .alignfull.has-background {
        margin-top: -10rem;
    }

    /* Comments ------------------------------ */
    /* Site Pagination ----------------------- */
    /* Site Footer --------------------------- */
}

.archive-title-error {
    font-size: clamp(3.5rem, 1.8239rem + 5.3636vw, 9.1875rem);
}