/*--------------------------------------------------------------
# GLOBAL CSS
1. Normalize
2. Elements
3. Layout
4. Alignment
5. Accessibility
6. Media
7. Typography
8. Color
9. Forms
10. Pagination
11. Header
12. Footer
13. Headers (Pages, Posts, Archives)
14. Truncated Posts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1. 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--xxlarge);
    margin: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}

@media (max-width: 600px) {
h1 {
    font-size: var(--wp--preset--font-size--xlarge);
}
}
h2, h3, h4, h5, h6 {
    margin-block-start: 0;
    margin-block-end: 0;
}

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
}

/*--------------------------------------------------------------
2. 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: 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) 0 0;
    margin-inline: auto;
    display: grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap: var(--wp--custom--layout--block-gap)
}

@media (min-width: 800px) {
    .archive .site-main {
        grid-template-columns:repeat(4, 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-after-post {
    margin: var(--wp--custom--layout--block-gap-large) auto;
}
.type-post .entry-content, .block-area-after-post, .block-area-sidebar, .block-area-before-footer, .block-area-404 {
    overflow: hidden;
}

.block-area-before-footer, .block-area-404 {
    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 > *:first-child, .single .entry-content > p:first-child, .page .entry-content > p:first-child {
    margin-top: 0;
}

.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 > #dpsp-post-content-markup + p {
    margin-top: 0;
}


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

.has-background {
    padding: var(--wp--custom--layout--block-gap);
}

.section-posts {
    display: grid;
    column-gap: var(--wp--custom--layout--block-gap);
    row-gap: var(--wp--custom--layout--block-gap);
}


.section-images {
    display: grid;
    column-gap: var(--wp--custom--layout--block-gap);
    row-gap: var(--wp--custom--layout--block-gap);
}

.block-area-sidebar .section-posts {
    column-gap: var(--wp--custom--layout--block-gap-small);
    row-gap: var(--wp--custom--layout--block-gap-small);
}


.section-posts-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-posts-3, .section-images-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-posts-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section-posts-6, .section-images-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.section-images-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
}

/*Grids - Block Area Sidebar*/
.block-area-sidebar .section-posts-2, .block-area-sidebar .section-images-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.block-area-sidebar .section-posts-3, .block-area-sidebar .section-images-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.block-area-sidebar .section-posts-4, .block-area-sidebar .section-images-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.block-area-sidebar .section-posts-6, .block-area-sidebar .section-images-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.block-area-sidebar .section-images-9 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: var(--wp--custom--layout--block-gap-small);
    row-gap: var(--wp--custom--layout--block-gap-small);
}

/*Grids - IN POST*/

.content-sidebar .type-post .section-posts {
    column-gap: var(--wp--custom--layout--block-gap-small);
    row-gap: var(--wp--custom--layout--block-gap-small);
}
.type-post .loop-favorites .section-posts-3 {
    display: block;
}
.content-sidebar .type-post .section-images {
    column-gap: var(--wp--custom--layout--block-gap-xsmall);
    row-gap: var(--wp--custom--layout--block-gap-xsmall);
}

.content-sidebar .type-post .section-images-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.content-sidebar .type-post .section-images-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-sidebar .type-post .section-images-9 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: var(--wp--custom--layout--block-gap);
    row-gap: var(--wp--custom--layout--block-gap);
}


/*Grids - Responsive*/
@media (max-width: 800px) {
    .section-posts {
        column-gap: var(--wp--custom--layout--block-gap-small);
        row-gap: var(--wp--custom--layout--block-gap-small);
    }

    .section-images {
        column-gap: var(--wp--custom--layout--block-gap-small);
        row-gap: var(--wp--custom--layout--block-gap-small);
    }

    .section-posts-6, .section-images-6 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .section-images-9, .content-sidebar .type-post .section-images-9 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: var(--wp--custom--layout--block-gap);
        row-gap: var(--wp--custom--layout--block-gap);
    }
}

@media (max-width: 600px) {
    .section-posts-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-posts-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .section-posts-3, .section-images-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .section-posts-6, .section-images-6, .content-sidebar .type-post .section-images-9 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 400px) {
    .section-images-9 {
        column-gap: var(--wp--custom--layout--block-gap-small);
        row-gap: var(--wp--custom--layout--block-gap-small);
    }

    .section-posts-6, .section-images-6, .content-sidebar .type-post .section-images-6 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/*--------------------------------------------------------------
4. 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)
    }
}

/*--------------------------------------------------------------
5. 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;
    background: var(--wp--preset--color--blue-light);
    z-index: 100000;
    text-decoration: none;
}


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

/*--------------------------------------------------------------
6. 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;
    padding-bottom: 51%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    display: block;
}

.wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*--------------------------------------------------------------
7. Typography
--------------------------------------------------------------*/
body {
    font-family: var(--wp--preset--font-family--system-sans);
    line-height: var(--wp--custom--line-height--large);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h2, h3, h4, h5, h6 {
    margin: 0 0 var(--wp--custom--layout--block-gap);
    font-weight: 700;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

h1 {
    margin: 0 0 var(--wp--custom--layout--block-gap);
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

.section-icon {
    background: var(--wp--preset--color--ink);
    width: 30px;
    height: 30px;
    margin-right: 4px;
    border-radius: var(--wp--custom--border-radius--large);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-icon svg {
    width: 15px;
    height: 15px;
    fill: var(--wp--preset--color--white);
}

.section-title {
    font-family: var(--wp--preset--font-family--custom-serif);
    color: var(--wp--preset--color--ink);
    letter-spacing: var(--wp--custom--letter-spacing--loose);
    font-size: var(--wp--preset--font-size--medium);
    line-height: var(--wp--custom--line-height--small);
    text-transform: uppercase;
    margin: 0;
    font-weight: 700;
    width: 90%;
}
.block-area-sidebar .section-title {
    font-size: var(--wp--preset--font-size--small);
    line-height: var(--wp--custom--line-height--xsmall);
    width: 100%;
}

.section-desc {
    font-size: var(--wp--preset--font-size--small);
    line-height: var(--wp--custom--line-height--medium);
    margin: 0 0 var(--wp--custom--layout--block-gap-small);
}
.block-area-sidebar .section-desc {
    font-size: var(--wp--preset--font-size--xsmall);
    line-height: var(--wp--custom--line-height--small);
}
.section-link {
    color: var(--wp--preset--color--ink);
    padding: var(--wp--custom--layout--block-gap) 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 0 0 auto;
    text-decoration: none;
}
.block-area-sidebar .section-link {
    margin: 0 auto;
}

.section-link svg {
    fill: var(--wp--preset--color--pink);
    transform: rotate(-90deg);
    margin-left: 5px;
    width: 15px;
    height: 15px;
}

.callout-button {
    display: block;
    margin: var(--wp--custom--layout--block-gap) 0 0;
    background: var(--wp--preset--color--ink);
    color: var(--wp--preset--color--white);
    width: fit-content;
    padding: var(--wp--custom--layout--block-gap-small) var(--wp--custom--layout--block-gap);
    line-height: var(--wp--custom--line-height--xsmall);
    text-decoration: none;
    border-radius: 4px;
}

.callout-button .sm-caps {
    display: block;
}

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

.section-desc p {
    margin: 0;
}


@media (max-width: 800px) {
    .section-title {
        font-size: var(--wp--preset--font-size--medium);
    }

    .section-desc {
        font-size: var(--wp--preset--font-size--xsmall);
    }
}

.sm-caps {
    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;
}

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--system-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
}


h1, h2, h3, h4, h5, h6 {
    margin: 0 0 var(--wp--custom--layout--block-gap);
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}


.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 {
    margin: var(--wp--custom--layout--block-gap) auto;
    padding: var(--wp--custom--layout--block-gap);
}

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

.wp-block-quote {
    margin: var(--wp--custom--layout--block-gap) auto;
}

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

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);
    letter-spacing: var(--wp--custom--letter-spacing--loose);
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.breadcrumbs:after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: url(../svg/accent-dots-2.svg) repeat left;
    margin-top: var(--wp--custom--layout--block-gap-small)
}

.breadcrumbs a, .breadcrumbs a:visited {
    color: var(--wp--preset--color--ink);
}
@media (max-width: 600px) {
.breadcrumbs {
    text-align: center;
}
.archive .breadcrumbs {
    text-align: left;
}
}
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--blue);
    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);
}

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

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--blue);
    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: "→";
}

ul.is-style-star li::before {
    content: "★";
}

ul.is-style-heart li::before {
    content: "❤";
}

/*--------------------------------------------------------------
8. 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;
}

::-moz-selection {
    background: #DEE4F2;
}

::selection {
    background: #DEE4F2;
}

/*Callout Content Styles*/
.is-style-blue {
    background: var(--wp--preset--color--blue-light);
    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));
}

.is-style-green {
    background: var(--wp--preset--color--green-light);
    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));
}

.is-style-yellow {
    background: var(--wp--preset--color--yellow-light);
    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));
}

.is-style-orange {
    background: var(--wp--preset--color--orange-light);
    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));
}

.is-style-pink {
    background: var(--wp--preset--color--pink-light);
    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));
}
/*Callout Content Styles in After Post*/
.block-area-after-post .is-style-blue, .block-area-after-post .is-style-green, .block-area-after-post .is-style-yellow, .block-area-after-post .is-style-orange, .block-area-after-post .is-style-pink {
    padding: var(--wp--custom--layout--block-gap);
    margin: 0 auto var(--wp--custom--layout--block-gap);
}

/*Callout Content Styles in Sidebar*/
.block-area-sidebar .is-style-blue, .block-area-sidebar .is-style-green, .block-area-sidebar .is-style-yellow, .block-area-sidebar .is-style-orange, .block-area-sidebar .is-style-pink {
    padding: var(--wp--custom--layout--block-gap);
    margin: 0 auto var(--wp--custom--layout--block-gap);
}
.is-style-blue-2, .is-style-green-2, .is-style-yellow-2, .is-style-orange-2, .is-style-pink-2 {
    margin: var(--wp--custom--layout--block-gap-large) auto;
}
/*Blue Style*/
.is-style-blue-1 {
    background: var(--wp--preset--color--blue-lightest);
    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));
}


.is-style-blue-1 .wrap, .is-style-blue-2 .wrap {
    border: var(--wp--custom--border-width--small) solid var(--wp--preset--color--blue-light);
    background: var(--wp--preset--color--white);
    padding: var(--wp--custom--layout--block-gap);
    border-radius: var(--wp--custom--border-radius--medium)
}

.is-style-blue-1 .section-icon, .is-style-blue-2 .section-icon {
    background: var(--wp--preset--color--blue);
}

.is-style-blue-1 .section-icon svg, .is-style-blue-2 .section-icon svg {
    fill: var(--wp--preset--color--white);
}

.is-style-blue .section-title, .is-style-blue-1 .section-title, .is-style-blue-2 .section-title {
    color: var(--wp--preset--color--blue);
}

.is-style-blue .callout-button, .is-style-blue-1 .overprint, .is-style-blue-2 .overprint {
    background: var(--wp--preset--color--blue);
}

.is-style-blue .post-meta svg, .is-style-blue-1 .post-meta svg, .is-style-blue-2 .post-meta svg {
    fill: var(--wp--preset--color--blue);
}

.is-style-blue-1 .count-number, .is-style-blue-2 .count-number {
    background: var(--wp--preset--color--blue);
}

/*Green Style*/
.is-style-green-1 {
    background: var(--wp--preset--color--green-lightest);
    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));
}

.is-style-green-1 .wrap, .is-style-green-2 .wrap {
    border: var(--wp--custom--border-width--small) solid var(--wp--preset--color--green-light);
    background: var(--wp--preset--color--white);
    padding: var(--wp--custom--layout--block-gap);
    border-radius: var(--wp--custom--border-radius--medium)

}

.is-style-green-1 .section-icon, .is-style-green-2 .section-icon {
    background: var(--wp--preset--color--green);
}

.is-style-green-1 .section-icon svg, .is-style-green-2 .section-icon svg {
    fill: var(--wp--preset--color--white);
}

.is-style-green .section-title, .is-style-green-1 .section-title, .is-style-green-2 .section-title {
    color: var(--wp--preset--color--green);
}

.is-style-green .callout-button, .is-style-green-1 .overprint, .is-style-green-2 .overprint {
    background: var(--wp--preset--color--green);
}

.is-style-green .post-meta svg, .is-style-green-1 .post-meta svg, .is-style-green-2 .post-meta svg {
    fill: var(--wp--preset--color--green);
}

.is-style-green-1 .count-number, .is-style-green-2 .count-number {
    background: var(--wp--preset--color--green);
}

/*Yellow Style*/
.is-style-yellow-1 {
    background: var(--wp--preset--color--yellow-lightest);
    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));
}

.is-style-yellow-1 .wrap, .is-style-yellow-2 .wrap {
    border: var(--wp--custom--border-width--small) solid var(--wp--preset--color--yellow-light);
    background: var(--wp--preset--color--white);
    padding: var(--wp--custom--layout--block-gap);
    border-radius: var(--wp--custom--border-radius--medium)

}

.is-style-yellow-1 .section-icon, .is-style-yellow-2 .section-icon {
    background: var(--wp--preset--color--yellow);
}

.is-style-yellow-1 .section-icon svg, .is-style-yellow-2 .section-icon svg {
    fill: var(--wp--preset--color--white);
}

.is-style-yellow .section-title, .is-style-yellow-1 .section-title, .is-style-yellow-2 .section-title {
    color: var(--wp--preset--color--yellow);
}

.is-style-yellow .callout-button, .is-style-yellow-1 .overprint, .is-style-yellow-2 .overprint {
    background: var(--wp--preset--color--yellow);
}

.is-style-yellow .post-meta svg, .is-style-yellow-1 .post-meta svg, .is-style-yellow-2 .post-meta svg {
    fill: var(--wp--preset--color--yellow);
}

.is-style-yellow-1 .count-number, .is-style-yellow-2 .count-number {
    background: var(--wp--preset--color--yellow);
}

/*Orange Style*/
.is-style-orange-1 {
    background: var(--wp--preset--color--orange-lightest);
    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));
}

.is-style-orange-1 .wrap, .is-style-orange-2 .wrap {
    border: var(--wp--custom--border-width--small) solid var(--wp--preset--color--orange-light);
    background: var(--wp--preset--color--white);
    padding: var(--wp--custom--layout--block-gap);
    border-radius: var(--wp--custom--border-radius--medium);

}

.is-style-orange-1 .section-icon, .is-style-orange-2 .section-icon {
    background: var(--wp--preset--color--orange);
}

.is-style-orange-1 .section-icon svg, .is-style-orange-2 .section-icon svg {
    fill: var(--wp--preset--color--white);
}

.is-style-orange .section-title, .is-style-orange-1 .section-title, .is-style-orange-2 .section-title {
    color: var(--wp--preset--color--orange);
}

.is-style-orange .callout-button, .is-style-orange-1 .overprint, .is-style-orange-2 .overprint {
    background: var(--wp--preset--color--orange);
}

.is-style-orange .post-meta svg, .is-style-orange-1 .post-meta svg, .is-style-orange-2 .post-meta svg {
    fill: var(--wp--preset--color--orange);
}

.is-style-orange-1 .count-number, .is-style-orange-2 .count-number {
    background: var(--wp--preset--color--orange);
}

/*Pink Style*/
.is-style-pink-1 {
    background: var(--wp--preset--color--pink-lightest);
    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));
}

.is-style-pink-1 .wrap, .is-style-pink-2 .wrap {
    border: var(--wp--custom--border-width--small) solid var(--wp--preset--color--pink-light);
    background: var(--wp--preset--color--white);
    padding: var(--wp--custom--layout--block-gap);
    border-radius: var(--wp--custom--border-radius--medium);

}

.is-style-pink-1 .section-icon, .is-style-pink-2 .section-icon {
    background: var(--wp--preset--color--pink);
}

.is-style-pink-1 .section-icon svg, .is-style-pink-2 .section-icon svg {
    fill: var(--wp--preset--color--white);
}

.is-style-pink .section-title, .is-style-pink-1 .section-title, .is-style-pink-2 .section-title {
    color: var(--wp--preset--color--pink);
}

.is-style-pink .callout-button, is-style-pink-1 .overprint, .is-style-pink-2 .overprint {
    background: var(--wp--preset--color--pink);
}

.is-style-pink .post-meta svg, .is-style-pink-1 .post-meta svg, .is-style-pink-2 .post-meta svg {
    fill: var(--wp--preset--color--pink);
}

.is-style-pink-1 .count-number, .is-style-pink-2 .count-number {
    background: var(--wp--preset--color--pink);
}

/*Callout Loop Styles in Sidebar*/
.block-area-sidebar .is-style-blue-1, .block-area-sidebar .is-style-green-1, .block-area-sidebar .is-style-yellow-1, .block-area-sidebar .is-style-orange-1, .block-area-sidebar .is-style-pink-1 {
    padding: var(--wp--custom--layout--block-gap);
    margin: 0 auto var(--wp--custom--layout--block-gap);
}

/*Callout Loop Styles in Post*/
.type-post .is-style-blue-1, .type-post .is-style-green-1, .type-post .is-style-yellow-1, .type-post .is-style-orange-1, .type-post .is-style-pink-1 {
    width: 100%;
    padding: var(--wp--custom--layout--block-gap);
    margin: var(--wp--custom--layout--block-gap) auto;
    border-radius: var(--wp--custom--border-radius--medium);
}
.type-post .is-style-blue, .type-post .is-style-green, .type-post .is-style-yellow, .type-post .is-style-orange, .type-post .is-style-pink {
    width: 100%;
    padding: var(--wp--custom--layout--block-gap);
    margin: var(--wp--custom--layout--block-gap) auto;
    border-radius: var(--wp--custom--border-radius--medium);
}
@media (max-width: 600px) {
    .is-style-blue-1, .is-style-green-1, .is-style-yellow-1, .is-style-orange-1, .is-style-pink-1 {
        padding: var(--wp--custom--layout--block-gap);
    }
}

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

.social-menu a {
    display: block;
    line-height: 1;
    margin: 2px;
}

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

.icon-facebook svg {
    fill: var(--wp--preset--color--blue);
}

.icon-instagram svg {
    fill: var(--wp--preset--color--yellow);
}

.icon-ltk svg {
    fill: var(--wp--preset--color--yellow-light);
}

.icon-mix svg {
    fill: var(--wp--preset--color--orange-lightest);
}

.icon-pinterest svg {
    fill: var(--wp--preset--color--pink);
}

.icon-reddit svg {
    fill: var(--wp--preset--color--pink-light);
}

.icon-threads svg {
    fill: var(--wp--preset--color--blue-dark);
}

.icon-tiktok svg {
    fill: var(--wp--preset--color--green-dark);
}

.icon-x svg {
    fill: var(--wp--preset--color--green);
}

.icon-youtube svg {
    fill: var(--wp--preset--color--orange);
}

.icon-yummly svg {
    fill: var(--wp--preset--color--orange-light);
}

/*--------------------------------------------------------------
9. Forms
--------------------------------------------------------------*/
.wp-element-button, .wp-block-button > .wp-block-button__link {
    display: inline-block
}

.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 {
    filter: brightness(85%)
}

.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)
}

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: rgba(0, 0, 0, 0)
}

label, .wp-block-search__label, .wpforms-container .wpforms-field-label {
    font-family: var(--wp--preset--font-family--system-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-serif);
    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-serif);
    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);
}
@media (max-width: 600px) {
.wp-block-search__button-inside .wp-block-search__input {
    font-size: var(--wp--preset--font-size--small);
}
}

.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--green);
    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
}

/*--------------------------------------------------------------
10. Pagination
--------------------------------------------------------------*/
.pagination {
    margin: var(--wp--custom--layout--block-gap) auto 0;
    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--white);
    border-radius: var(--wp--custom--border-radius--large);
    -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);
    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, .pagination ul li.active > a {
    background: var(--wp--preset--color--blue);
    color: var(--wp--preset--color--white);
    fill: var(--wp--preset--color--white)
}

.pagination:after {
    content: '';
    display: block;
    width: 100%;
    height: 18px;
    background: url(../svg/accent-lines.svg) repeat center;
    margin-top: var(--wp--custom--layout--block-gap)
}

/*--------------------------------------------------------------
11. Header
--------------------------------------------------------------*/
.border-bar {
    width: 100%;
    max-width: 100vw;
    display: flex;
}

.border-bar > * {
    height: 5px;
    width: 20%;
}

.border-bar-one {
    background: var(--wp--preset--color--green);
}

.border-bar-two {
    background: var(--wp--preset--color--yellow);
}

.border-bar-three {
    background: var(--wp--preset--color--orange);
}

.border-bar-four {
    background: var(--wp--preset--color--pink);
}

.border-bar-five {
    background: var(--wp--preset--color--blue);
}

.site-header {
    width: 100%;
    -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);
    background: var(--wp--preset--color--white);
    z-index: 9999;
    position: relative;
    top: 0;
}

.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) var(--wp--custom--layout--block-gap-small);

}

.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: space-between;
}

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

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

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

.site-title a:hover {
    transform: scale(.95);
}

/*--------------------------------------------------------------
Desktop Menu
--------------------------------------------------------------*/

.desktop-menu {
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 var(--wp--custom--layout--block-gap);
    padding: 0;
    letter-spacing: var(--wp--custom--letter-spacing--loose);
    text-transform: uppercase;
    font-size: .9rem;
    color: var(--wp--preset--color--ink);
    font-family: var(--wp--preset--font-family--custom-serif);
    font-weight: 700;
}

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

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

.desktop-menu li a:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--wp--preset--color--ink);;
    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: 990px) {
    .site-header .desktop-menu {
        display: none;
    }

    .site-header .social-menu {
        display: none;
    }

}

/*--------------------------------------------------------------
Drawer Menu
--------------------------------------------------------------*/
.site-badge {
    margin: 0 auto 10px;
    line-height: 1;
    width: 100px;
}

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

.site-badge a:hover {
    transform: scale(.95);
}

.nav-border-bar {
    width: 10px;
    max-height: 100vh;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.nav-border-bar > * {
    height: 20%;
    width: 100%;
}

.nav-border-bar-one {
    background: var(--wp--preset--color--green);
}

.nav-border-bar-two {
    background: var(--wp--preset--color--yellow);
}

.nav-border-bar-three {
    background: var(--wp--preset--color--orange);
}

.nav-border-bar-four {
    background: var(--wp--preset--color--pink);
}

.nav-border-bar-five {
    background: var(--wp--preset--color--blue);
}

.drawer-nav {
    display: none;
    background: var(--wp--preset--color--white);
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    padding: 30px 30px 250px;
    overflow: scroll;
    max-width: 350px;
    z-index: 999999;
    -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);
}

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

.drawer-nav .menu-toggle {
    position: absolute;
    right: 0;
    top: 10px;
}

.drawer-nav.active {
    display: block;
}

.drawer-menu {
    padding: 0;
}

.drawer-menu li {
    padding: 0 0 var(--wp--custom--layout--block-gap);
    margin: 0;
    font-weight: 700;
    list-style: none;
    position: relative;
    align-items: center;
    justify-content: space-between;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    letter-spacing: var(--wp--custom--letter-spacing--tight);
    font-size: var(--wp--preset--font-size--large);
    color: var(--wp--preset--color--ink);
    font-family: var(--wp--preset--font-family--custom-serif);
}

.drawer-menu li a {
    padding: 0;
}


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

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

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

.drawer-menu 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-menu li ul li {
    width: 100%;
    text-align: left;
    display: block;
    max-width: 100%;
    margin: 0;
    font-weight: 400;
    font-size: var(--wp--preset--font-size--medium);
    line-height: var(--wp--custom--line-height--xsmall);
}

/*--------------------------------------------------------------
Header Toggles
--------------------------------------------------------------*/
.search-toggle {
    background: var(--wp--preset--color--green-light);
    border-radius: var(--wp--custom--border-radius--large);
    border: none;
    box-shadow: none;
    cursor: pointer;
    line-height: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--wp--custom--layout--block-gap-small);
    margin-left: var(--wp--custom--layout--block-gap-small);
}

.search-toggle svg {
    fill: var(--wp--preset--color--green-dark);
}

.search-toggle:hover, .search-toggle.active {
    background: var(--wp--preset--color--green-dark);
}

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

.menu-toggle {
    background: var(--wp--preset--color--blue-light);
    border-radius: var(--wp--custom--border-radius--large);
    border: none;
    box-shadow: none;
    cursor: pointer;
    line-height: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--wp--custom--layout--block-gap-small);
    margin-right: var(--wp--custom--layout--block-gap-small);
}

.menu-toggle svg {
    fill: var(--wp--preset--color--green-dark);
}

.menu-toggle:hover, .menu-toggle.active {
    background: var(--wp--preset--color--blue-dark);
}

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

.search-toggle svg, .menu-toggle svg {
    width: 20px;
    height: 20px
}

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

/*--------------------------------------------------------------
Header Search
--------------------------------------------------------------*/
.header-search:not(.active) {
    display: none;
}

.header-search {
    background: var(--wp--preset--color--green-light);
    overflow: hidden;
    padding: var(--wp--custom--layout--block-gap-large);
    width: 100%;
    position: absolute;
    top: 85px;
    right: 0;
    z-index: 99999;
    -webkit-box-shadow: var(--wp--custom--box-shadow--2);
    -moz-box-shadow: var(--wp--custom--box-shadow--2);
    box-shadow: var(--wp--custom--box-shadow--2);
}

.admin-bar .header-search {
    top: 115px;
}


.header-search .flexbox {
    justify-content: flex-start;
}

.header-search .wp-block-search {
    width: 100%;
    margin: 0 auto;
}

.search-close {
    border: none;
    background: transparent;
}

@media (max-width: 600px) {
.header-search {
    padding: var(--wp--custom--layout--block-gap);
}
}
/*--------------------------------------------------------------
12. Footer
--------------------------------------------------------------*/
.site-footer {
    background: var(--wp--preset--color--white);
    padding: var(--wp--custom--layout--block-gap-large) var(--wp--custom--layout--block-gap);
}

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

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

.btt {
    position: absolute;
    right: 0;
    background: var(--wp--preset--color--blue);
    top: -63px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--wp--custom--border-radius--large);
    border: var(--wp--custom--border-width--small) solid var(--wp--preset--color--white);
}

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

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

.footer-menu {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.footer-menu li {
    display: block;
    margin: 0 var(--wp--custom--layout--block-gap) 0 0;
}

@media (max-width: 800px) {
    .site-footer .flexbox {
        display: block;
    }

    .footer-menu {
        display: grid;
        column-gap: var(--wp--custom--layout--block-gap-xsmall);
        row-gap: var(--wp--custom--layout--block-gap-xsmall);
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-menu li {
        background: var(--wp--preset--color--blue-lightest);
        padding: var(--wp--custom--layout--block-gap-small);
        margin: 0 !important;
        text-align: center;
    }

    .footer-menu li:hover a, .footer-menu li:hover {
        color: var(--wp--preset--color--white);
    }

    .footer-menu li:nth-child(1n) {
        background: var(--wp--preset--color--green-lightest);
    }

    .footer-menu li:nth-child(1n):hover {
        background: var(--wp--preset--color--green);
    }

    .footer-menu li:nth-child(2n) {
        background: var(--wp--preset--color--yellow-lightest);
    }

    .footer-menu li:nth-child(2n):hover {
        background: var(--wp--preset--color--yellow);
    }

    .footer-menu li:nth-child(3n) {
        background: var(--wp--preset--color--orange-lightest);
    }

    .footer-menu li:nth-child(3n):hover {
        background: var(--wp--preset--color--orange);
    }

    .footer-menu li:nth-child(4n) {
        background: var(--wp--preset--color--pink-lightest);
    }

    .footer-menu li:nth-child(4n):hover {
        background: var(--wp--preset--color--pink);
    }

    .footer-menu li:nth-child(5n) {
        background: var(--wp--preset--color--blue-lightest);
    }

    .footer-menu li:nth-child(5n):hover {
        background: var(--wp--preset--color--blue);
    }


    .site-credits {
        margin: var(--wp--custom--layout--block-gap) auto 0;
        text-align: center;
        font-size: .6rem;
    }
}

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

/*--------------------------------------------------------------
## Headers (Pages, Posts, & Archives
--------------------------------------------------------------*/
.type-post .entry-header {
    margin: var(--wp--custom--layout--block-gap-small) auto;
}

.type-page .entry-header {
    margin: 0;
}

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

.type-page .entry-title {
    margin: var(--wp--custom--layout--block-gap-small) auto;
    max-width: var(--wp--custom--layout--wide);
    position: relative;
}

.type-page .entry-title:after {
    content: '';
    display: block;
    width: 100%;
    height: 18px;
    background: url(../svg/accent-lines.svg) repeat center;
    margin-top: var(--wp--custom--layout--block-gap-small);
}

.type-page .breadcrumbs {
    margin: var(--wp--custom--layout--block-gap) auto 0;
    max-width: var(--wp--custom--layout--wide)
}

.archive-header {
    padding: var(--wp--custom--layout--block-gap);
    position: relative;
}

.archive-header .wrap:after {
    content: '';
    display: block;
    width: 100%;
    height: 18px;
    background: url(../svg/accent-lines.svg) repeat center;
}

.archive-title {
    padding: var(--wp--custom--layout--block-gap-small) 0;
    margin: 0;
}

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

.archive-recent-header {
    margin: var(--wp--custom--layout--block-gap-large) auto;
    position: relative;
}

.archive-recent-header h2 {
    max-width: var(--wp--custom--layout--page);
    color: var(--wp--preset--color--blue);
    font-family: var(--wp--preset--font-family--custom-serif);
    margin: var(--wp--custom--layout--block-gap) auto;
    position: relative;
}
.archive-recent-header h2:after {
    content: '';
    display: block;
    width: 100%;
    height: 18px;
    background: url(../svg/accent-lines.svg) repeat center;
    margin-top: var(--wp--custom--layout--block-gap-small);
}

/*--------------------------------------------------------------
14. Truncated Posts
--------------------------------------------------------------*/
.post-abbr {
    -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);
    background: var(--wp--preset--color--white);
    border-radius: var(--wp--custom--border-radius--small)
}

.post-abbr img {
    display: block;
    border-radius: var(--wp--custom--border-radius--small) var(--wp--custom--border-radius--small) 0 0;
    width: 100%;
    height: auto;
}

.post-abbr a, .post-abbr a:visited {
    color: var(--wp--preset--color--ink);
    text-decoration: none;
}

.post-abbr a:hover, .post-abbr a:visited:hover {
    color: var(--wp--preset--color--blue);
}

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

.post-meta svg {
    fill: var(--wp--preset--color--ink);
    width: 15px;
    height: 15px;
    margin-right: 4px;
}

.post-meta.post-category .sm-sans {
    display: block;
    line-height: 1;
}

.post-meta .wprm-recipe-rating .wprm-recipe-rating-details {
    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;
}

.overprint {
    background: var(--wp--preset--color--ink);
    color: var(--wp--preset--color--white);
    border-radius: var(--wp--custom--border-radius--small);
    display: block;
    width: fit-content;
    padding: 5px var(--wp--custom--layout--block-gap-small);
    font-size: var(--wp--preset--font-size--xsmall);
    font-weight: 700;
    position: relative;
    margin: -15px 0 5px;
}

.overprint a, .overprint a:visited {
    color: var(--wp--preset--color--white);
}
.type-post .overprint {
    font-size: .7rem;
}
@media (max-width: 600px) {
    .post-meta .sm-sans {
        font-size: .7rem;
    }
    .post-meta.post-comments .sm-sans {
        font-size: .8rem;
    }
}
/*--------------------------------------------------------------
## Post Type - Abbreviated Small
--------------------------------------------------------------*/
.post-sm .abbr-content {
    padding: var(--wp--custom--layout--block-gap-small);
}

.post-sm h3 {
    margin: 0 0 var(--wp--custom--layout--block-gap-small) !important;
    font-weight: 700;
    font-size: var(--wp--preset--font-size--medium);
    line-height: var(--wp--custom--line-height--xsmall);
    display: block;
}
.block-area-sidebar .post-sm h3 {
 font-size: var(--wp--preset--font-size--small);
}
.type-post .post-sm h3 {
    font-size: var(--wp--preset--font-size--small);
}
.type-post .post-sm .post-meta {
    display:none;
}
@media (max-width: 600px) {
    .post-sm h3 {
        font-size: var(--wp--preset--font-size--small);
    }
}
/*--------------------------------------------------------------
## Post Type - Abbreviated Medium
--------------------------------------------------------------*/
.post-med .abbr-content {
    padding: 0 var(--wp--custom--layout--block-gap) var(--wp--custom--layout--block-gap);
}

.post-med h3 {
    font-weight: 700;
    font-size: var(--wp--preset--font-size--large);
    line-height: var(--wp--custom--line-height--xsmall);
    margin: 0 0 var(--wp--custom--layout--block-gap-small) !important;
    display: block;
}
.type-post .post-med h3 {
    font-size: var(--wp--preset--font-size--medium);

}
@media (max-width: 800px) {
    .post-med .abbr-content {
        padding: var(--wp--custom--layout--block-gap-small);
    }
}
@media (max-width: 600px) {
    .post-med h3 {
        font-size: var(--wp--preset--font-size--small);
    }
    .post-med .overprint {
        display:none;
    }
}

/*--------------------------------------------------------------
## Post Type - Abbreviated List
--------------------------------------------------------------*/
.post-list {
    display: flex;
    align-items: center;
}

.post-list .abbr-content {
    padding: var(--wp--custom--layout--block-gap-small);
    width: 75%;
}

.post-list .post-abbr-img {
    width: 50%;
}

.post-list .post-abbr-img img {
    border-radius: var(--wp--custom--border-radius--small) 0 0 var(--wp--custom--border-radius--small);
}

.post-list h3 {
    margin: 0 0 var(--wp--custom--layout--block-gap-small);
    font-size: var(--wp--preset--font-size--small);
    line-height: var(--wp--custom--line-height--xsmall);
    display: block;
}
.type-post .post-list .abbr-content {
    padding: var(--wp--custom--layout--block-gap);
}
.type-post .post-list h3 {
    font-size: var(--wp--preset--font-size--large);
}

/*--------------------------------------------------------------
## Post Type - Abbreviated Large
--------------------------------------------------------------*/
.post-lg .abbr-content {
    padding: 0 var(--wp--custom--layout--block-gap) var(--wp--custom--layout--block-gap);
}

.post-lg h3 {
    margin: var(--wp--custom--layout--block-gap-small) 0;
    display: block;
    font-size: var(--wp--preset--font-size--large);
    line-height: var(--wp--custom--line-height--xsmall);
    font-weight: 700;
}
.post-lg .entry-summary {
       font-size: var(--wp--preset--font-size--small);
    line-height: var(--wp--custom--line-height--medium); 
}
.type-post .post-lg h3 {
    font-size: var(--wp--preset--font-size--medium);
}
@media (max-width: 600px) {
    .post-lg h3 {
        font-size: var(--wp--preset--font-size--medium);
    }
    .post-lg .overprint {
        display:none;
    }
}
/*--------------------------------------------------------------
## Post Type - Abbreviated Video
--------------------------------------------------------------*/
.post-video .abbr-content {
    padding: 0 var(--wp--custom--layout--block-gap) var(--wp--custom--layout--block-gap);
}

.post-video h3 {
    margin: var(--wp--custom--layout--block-gap-small) 0;
    display: block;
    font-size: var(--wp--preset--font-size--xlarge);
    line-height: var(--wp--custom--line-height--xsmall);
    font-weight: 700;
}

.post-video .entry-summary {
    font-size: var(--wp--preset--font-size--small);
    line-height: var(--wp--custom--line-height--medium);
    margin: var(--wp--custom--layout--block-gap-small) 0 0;
}

@media (max-width: 800px) {
    .post-video .abbr-content {
        padding: var(--wp--custom--layout--block-gap-small);
    }
}
.type-post .post-video h3 {
    font-size: var(--wp--preset--font-size--large);
}
/*--------------------------------------------------------------
## Post Type - Favorite Small
--------------------------------------------------------------*/
.favorite-sm img {
    border-radius: var(--wp--custom--border-radius--small) var(--wp--custom--border-radius--small) 0 0;
}

.favorite-sm .abbr-content {
    padding: var(--wp--custom--layout--block-gap-small);
}

.favorite-sm h3 {
    margin: 5px 0 0;
    font-family: var(--wp--preset--font-family--system-sans);
    font-size: var(--wp--preset--font-size--medium);
    line-height: var(--wp--custom--line-height--xsmall);
    display: block;
    font-weight: 700;
}
.type-post .favorite-sm h3 {
    font-size: var(--wp--preset--font-size--small);
}
/*--------------------------------------------------------------
## Post Type - Favorite Medium
--------------------------------------------------------------*/
.favorite-med img {
    border-radius: var(--wp--custom--border-radius--small) var(--wp--custom--border-radius--small) 0 0;
}

.favorite-med .abbr-content {
    padding: var(--wp--custom--layout--block-gap-small);
}

.favorite-med h3 {
    margin: var(--wp--custom--layout--block-gap-small) 0;
    font-family: var(--wp--preset--font-family--system-sans);
    font-size: var(--wp--preset--font-size--medium);
    line-height: var(--wp--custom--line-height--small);
    font-weight: 700;
    display: block;
}
.favorite-med .product-meta {
    font-size: var(--wp--preset--font-size--small);
    line-height: var(--wp--custom--line-height--medium); 
}

/*--------------------------------------------------------------
## Post Type - Favorite Large
--------------------------------------------------------------*/

.favorite-med img {
    border-radius: var(--wp--custom--border-radius--small) var(--wp--custom--border-radius--small) 0 0;
}
.favorite-lg .abbr-content {
    padding: var(--wp--custom--layout--block-gap);
}

.favorite-lg h3 {
    margin: var(--wp--custom--layout--block-gap-small) 0;
    font-family: var(--wp--preset--font-family--system-sans);
    font-weight: 700;
    font-size: var(--wp--preset--font-size--large);
    line-height: var(--wp--custom--line-height--small);
    display: block;
}

.favorite-lg .product-meta {
    font-size: var(--wp--preset--font-size--small);
    line-height: var(--wp--custom--line-height--medium); 
}
.type-post .favorite-lg {
    display:flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto var(--wp--custom--layout--block-gap);
}
.type-post .favorite-med img {
    border-radius: var(--wp--custom--border-radius--small)  0 0 var(--wp--custom--border-radius--small);
}
.type-post .favorite-lg .abbr-content {
    width: 100%;
}
@media (max-width: 500px) {
    .type-post .favorite-lg {
        display:block;
    }
    .type-post .favorite-med img {
    border-radius: var(--wp--custom--border-radius--small)  var(--wp--custom--border-radius--small) 0 0 ;
}
}

