/*--------------------------------------------------------------
# GLOBAL CSS
# Normalize
# Elements
# Layout
# Alignment
# Accessibility
# Media
# Typography
# Color
# Forms
# Pagination
# Header
# Footer
# Headers (Pages, Posts, Archives)
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    margin: 0;
}

h1 {
    font-size: var(--wp--preset--font-size--xxxlarge);
    line-height: var(--wp--custom--line-height--xsmall);
}


p {
    margin: 0;
    padding: 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
}

b, strong, dt {
    font-weight: 700;
}

code, kbd, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

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

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button, input {
    overflow: visible;
}

select {
    text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
    border-radius: var(--wp--custom--border-radius--small)
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"], [type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

figure {
    margin: 0
}

html, input[type=search] {
    box-sizing: border-box
}

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

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

.wp-block-separator {
    background: var(--wp--preset--color--ink);
    border: none;
    height: 1px;
    padding: 0;
    margin-top: var(--wp--custom--layout--block-gap-large);
    margin-bottom: var(--wp--custom--layout--block-gap-large)
}

.wp-block-separator.has-background {
    padding: 0
}

ul {
    list-style: disc;
}


ol {
    list-style: decimal;
}

li > ul, li > ol {
    margin-bottom: 0;
    margin-left: var(--wp--custom--layout--block-gap);
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

img.emoji {
    max-width: 16px;
    display: inline-block
}

figure {
    margin: 20px 0;
}

/*--------------------------------------------------------------
3. Layout
--------------------------------------------------------------*/
body.content-full-width {
    --wp--custom--layout--page: var(--wp--custom--layout--wide);
}

.site-inner {
    padding-left: var(--wp--custom--layout--block-gap);
    padding-right: var(--wp--custom--layout--block-gap);
}

.error404 .site-inner {
    padding-left: 0;
    padding-right: 0;
}


.content-sidebar .site-inner {
    padding: 0 var(--wp--custom--layout--block-gap) var(--wp--custom--layout--block-gap);
}

@media (max-width: 800px) {
    .content-sidebar .site-inner {
        padding: 0 var(--wp--custom--layout--block-gap) var(--wp--custom--layout--block-gap);
    }
}

.wrap {
    max-width: var(--wp--custom--layout--wide);
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}

.archive .site-main {
    max-width: var(--wp--custom--layout--page);
    margin: var(--wp--custom--layout--block-gap-large) 0 0;
    margin-inline: auto;
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 40px;
}

@media (max-width: 1024px) {
    .archive .site-main {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }
}
@media (max-width: 800px) {
    .archive .site-main {
        grid-template-columns:repeat(1, minmax(0, 1fr))
    }
}

@media (max-width: 1024px) {
    .sidebar-primary {
        display: none
    }
}

@media (min-width: 1025px) {
    .content-sidebar .content-area {
        display: grid;
        grid-template-columns:minmax(0, 1fr) var(--wp--custom--layout--sidebar);
        grid-column-gap: var(--wp--custom--layout--block-gap);
        max-width: var(--wp--custom--layout--wide);
        margin-left: auto;
        margin-right: auto
    }

    .content-sidebar .site-main {
        float: none;
        width: 100%;
        max-width: var(--wp--custom--layout--content)
    }

    .content-sidebar .sidebar-primary {
        float: none;
        width: 100%
    }
}

.flexbox {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.block-area-before-footer {
    margin-top: 60px;
    padding-left: var(--wp--custom--layout--block-gap);
    padding-right: var(--wp--custom--layout--block-gap);
}

.entry-content > *, .block-area > * {
    margin: var(--wp--custom--layout--block-gap) auto;
    max-width: var(--wp--custom--layout--page)
}


.entry-content > *.alignwide, .block-area > *.alignwide {
    max-width: var(--wp--custom--layout--wide);
    margin-left: auto;
    margin-right: auto;
}


.entry-content > *.alignfull, .block-area > *.alignfull {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    max-width: 100vw
}

@media (max-width: 767px) {
    .entry-content > *.alignwide, .block-area > *.alignwide {
        margin-left: calc(-1 * var(--wp--custom--layout--block-gap));
        margin-right: calc(-1 * var(--wp--custom--layout--block-gap));
        max-width: 100vw
    }
}

.entry-content > * + *, .block-area > * + * {
    margin-top: var(--wp--custom--layout--block-gap-large);
    margin-bottom: var(--wp--custom--layout--block-gap-large);
}

.entry-content > *:last-child, .block-area > *:last-child {
    margin-bottom: 0;
}

.entry-content > p:last-child, .entry-content > pre:last-child {
    margin-bottom: var(--wp--custom--layout--block-gap-large);
}

.entry-footer, .after-entry, .entry-comments {
    max-width: var(--wp--custom--layout--page);
    margin: var(--wp--custom--layout--block-gap) auto;
}

.entry-content > .alignfull {
    margin-left: calc(-1 * var(--wp--custom--layout--block-gap));
    margin-right: calc(-1 * var(--wp--custom--layout--block-gap));
    max-width: 100vw;
}

.content-sidebar .entry-content > .alignfull {
    margin-left: 0;
    margin-right: 0;
}

.block-area-before-footer p {
    margin: 0 auto;
    max-width: 100%;
}


/*--------------------------------------------------------------
# Alignment
--------------------------------------------------------------*/
img.alignleft {
    float: left;
    margin: 0 var(--wp--custom--layout--block-gap) var(--wp--custom--layout--block-gap) 0;
    max-width: calc(var(--wp--custom--layout--content) / 2)
}

img.alignright {
    float: right;
    margin: 0 0 var(--wp--custom--layout--block-gap) var(--wp--custom--lxayout--block-gap);
    max-width: calc(var(--wp--custom--layout--content) / 2)
}

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

figure.wp-caption {
    max-width: 100%
}

.wp-block-image figcaption {
    font-size: var(--wp--preset--font-size--small);
    text-align: center
}

@media (min-width: 601px) {
    .wp-block-image.alignleft {
        float: left;
        margin: var(--wp--custom--layout--block-gap) var(--wp--custom--layout--block-gap) var(--wp--custom--layout--block-gap) 0;
        max-width: 48vw
    }

    .wp-block-image.alignright {
        float: right;
        margin: var(--wp--custom--layout--block-gap) 0 var(--wp--custom--layout--block-gap) var(--wp--custom--layout--block-gap);
        max-width: 48vw
    }
}

@media (min-width: 768px) {
    .content .entry-content > .wp-block-image.alignleft, .content .block-area > .wp-block-image.alignleft {
        max-width: calc(var(--wp--custom--layout--content) / 2);
        margin-left: calc((100vw - var(--wp--custom--layout--content)) / 2)
    }

    .content .entry-content > .wp-block-image.alignright, .content .block-area > .wp-block-image.alignright {
        max-width: calc(var(--wp--custom--layout--content) / 2);
        margin-right: calc((100vw - var(--wp--custom--layout--content)) / 2)
    }
}

@media (min-width: 1200px) {
    .full-width-content .entry-content > .wp-block-image.alignleft, .full-width-content .block-area > .wp-block-image.alignleft {
        max-width: calc(var(--wp--custom--layout--wide) / 2);
        margin-left: calc((100vw - var(--wp--custom--layout--wide)) / 2)
    }

    .full-width-content .entry-content > .wp-block-image.alignright, .full-width-content .block-area > .wp-block-image.alignright {
        max-width: calc(var(--wp--custom--layout--wide) / 2);
        margin-right: calc((100vw - var(--wp--custom--layout--wide)) / 2)
    }
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
.screen-reader-text, .screen-reader-text span, .screen-reader-shortcut {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden
}

.screen-reader-text:focus, .screen-reader-shortcut:focus {
    clip: auto !important;
    height: auto;
    width: auto;
    display: block;
    font-size: 1em;
    font-weight: bold;
    padding: 15px 23px 14px;
    color: #333;
    z-index: 100000;
    text-decoration: none;
}


#content[tabindex="-1"]:focus {
    outline: 0;
}

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

.gallery {
    margin-bottom: 20px;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.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%;
}

.gallery-caption {
    display: block;
}

embed, iframe, object {
    max-width: 100%;
}

.video-block iframe, .video-block object, .video-block embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wprm-recipe-video {
    position: relative;
    padding-bottom: 51%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.wprm-recipe-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wp-block-embed__wrapper {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    display: block;
}

.wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: revert-layer;
}
.wp-block-table td, .wp-block-table th {
    border: 2px solid #EAEAEA!important;
}
.wp-block-table thead {
    background: #FAFAFA;
    border-bottom: 2px solid #EAEAEA!important;
}
.wp-block-table tfoot {
    background: #FAFAFA;
    border-top: 2px solid #EAEAEA!important;
}
@media (max-width: 450px) {
    .wp-block-table  {
        overflow-x: auto;
        overflow-y: hidden;
    }
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sm-caps {
    font-family: var(--wp--preset--font-family--custom-sans);
    font-size: var(--wp--preset--font-size--xsmall);
    letter-spacing: var(--wp--custom--letter-spacing--loose);
    line-height: var(--wp--custom--line-height--small);
    text-transform: uppercase;
    font-weight: 700;
}

.sm-sans {
    font-size: var(--wp--preset--font-size--xsmall);
    letter-spacing: var(--wp--custom--letter-spacing--none);
    line-height: var(--wp--custom--line-height--small);
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

.wp-block-heading {
    font-family: var(--wp--preset--font-family--custom-serif);
    font-weight: 400;
}

h4.wp-block-heading, h5.wp-block-heading, h6.wp-block-heading {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
}

h4.wp-block-heading::after, h5.wp-block-heading::after, h6.wp-block-heading::after {
    background: var(--wp--preset--color--ink);
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    flex-basis: 0;
    flex-grow: 1;
}

.entry-content p:last-child, .archive-description p:last-child {
    margin-bottom: 0;
}


dfn, em, i {
    font-style: italic;
}

.wp-block-cover {
    margin: 0 auto 15px;
}

blockquote {
    padding-left: 90px;
    position: relative;
    font-size: 1.9rem;
    line-height: 1.3;
    font-family: var(--wp--preset--font-family--custom-serif);
    font-weight: 400;
}
blockquote.wp-block-quote {
    margin: 60px auto;
}


.page-content blockquote p {
    margin: 0 auto var(--wp--custom--layout--block-gap);
}



.content-full-width .wp-block-quote p, .content-full-width .wp-block-quote cite {
    max-width: var(--wp--custom--layout--wide);
    margin: 0 auto;
    display: block;
}

.wp-block-pullquote {
    text-align: left;
    padding: 0;
}

.wp-block-pullquote.alignfull blockquote {
    max-width: var(--wp--custom--layout--wide);
    margin: 0 auto;
    padding-left: var(--wp--custom--layout--block-gap);
    padding-right: var(--wp--custom--layout--block-gap);
}

.wp-block-pullquote.alignfull {
    border-radius: 0;
    margin: 0 calc(-1 * var(--wp--custom--layout--block-gap));
    -webkit-box-shadow: var(--wp--custom--box-shadow--5);
    -moz-box-shadow: var(--wp--custom--box-shadow--5);
    box-shadow: var(--wp--custom--box-shadow--5);
}

.wp-block-quote.alignfull {
    border-radius: 0;
    margin: 0 calc(-1 * var(--wp--custom--layout--block-gap));
    -webkit-box-shadow: var(--wp--custom--box-shadow--5);
    -moz-box-shadow: var(--wp--custom--box-shadow--5);
    box-shadow: var(--wp--custom--box-shadow--5);
}

address {
    margin: 0 0 var(--wp--custom--layout--block-gap);
}

pre {
    font-family: "Courier 10 Pitch", Courier, monospace;
    line-height: var(--wp--custom--line-height--small);
    max-width: 100%;
    overflow: auto;
    padding: var(--wp--custom--layout--block-gap);
}

code, kbd, tt, var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 14px;
}


.breadcrumbs {
    font-size: var(--wp--preset--font-size--xsmall);
    line-height: var(--wp--custom--line-height--small);
    color: var(--wp--preset--color--ink);
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.breadcrumbs a, .breadcrumbs a:visited {
    color: var(--wp--preset--color--ink);
    text-decoration: underline;
    font-weight: 700;
}

.breadcrumbs a:hover, .breadcrumbs a:visited:hover {
    color: var(--wp--preset--color--blue);
    opacity: 1;
}

ol {
    padding: 0;
    list-style: none;
}

ol li {
    list-style-type: none;
    position: relative;
    padding-left: 29px;
    margin: 0 0 var(--wp--custom--layout--block-gap-small);
    counter-increment: mycounter;
}

ol > li::before {
    color: var(--wp--preset--color--white);
    background: var(--wp--preset--color--red);
    font-size: 12px;
    font-weight: 700;
    content: counter(mycounter);
    width: 21px;
    height: 21px;
    border-radius: var(--wp--custom--border-radius--large);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 7px;
    left: 0
}

ol[start] {
    list-style-type: none;
    counter-reset: lis;
}

ol[start] li {
    counter-increment: lis;
}

ol[start] li::before {
    content: counter(lis);
}

ol li ul {
    padding-top: var(--wp--custom--layout--block-gap-small);
}

ol li ul li {
    display: list-item;
    list-style-type: disc;
    padding-left: var(--wp--custom--layout--block-gap-small);;
}

ul {
    margin-bottom: var(--wp--custom--layout--block-gap);
}

ul li::marker {
    color: var(--wp--preset--color--red);
}

ul.is-style-arrow li, ul.is-style-heart li, ul.is-style-star li {
    list-style-type: none;
    position: relative;
    margin-bottom: var(--wp--custom--layout--block-gap-small);
}

ul.is-style-arrow li::before, ul.is-style-heart li::before, ul.is-style-star li::before {
    margin-right: 8px;
    position: absolute;
    font-size: var(--wp--preset--font-size--xsmall);
    color: var(--wp--preset--color--white);
    background: var(--wp--preset--color--red);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--wp--custom--border-radius--large);
    left: -40px;
    top: 4px;
}

ul.is-style-arrow li::before {
    content: "";
    background: url(../icons/core/white-arrow.svg) no-repeat center;
    background-color: var(--wp--preset--color--red);
    background-size: 10px 10px;
}

ul.is-style-star li::before {
    content: "";
    background: url(../icons/core/white-star.svg) no-repeat center;
    background-color: var(--wp--preset--color--red);
    background-size: 15px 15px;
}

ul.is-style-heart li::before {
    content: "";
    background: url(../icons/core/white-heart.svg) no-repeat center;
    background-color: var(--wp--preset--color--red);
    background-size: 15px 15px;
}

/*--------------------------------------------------------------
# Color
--------------------------------------------------------------*/
a {
    outline: none;
    text-decoration: none;
}

a:hover, a:focus, a:active {
    opacity: .7;
    transition: all .8s ease 0s;
}

.entry-content p a, .entry-content li a {
    text-decoration: underline;
    font-weight: 700;
}

:root :where(a:where(:not(.wp-element-button))) {
    text-decoration: none;
}

::-moz-selection {
    background: var(--wp--preset--color--yellow);
}

::selection {
    background: var(--wp--preset--color--yellow);
}

.has-background {
    padding: var(--wp--custom--layout--block-gap);
    border-radius: var(--wp--custom--border-radius--medium);
    -webkit-box-shadow: var(--wp--custom--box-shadow--1);
    -moz-box-shadow: var(--wp--custom--box-shadow--1);
    box-shadow: var(--wp--custom--box-shadow--1);
}

/*--------------------------------------------------------------
# Social Menu
--------------------------------------------------------------*/
.social-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3px;
}

.social-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.menu-right .social-menu {
    margin:0 20px;
}
@media (max-width: 1200px) {
    .menu-right .social-menu {
        display:none;
    }
}
.social-menu a:last-child {
    margin-right: 0;
}

.social-menu a:hover {
    opacity: 1;
    transform: scale(1.15);
}

.social-menu svg {
    fill: var(--wp--preset--color--ink);
    width: 25px;
    height: 25px;
}

.social-menu a:hover svg, .social-menu a:hover {
    fill: var(--wp--preset--color--blue);
}

.drawer-nav .social-menu {
    justify-content: flex-start;
    gap: 10px;
    margin: 40px 0 0;
}
.drawer-nav .social-menu svg {
    width: 30px;
    height: 30px;
}
.social-follow {
position: relative;
}

.social-follow a {
    position: relative;
    display: flex!important;
    align-items: center;
    justify-content: center;
}
.social-follow a:before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    filter: invert(1)
}
.follow-youtube a:before {
    background: url(../icons/social/youtube.svg) no-repeat center;
}
.follow-facebook a:before {
    background: url(../icons/social/facebook.svg) no-repeat center;
}
.follow-instagram a:before {
    background: url(../icons/social/instagram.svg) no-repeat center;
}
.follow-tiktok a:before {
    background: url(../icons/social/tiktok.svg) no-repeat center;
}
.follow-x a:before {
    background: url(../icons/social/x.svg) no-repeat center;
}


/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
input, select, optgroup, textarea {
    font-size: 15px;
    line-height: 1.5;
}

label, .wp-block-search__label, .wpforms-container .wpforms-field-label {
    font-family: var(--wp--preset--font-family--custom-sans);
    letter-spacing: var(--wp--custom--letter-spacing--normal);
    font-size: var(--wp--preset--font-size--small);
    text-transform: none;
    font-weight: 700;
}

label .wpforms-required-label, .wp-block-search__label .wpforms-required-label, .wpforms-container .wpforms-field-label .wpforms-required-label {
    color: inherit
}

.wp-element-button, .wp-block-button > .wp-block-button__link {
    display: inline-block
}
.wp-block-button__link {
    border-radius: 25px!important;
    -webkit-box-shadow: var(--wp--custom--box-shadow--4);
    -moz-box-shadow: var(--wp--custom--box-shadow--4);
    font-family: var(--wp--preset--font-family--custom-sans);
    font-size: var(--wp--preset--font-size--xsmall);
    letter-spacing: var(--wp--custom--letter-spacing--loose);
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    line-height: 1;
}
.wp-element-button.has-background, .wp-block-button > .wp-block-button__link.has-background {
    padding: 15px 30px;
}

.wp-element-button:hover, .wp-element-button:focus, .wp-block-button > .wp-block-button__link:hover, .wp-block-button > .wp-block-button__link:focus {
    transition: all .8s ease 0s;
    background: var(--wp--preset--color--grey-two);
    opacity: 1;
    transform: scale(1.05);
}

.wp-element-button.is-style-outline, .wp-block-button.is-style-outline > .wp-block-button__link {
    border: 1px solid currentColor;
    padding: 10px 15px
}

.wp-element-button.is-style-outline.has-background, .wp-block-button.is-style-outline > .wp-block-button__link.has-background {
    padding: 10px 15px
}

.wp-element-button.is-style-outline:not(.has-background), .wp-block-button.is-style-outline > .wp-block-button__link:not(.has-background) {
    background: var(--wp--preset--color--white)
}

.wp-element-button.is-style-outline:not(.has-text-color), .wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color) {
    color: var(--wp--preset--color--blue)
}
.wp-block-buttons .wp-block-button__link.has-background {
    background: var(--wp--preset--color--red)!important;
    color: var(--wp--preset--color--white);
    -webkit-box-shadow: var(--wp--custom--box-shadow--4);
    -moz-box-shadow: var(--wp--custom--box-shadow--4);
}
.wp-block-buttons .wp-block-button__link.has-background:hover {
    background: var(--wp--preset--color--grey-two)!important;
    color: var(--wp--preset--color--white);
}


input, select, textarea {
    background: var(--wp--preset--color--white);
    border: var(--wp--custom--border-width--xsmall) solid var(--wp--preset--color--ink);
    border-radius: none;
    color: var(--wp--preset--color--ink);
    font-size: var(--wp--preset--font-size--small);
    line-height: var(--wp--custom--line-height--medium);
    padding: 9px 12px;
    width: 100%
}

input[type=checkbox], input[type=submit] {
    width: auto
}

select {
    line-height: 54px;
    height: 54px
}

textarea {
    width: 100%;
    resize: vertical
}

::-moz-placeholder {
    color: var(--wp--preset--color--ink);
    opacity: 1
}

::-ms-input-placeholder {
    color: var(--wp--preset--color--ink)
}

::-webkit-input-placeholder {
    color: var(--wp--preset--color--ink)
}

input:focus::-webkit-input-placeholder, input:focus::-moz-placeholder, input:focus:-ms-input-placeholder, textarea:focus::-webkit-input-placeholder, textarea:focus::-moz-placeholder, textarea:focus:-ms-input-placeholder {
    color: var(--wp--preset--color--ink);
}

label, .wp-block-search__label, .wpforms-container .wpforms-field-label {
    font-family: var(--wp--preset--font-family--custom-sans);
    letter-spacing: var(--wp--custom--letter-spacing--normal);
    text-transform: none;
    font-size: var(--wp--preset--font-size--small);
    font-weight: 700;
}

label .wpforms-required-label, .wp-block-search__label .wpforms-required-label, .wpforms-container .wpforms-field-label .wpforms-required-label {
    color: inherit
}

.comment-form-cookies-consent label, .wpforms-container .wpforms-field-sublabel {
    font-weight: 400;
    font-family: inherit;
    letter-spacing: inherit;
    text-transform: inherit
}

.wp-block-search__input, :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
    border-color: transparent;
    border-radius: var(--wp--custom--border-radius--small)
}

.wp-block-search__button-inside .wp-block-search__input {
    border: none;
    background: transparent;
    font-family: var(--wp--preset--font-family--custom-sans);
    font-size: var(--wp--preset--font-size--large);
}

.block-area-sidebar .wp-block-search__button-inside .wp-block-search__input {
    font-size: var(--wp--preset--font-size--small);
}

.wp-block-search__input, :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
    background: transparent;
    font-family: var(--wp--preset--font-family--custom-sans);
    font-size: var(--wp--preset--font-size--large);
}

.wp-block-search__button-inside .wp-block-search__input::placeholder {
    color: var(--wp--preset--color--green-dark);

}

.wp-block-search__label {
    display: none;
}

.wp-block-search__inside-wrapper {
    background: transparent;
    max-width: var(--wp--custom--layout--wide);
    margin: 0 auto;
}

.wp-block-search__button {
    flex-shrink: 0
}

.wp-block-search__icon-button .wp-block-search__button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wp--preset--color--red);
    border-radius: var(--wp--custom--border-radius--large);
}

.wp-block-search__icon-button .wp-block-search__button.wp-element-button {
    padding: 0
}

.wp-block-search__icon-button .wp-block-search__button svg {
    width: 36px;
    height: 36px
}
:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
    border: none!important;
}
.error404 .entry-header .wp-block-search__button-inside {
    margin: 20px 0 0;
    border: var(--wp--custom--border-width--xsmall) solid var(--wp--preset--color--black);
    max-width: 500px;
}

.error404 .entry-header .wp-block-search__icon-button .wp-block-search__button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
}

.error404 .entry-header .wp-block-search__icon-button .wp-block-search__button svg {
    fill: var(--wp--preset--color--red);
}
.error404 .block-area-before-footer {
    display:none;
}
/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.pagination {
    margin: var(--wp--custom--layout--block-gap) auto;
    max-width: var(--wp--custom--layout--page);
    grid-column: 1/-1;
    position: relative;
    width: 100%;
}

.pagination ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.pagination ul li {
    list-style-type: none;
    display: inline-block
}

.pagination ul li a {
    background: var(--wp--preset--color--grey-five);
    border-radius: var(--wp--custom--border-radius--large);
    -webkit-box-shadow: var(--wp--custom--box-shadow--4);
    -moz-box-shadow: var(--wp--custom--box-shadow--4);
    box-shadow: var(--wp--custom--box-shadow--4);
    color: var(--wp--preset--color--ink);
    fill: var(--wp--preset--color--ink);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--wp--preset--font-size--small);
    font-weight: 700;
    text-align: center;
    text-decoration: none
}

.pagination-next svg {
    fill: inherit;
    transform: rotate(-90deg);
    width: 15px;
    height: 15px;
}

.pagination-previous svg {
    fill: inherit;
    transform: rotate(90deg);
    width: 15px;
    height: 15px;
}

.pagination ul li:hover > a {
    background: var(--wp--preset--color--grey-three);
    opacity: 1;
}

.pagination ul li.active > a {
    background: var(--wp--preset--color--grey-one);
    color: var(--wp--preset--color--white);
    fill: var(--wp--preset--color--white);
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.border-bar {
    display: block;
    content: '';
    width: 100%;
    height: 10px;
background: var(--wp--preset--gradient--dark-blue-to-blue);
}
.site-header {
    width: 100%;
    -webkit-box-shadow: var(--wp--custom--box-shadow--4);
    -moz-box-shadow: var(--wp--custom--box-shadow--4);
    box-shadow: var(--wp--custom--box-shadow--4);
    background: var(--wp--preset--color--white);
    position: relative;
    z-index: 9999;
}

.admin-bar .site-container {
    padding: 32px 0 0;
}

@media (max-width: 782px) {
    .admin-bar .site-container {
        padding: 46px 0 0;
    }
}

.site-branding {
    padding: var(--wp--custom--layout--block-gap-large) 0;
}

@media (max-width: 1200px) {
    .site-branding {
        padding: var(--wp--custom--layout--block-gap-large) 10px;
    }
}

.site-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.menu-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: fit-content;
}


/*--------------------------------------------------------------
Site Logo
--------------------------------------------------------------*/
.site-title {
    margin: 0 5px;
    line-height: 1;
    width: 375px;
}

.site-title a {
    display: block;
    width: 100%;
    background: url(../images/logo.svg) no-repeat center;
    background-size: contain;
    margin: 0;
    max-width: 375px;
    height: 50px;
    text-indent: -9999px;
    transition: transform 400ms;
}

.site-title a:hover {
    transform: scale(.95);
    opacity: 1;
}
.site-badge {
    line-height: 1;
    width: fit-content;
    position: relative;
    margin: 20px auto -80px;
    z-index: 99;
    background: var(--wp--preset--color--grey-six);
    border-radius: 50%;
    padding: 10px;
}

.site-badge a {
    display: block;
    background: url(../images/badge-black.svg) no-repeat center;
    background-size: contain;
    margin: 0;
    width: 150px;
    height: 150px;
    text-indent: -9999px;
    transition: transform 400ms;
}

.site-badge a:hover {
    transform: scale(.95);
    opacity: 1;
}
@media (max-width: 600px) {
    .site-branding {
        padding: var(--wp--custom--layout--block-gap-small)
    }
}
@media (max-width: 550px) {
    .site-title {
        width: 300px;
    }

    .site-title a {
        max-width: 300px;
        height: 40px;
    }
}
@media (max-width: 350px) {
    .site-title {
        width: 225px;
    }

    .site-title a {
        max-width: 225px;
        height: 30px;
    }
}
@media (max-width: 300px) {
    .site-title {
        width: 150px;
    }

    .site-title a {
        max-width: 150px;
        height: 20px;
    }
}
/*--------------------------------------------------------------
Desktop Menu
--------------------------------------------------------------*/
.desktop-menu {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0 20px;
    padding: 0;
    font-size: 1.1rem;
    color: var(--wp--preset--color--ink);
    font-family: var(--wp--preset--font-family--custom-serif);
    font-weight: 400;
}

.desktop-menu li {
    display: block;
    list-style: none;
    margin: 0;
}

.desktop-menu li a {
    display: block;
    line-height: 1;
    position: relative;
    color: var(--wp--preset--color--ink);
    font-weight: 400;
}

.desktop-menu li a:hover {
    color: var(--wp--preset--color--blue);
    opacity: 1;
}

.desktop-menu li a:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--wp--preset--color--blue);
    transform: scaleX(0);
    transition: all 250ms ease;
    border-radius: var(--wp--custom--border-radius--large);
    transform-origin: left;
}

.desktop-menu li.menu-item-has-children a:before {
    display: none;
}

.desktop-menu li a:hover::before {
    transform: scaleX(1);
}

@media (max-width: 1100px) {
    .menu-right .desktop-menu {
        display: none;
    }

    .menu-right .social-menu {
        display: none;
    }
}

/*--------------------------------------------------------------
Header Toggles
--------------------------------------------------------------*/
.search-toggle, .menu-toggle {
    background: var(--wp--preset--color--grey-five);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    line-height: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    -webkit-box-shadow: var(--wp--custom--box-shadow--4);
    -moz-box-shadow: var(--wp--custom--box-shadow--4);
    box-shadow: var(--wp--custom--box-shadow--4);
}

.menu-toggle {
    margin-left: 10px;
}

.search-toggle svg, .menu-toggle svg {
    fill: var(--wp--preset--color--ink);
    width: 18px;
    height: 18px;
}

.menu-toggle:hover svg, .menu-toggle.active svg, .search-toggle:hover svg, .search-toggle.active svg {
    fill: var(--wp--preset--color--ink);
}

.menu-toggle:hover, .menu-toggle.active, .search-toggle:hover, .search-toggle.active {
    background: var(--wp--preset--color--grey-three);
    fill: var(--wp--preset--color--ink);
    color: var(--wp--preset--color--ink);
}

.menu-toggle:hover .toggle-text, .menu-toggle.active .toggle-text, .search-toggle:hover .toggle-text, .search-toggle.active .toggle-text {
    color: var(--wp--preset--color--ink);
}

.search-toggle .close, .menu-toggle .close {
    display: none
}

.search-toggle.active .close, .menu-toggle.active .close {
    display: inline;
}

.search-toggle.active .open, .menu-toggle.active .open {
    display: none
}

.drawer-toggle {
    position: absolute;
    right: 0;
    top: 0;
}

.drawer-toggle svg {
    width: 15px;
    height: 15px;
}

@media (max-width: 600px) {
    .toggle-text {
        display: none;
    }

    .search-toggle svg, .menu-toggle svg {
        margin-right: 0;
    }
}

/*--------------------------------------------------------------
Drawer Menu
--------------------------------------------------------------*/
.drawer-nav {
    display: block;
    background: var(--wp--preset--color--grey-six);
    color: var(--wp--preset--color--ink);
    position: fixed;
    height: 100vh;
    width: 100%;
    right: -400px;
    top: 0;
    padding: 50px 50px 250px;
    max-width: 400px;
    overflow-y: auto;
    z-index: 999999;
    -webkit-box-shadow: var(--wp--custom--box-shadow--3);
    -moz-box-shadow: var(--wp--custom--box-shadow--3);
    box-shadow: var(--wp--custom--box-shadow--3);
    -webkit-transition: 400ms ease-in-out all;
    -o-transition: 400ms ease-in-out all;
    transition: 400ms ease-in-out all;
}
.admin-bar .drawer-nav {
    top: 32px;
}
.drawer-nav.active {
    right: 0;
}

.menu-toggle.close-toggle {
    position: absolute;
    right: 10px;
    top: 10px;
    background: transparent;
    background: var(--wp--preset--color--grey-four);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: none;
}

.menu-toggle.close-toggle svg {
    fill: var(--wp--preset--color--ink);
    width: 15px;
    height: 15px;
}



ul.drawer-primary {
    padding: 0;
    display: block;
    font-size: var(--wp--preset--font-size--large);
    font-family: var(--wp--preset--font-family--custom-serif);
    color: var(--wp--preset--color--ink);
    font-weight: 400;
}

ul.drawer-primary li {
    display: block;
    list-style: none;
    margin: 0 0 20px;
    line-height: 1;
    color: var(--wp--preset--color--ink);
}


ul.drawer-primary li a {
    color: var(--wp--preset--color--ink);
    opacity: 1;
}

ul.drawer-primary li:hover {
    color: var(--wp--preset--color--blue);
}

ul.drawer-primary li:hover a {
    color: var(--wp--preset--color--blue);
}

ul.drawer-secondary {
    display: block;
    margin: 40px 0;
    padding: 0;
}

.drawer-secondary li {
    padding: 10px 0;
    margin: 0;
    border-top: var(--wp--custom--border-width--xsmall) solid var(--wp--preset--color--ink);
    font-weight: 400;
    list-style: none;
    position: relative;
    align-items: center;
    justify-content: space-between;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    color: var(--wp--preset--color--ink);
    font-family: var(--wp--preset--font-family--custom-serif);
}

.drawer-secondary a {
    color: var(--wp--preset--color--ink);
}

.drawer-secondary li a {
    padding: 0;
    width: 100%;
    max-width: calc(100% - 20px);
    font-weight: 400;
}

.drawer-secondary li a:hover {
    opacity: 1;
    color: var(--wp--preset--color--blue);
}

.drawer-secondary .sub-menu-toggle {
    right: 0;
    top: 0;
    background: transparent;
    border: none;
    padding: 0;
    line-height: 1;
    letter-spacing: 0;
    width: 20px;
    height: 20px;
}

.drawer-secondary .sub-menu-toggle svg {
    width: 12px;
    height: 12px;
    fill: var(--wp--preset--color--ink);
}

.drawer-secondary .sub-menu-toggle:hover svg {
    fill: var(--wp--preset--color--blue);
}

.drawer-secondary .sub-menu-toggle.expanded + ul.submenu, .drawer-secondary li.menu-item-has-children.expanded .submenu:not(li.menu-item-has-children.expanded ul li .submenu) {
    display: block;
    transition: 400ms;
    width: inherit;
    box-shadow: none;
    background: transparent;
}

.drawer-secondary li.menu-item-has-children.expanded ul.submenu li.menu-item-has-children.expanded .submenu {
    display: block;
    transition: 400ms;
    width: inherit;
    box-shadow: none;
    background: transparent;
}

.drawer-secondary ul.submenu, .drawer-secondary ul li ul.submenu {
    position: relative;
    top: 0;
    padding: 0;
    left: 0;
    display: none;
    margin: 10px 0 0 10px;
    cursor: pointer;
    text-align: left;
    z-index: 5;
}

.drawer-secondary li ul li, .drawer-secondary li ul li ul li {
    width: 100%;
    text-align: left;
    display: flex;
    max-width: 100%;
    padding: 5px 0;
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    border-top: 0;
    font-family: var(--wp--preset--font-family--custom-sans);

}

ul.drawer-tertiary {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 30px 0;
    padding: 0;
}

.drawer-tertiary li {
    display: block;
    list-style: none;
    text-align: left;
    font-size: .9rem;
    letter-spacing: var(--wp--custom--letter-spacing--loose);
    line-height: var(--wp--custom--line-height--small);
    font-family: var(--wp--preset--font-family--custom-sans);
    color: var(--wp--preset--color--ink);
    text-transform: uppercase;
    font-weight: 700;
}

.drawer-tertiary li a {
    color: var(--wp--preset--color--ink) !important;
}

.drawer-tertiary li:hover {
    color: var(--wp--preset--color--blue)important
}

.drawer-tertiary li:hover a {
    color: var(--wp--preset--color--blue) !important;

}

/*--------------------------------------------------------------
Header Search
--------------------------------------------------------------*/
.header-search {
    background: var(--wp--preset--color--white);
    color: var(--wp--preset--color--ink);
    overflow: hidden;
    width: 100%;
    position: absolute;
    top: 120px;
    right: 0;
    z-index: 999;
    -webkit-box-shadow: var(--wp--custom--box-shadow--1);
    -moz-box-shadow: var(--wp--custom--box-shadow--1);
    box-shadow: var(--wp--custom--box-shadow--1);
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
    display: flex;
}
.header-search:not(.active) {
    height: 0;
    border-top: 1px solid transparent;
}
.header-search.active {
    height: 152px;
    border-top: 1px solid #E2E2E2;
}
@media (max-width: 600px) {
    .header-search {
        top: 72px;
    }
}
.header-search .flexbox {
    justify-content: center;
    max-width: 800px;
    width: 95%;
}

.header-search .wp-block-search {
    width: 100%;
    margin: 0 auto;
    background: var(--wp--preset--color--grey-six);
    max-width: 800px;
    border-radius: 50px;
}
.header-search .wp-block-search__inside-wrapper {
    background: transparent;
    display: flex;
    align-items: center;
}
.header-search .wp-block-search__inside-wrapper input {
    background: transparent;
    font-family: var(--wp--preset--font-family--custom-serif);
    font-size: 24px;
    padding: 10px 0 10px 25px;
}
.header-search .wp-block-search__input, :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
    border:none!important;
    padding: 0;
}
.header-search .wp-block-search__icon-button .wp-block-search__button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wp--preset--color--grey-three);
    border-radius: var(--wp--custom--border-radius--large);
}
.header-search .wp-block-search__icon-button .wp-block-search__button svg {
    fill: var(--wp--preset--color--ink);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
    background: var(--wp--preset--color--grey-six);
    padding: 100px 0 50px;
    position: relative;
}

.site-footer .wrap {
    position: relative;
}

.site-footer .flexbox {
    display: grid;
    grid-template-columns: 3fr 4fr;
    gap: 40px;
    align-items: flex-start;
}


.footer-content h2 {
    font-family: var(--wp--preset--font-family--custom-serif);
    font-size: var(--wp--preset--font-size--large);
    line-height: 1.1;
    font-weight: 400;
    margin: 0 0 20px;
    color: var(--wp--preset--color--ink);

}

.footer-content .entry-summary {
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--wp--preset--color--ink);
}

.footer-content .section-callout-buttons {
    margin: 20px 0 0;
}

.site-credits {
    padding: var(--wp--custom--layout--block-gap-large) 0;
    margin: 0 auto;
    color: var(--wp--preset--color--ink);
    text-align: center;
}

.site-credits a {
    color: var(--wp--preset--color--ink);
}

/*--------------------------------------------------------------
##  Back To Top Button
--------------------------------------------------------------*/
.btt {
    right: 0;
    background: var(--wp--preset--color--red);
    top: -130px;
    width: 60px;
    height: 60px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--wp--custom--border-radius--large);
    border: var(--wp--custom--border-width--large) solid var(--wp--preset--color--white);
    -webkit-box-shadow: var(--wp--custom--box-shadow--1);
    -moz-box-shadow: var(--wp--custom--box-shadow--1);
    box-shadow: var(--wp--custom--box-shadow--1);
}

.btt svg {
    fill: var(--wp--preset--color--white);
    transform: rotate(180deg);
}

.btt:hover {
    background: var(--wp--preset--color--green);
    opacity: 1;
}

.btt:hover svg {
    fill: var(--wp--preset--color--white);
}

/*--------------------------------------------------------------
##  Footer Menu
--------------------------------------------------------------*/
.footer-menu {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: var(--wp--preset--font-size--small);
}

.footer-menu li {
    display: block;
    width: fit-content;
    font-family: var(--wp--preset--font-family--custom-serif);
    font-size: var(--wp--preset--font-size--medium);
    line-height: var(--wp--custom--line-height--small);
    font-weight: 400;
    margin: 0;
}

.footer-menu li a {
    border-bottom: 1px solid var(--wp--preset--color--ink);
}

.footer-menu li > ul, .footer-menu li > ol {
    margin-bottom: 0;
    margin-left: 0;
    margin-top: 20px;
    padding: 0;
}

.footer-menu li ul li {
    display: block;
    letter-spacing: var(--wp--custom--letter-spacing--none);
    text-transform: none;
    font-weight: 400;
    font-family: var(--wp--preset--font-family--custom-sans);
    font-size: var(--wp--preset--font-size--small);
    margin: 0 0 15px;
}

.footer-menu a {
    color: var(--wp--preset--color--ink);
}

.footer-menu li ul li a {
    color: var(--wp--preset--color--ink);
    border-bottom: 0;
}

.footer-menu a:hover, .footer-menu li ul li a:hover {
    color: var(--wp--preset--color--blue);
    opacity: 1;
}

@media (max-width: 900px) {
    .site-badge {
        margin: 20px 20px -100px;
    }
    .site-footer .flexbox {
        display: block;
        padding: 0 var(--wp--custom--layout--block-gap);
    }

    .footer-content {
        padding: 20px 0 40px;
    }

}

@media (max-width: 800px) {
    .footer-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-credits {
        font-size: .7rem;
    }
}

@media (max-width: 450px) {
    .footer-menu {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/*--------------------------------------------------------------
## Headers (Pages, Posts, & Archives
--------------------------------------------------------------*/
.header-title {
    font-size: var(--wp--preset--font-size--xxlarge);
    line-height: var(--wp--custom--line-height--small);
    font-weight: 700;
}

.header-meta {
    font-size: var(--wp--preset--font-size--medium);
    line-height: var(--wp--custom--line-height--medium);
}

.home .entry-header {
    display: none;
}

.entry-header {
    max-width: 100vw;
    padding: var(--wp--custom--layout--block-gap-large) var(--wp--custom--layout--block-gap);
    margin: 0 calc(-1 * var(--wp--custom--layout--block-gap)) var(--wp--custom--layout--block-gap);
    color: var(--wp--preset--color--ink);
    background: var(--wp--preset--color--grey-six);
    position: relative;
    overflow: hidden;
    background-image: url(../images/bg.png);
    background-repeat: repeat;
    background-position: center center;
    max-width: 100vw;
    background-repeat: repeat;
}

.archive .entry-header {
    margin: 0 auto;
}

.blog-header, .search-header {
    margin: 0 auto;
}
.blog-header {
    background-image: url(../images/bg.png);
    background-repeat: repeat;
    background-position: center center;
    max-width: 100vw;
    padding: var(--wp--custom--layout--block-gap-large) var(--wp--custom--layout--block-gap);
    background-repeat: repeat;
}

.page .entry-header {
    margin: 0 calc(-1 * var(--wp--custom--layout--block-gap));
}


.entry-header .wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.entry-header-content {
    max-width: var(--wp--custom--layout--content);
    width: 100%;
}


.entry-content-image {
    max-width: var(--wp--custom--layout--sidebar);
    -webkit-box-shadow: var(--wp--custom--box-shadow--1);
    -moz-box-shadow: var(--wp--custom--box-shadow--1);
    box-shadow: var(--wp--custom--box-shadow--1);
    width: 100%;
    background: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    transform: rotate(5deg);
    position: absolute;
    right: 0;
}

.entry-content-image img {
    border-radius: 5px;
}

.entry-header h1.entry-title {
    margin: 20px 0;
    font-family: var(--wp--preset--font-family--custom-serif);
    font-weight: 400;
}

.entry-header .entry-summary {
    font-size: var(--wp--preset--font-size--medium);
    line-height: var(--wp--custom--line-height--medium);
}
@media (max-width: 1100px) {
    .entry-header-content {
        max-width: 600px;
    }
}
@media (max-width: 950px) {
    .archive .entry-header {
        margin: 0 auto;
        padding: 40px 20px;
    }
    .entry-header .wrap {
        display: block;
    }
    .entry-header-content {
        max-width: 100%;
        margin: 0 0 40px;
    }
    .entry-content-image {
        position: relative;
        margin: 0 auto;
    }
    .entry-content-image img {
        border-radius: 0;
        width: 100%;
        height: auto;
    }
}


@media (max-width: 800px) {
    .post-date {
        display: block;
    }

    .entry-header-meta .post-meta {
        margin-right: 0;
        margin-bottom: var(--wp--custom--layout--block-gap-small);
    }

    .entry-header-meta .post-meta:last-child {
        margin-bottom: 0;
    }

    .entry-header-meta .sm-sans {
        font-size: .7rem;
    }
}

.entry-header-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    color: var(--wp--preset--color--ink);
}

.entry-header-meta .post-meta {
    margin-right: var(--wp--custom--layout--block-gap-small);
    color: var(--wp--preset--color--ink);
}

.entry-header-meta .post-meta .label {
    font-weight: 700;
    margin-right: 3px;
}

.entry-header-meta .post-meta a, .entry-header-meta a.post-meta {
    color: var(--wp--preset--color--ink);
}

.entry-header-meta .post-meta svg {
    fill: var(--wp--preset--color--red);
}

.date-updated {
    margin-left: 5px;
}

.archive-description {
    font-size: var(--wp--preset--font-size--medium);
    line-height: var(--wp--custom--line-height--medium);
    margin: 0 0 var(--wp--custom--layout--block-gap-small);
}
.archive-description p {
        margin: 0 0 var(--wp--custom--layout--block-gap);
}
.archive-description p:last-child {
    margin: 0;
}

.archive-description a {
    font-weight: 700;
    text-decoration: underline;
}

.archive-recent-header {
    margin: 40px auto;
    position: relative;
    color: var(--wp--preset--color--ink);
    padding: 0;
    max-width: var(--wp--custom--layout--page);
    position: relative;
}

.archive-recent-header h2 {
    max-width: var(--wp--custom--layout--page);
    margin: 0 ;
    position: relative;
    font-family: var(--wp--preset--font-family--custom-serif);
    font-weight: 400;
    position: relative;
    padding: 0;
    background: #FFFFFF;
    width: fit-content;
    padding-right: 20px;
}
.archive-recent-header:before {
    background: #1A1A1A;
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    flex-basis: 0;
    flex-grow: 1;
    top: 24px;
    z-index: -1;
    position: absolute;
}
