/*--------------------------------------------------------------
# GLOBAL CSS
# Normalize
# Elements
# Layout
# Alignment
# Accessibility
# Media
# Typography
# Color
# Social Media
# Forms
# Pagination
# Header
# Footer
# Headers (Pages, Posts, Archives)
# Truncated Posts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# 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;
}

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.1;
    margin: 0;
}

button, input {
    overflow: visible;
}

select {
    text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
}

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

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
body.full-width-content {
    --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);
}

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

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

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

.archive .site-main.search-group {
    grid-template-columns:repeat(4, minmax(0, 1fr));
}

.archive .site-main.error-group {
    grid-template-columns:repeat(1, minmax(0, 1fr));
}

.archive .site-main.blog-group {
    grid-template-columns:repeat(4, minmax(0, 1fr));
}

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

    .archive .site-main.search-group {
        grid-template-columns:repeat(1, minmax(0, 1fr));
    }

    .archive .site-main.blog-group {
        grid-template-columns:repeat(2, 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%
    }
}

.block-area-after-post {
    margin: var(--wp--custom--layout--block-gap-large) auto;
}

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

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


.entry-content > *:first-child, .single .entry-content > p:first-child, .page .entry-content > p:first-child, .block-area-404 > *: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 > *: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);
}


/*--------------------------------------------------------------
# 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;
    background: var(--wp--preset--color--grey);
    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: 100%;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.entry-summary {
    font-size: var(--wp--preset--font-size--small);
    letter-spacing: var(--wp--custom--letter-spacing--none);
    line-height: var(--wp--custom--line-height--medium);
}

.sm-caps {
    font-family: var(--wp--preset--font-family--system-sans);
    font-size: var(--wp--preset--font-size--xxsmall);
    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-family: var(--wp--preset--font-family--system-sans);
    font-size: var(--wp--preset--font-size--xxsmall);
    letter-spacing: var(--wp--custom--letter-spacing--none);
    line-height: var(--wp--custom--line-height--small);
    text-transform: none;
    font-weight: 400;
}

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

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

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 {
    color: var(--wp--preset--color--blue);
    padding: 0;
    font-family: var(--wp--preset--font-family--system-sans);
    font-size: var(--wp--preset--font-size--xxsmall);
    line-height: var(--wp--custom--line-height--small);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
}

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

@media (max-width: 1200px) {
    .breadcrumbs .wrap {
        width: calc(100% - 40px);
    }
}

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--red-dark);
    background: var(--wp--preset--color--red-light);
    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--red-light);
}

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--xxsmall);
    color: var(--wp--preset--color--red-dark);
    background: var(--wp--preset--color--red-light);
    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: "❤";
}

/*--------------------------------------------------------------
# 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: var(--wp--preset--color--blue-light);
    color: var(--wp--preset--color--ink);
}

::selection {
    background: var(--wp--preset--color--blue-light);
    color: var(--wp--preset--color--ink);
}

/*--------------------------------------------------------------
# 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--red);
    width: 20px;
    height: 20px;
}

.social-menu a:hover svg {
    fill: var(--wp--preset--color--red-light);
    opacity: 1;
}

/*--------------------------------------------------------------
# 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--ink)
}

input, select, optgroup, textarea {
    font-size: var(--wp--preset--font-size-xsmall);
    line-height: var(--wp--custom--line-height--small);
}

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--none);
    font-size: var(--wp--preset--font-size-xsmall);
    line-height: var(--wp--custom--line-height--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
}

input, select, textarea {
    background: transparent;
    border: var(--wp--custom--border-width--xsmall) solid var(--wp--preset--color--grey-dark);
    border-radius: 0;
    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)
}


.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: var(--wp--preset--color--ink)
}

.wp-block-search__button-inside .wp-block-search__input {
    border: none
}

.wp-block-search__inside-wrapper {
    background: var(--wp--preset--color--white)
}

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

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

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.pagination {
    margin: 40px auto;
    max-width: var(--wp--custom--layout--page);
    grid-column: 1/-1;
}

.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-light);
    border-radius: var(--wp--custom--border-radius--large);
    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--blue);
    opacity: 1;
    color: var(--wp--preset--color--white);
    fill: var(--wp--preset--color--white)
}


.pagination ul li.active > a {
    background: var(--wp--preset--color--ink);
    opacity: 1;
    color: var(--wp--preset--color--white);
    fill: var(--wp--preset--color--white)
}
.pagination li > .current {
    background: var(--wp--preset--color--ink);
    opacity: 1;
    color: var(--wp--preset--color--white);
    border-radius: var(--wp--custom--border-radius--large);
    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 li .next, .pagination li .prev {
    display: none;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.admin-bar .site-container {
    padding: 32px 0 0;
}

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


.site-header {
    width: 100%;
    z-index: 9999;
    position: relative;
    border-bottom: var(--wp--custom--border-width--xsmall) solid var(--wp--preset--color--grey-dark);
    top: 0;
}

.main-navigation {
    max-width: 1200px;
    padding: 15px 0;
    width: calc(100% - 20px);
    align-items: center;
    margin: 0 auto;
    position: relative;
}

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

/*--------------------------------------------------------------
## Site Logo
--------------------------------------------------------------*/
.site-title {
    margin: 0;
    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;
}

@media (max-width: 600px) {
    .site-title {
        width: 300px;
    }

    .site-title a {
        max-width: 300px;
        height: 40px;
    }
}

@media (max-width: 350px) {
    .site-title {
        width: 180px;
    }

    .site-title a {
        max-width: 180px;
        height: 24px;
    }
}

/*--------------------------------------------------------------
## Site Badge
--------------------------------------------------------------*/
.site-badge {
    margin: 0 auto var(--wp--custom--layout--block-gap);
    line-height: 1;
    width: 150px;
        height: 150px;
        position: relative;
}

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

/*--------------------------------------------------------------
## Site Monogram
--------------------------------------------------------------*/
.site-monogram {
    margin: 0 auto var(--wp--custom--layout--block-gap);
    line-height: 1;
    width: 100px;
}

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

/*--------------------------------------------------------------
##  Desktop Menu
--------------------------------------------------------------*/
.desktop-menu {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 15px;
    padding: 0;
    font-family: var(--wp--preset--font-family--system-sans);
    font-size: var(--wp--preset--font-size--xxsmall);
    letter-spacing: var(--wp--custom--letter-spacing--loose);
    line-height: var(--wp--custom--line-height--small);
    text-transform: uppercase;
    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--blue);
    transform: scaleX(0);
    transition: all 250ms ease;
    border-radius: 50%;
    transform-origin: left;
}

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

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

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

@media (max-width: 1100px) {
    .site-header .desktop-menu {
        display: none;
    }
}
@media (max-width: 1024px) {
    .site-header .top-banner {
        display: none;
    }
}

/*--------------------------------------------------------------
## Banner
--------------------------------------------------------------*/
.top-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    background: var(--wp--preset--color--grey);
    color: var(--wp--preset--color--ink);
    width: 26%;
    height: 60px;
}

.top-banner svg {
    transform: rotate(-90deg);
    margin-left: 3px;
    width: 20px;
    height: 20px;
}

.top-banner:hover {
    background: var(--wp--preset--color--ink);
    color: var(--wp--preset--color--grey);
    opacity: 1;
}

.top-banner:hover svg {
    fill: var(--wp--preset--color--grey);
}

/*--------------------------------------------------------------
## Drawer Menu
--------------------------------------------------------------*/
.drawer-nav {
    display: none;
    background: var(--wp--preset--color--grey);
    color: var(--wp--preset--color--ink);
    font-family: var(--wp--preset--font-family--custom-serif);
    font-size: var(--wp--preset--font-size--large);
    position: absolute;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    padding: 40px 40px 250px;
    overflow: scroll;
    max-width: 400px;
    z-index: 999999;
}

.drawer-nav-inner {
    position: relative;
}

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

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

.drawer-menu {
    padding: 0;
}

.drawer-menu li {
    padding: 10px 0;
    margin: 0;
    font-weight: 400;
    list-style: none;
    position: relative;
    align-items: center;
    justify-content: space-between;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.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;
    fill: var(--wp--preset--color--ink);
}

.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%;
    padding: 5px 0;
    margin: 0;
    font-weight: 400;
    font-family: var(--wp--preset--font-family--system-sans);
    font-size: var(--wp--preset--font-size--small);
    letter-spacing: var(--wp--custom--letter-spacing--none);
    line-height: var(--wp--custom--line-height--small);
    border-top: 0;
}

/*--------------------------------------------------------------
## Site-Header Toggles
--------------------------------------------------------------*/
.menu-toggle {
    background: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
    line-height: 0;
    text-align: center;
    display: none;
    padding: 0;
    width: 50px;
    height: 50px;
}

.menu-toggle svg {
    width: 24px;
    height: 24px
}

.menu-toggle .close {
    display: none;
}

.menu-toggle.active {
    background: transparent;
}

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

@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }
}

/*--------------------------------------------------------------
### Search Toggle
--------------------------------------------------------------*/
.search-toggle {
    background: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 50px;
    height: 50px;
}

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

.search-toggle .close {
    display: none
}

.search-toggle.active .open {
    display: none;
}

.search-toggle.active .close {
    display: block;
}

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

.menu-right .search-toggle {
    margin: 0 0 0 15px;
}

/*--------------------------------------------------------------
### Close Toggle
--------------------------------------------------------------*/
.close-toggle {
    background: transparent;
    display: block;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: inherit;
    height: inherit;
}

.close-toggle.active .close {
    display: block !important;
}

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

.close-toggle:hover {
    background: transparent;
}

.close-toggle:hover svg {
    fill: var(--wp--preset--color--blue-dark);
}

.close-toggle.active {
    background: transparent;
}

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

.header-search {
    background: var(--wp--preset--color--grey);
    overflow: hidden;
    padding: var(--wp--custom--layout--block-gap);
    width: 100%;
    position: absolute;
    right: 0;
    top: 60px;
    z-index: 99999;
}

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

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

.header-search .wp-block-search__input, .header-search :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
    border-color: var(--wp--preset--color--grey-dark);
}

.header-search .wp-block-search__inside-wrapper {
    background: transparent;
}

.header-search .wp-block-search input {
    background: transparent;
    color: var(--wp--preset--color--ink);
    font-size: var(--wp--preset--font-size--large);
    font-family: var(--wp--preset--font-family--custom-serif);
}

.header-search .wp-block-search input::placeholder {
    color: var(--wp--preset--color--ink);
}

.header-search .wp-element-button, .header-search .wp-block-button__link {
    background-color: transparent;
    color: var(--wp--preset--color--ink);
    fill: var(--wp--preset--color--ink);
}

@media (max-width: 900px) {
    .header-search {
        top: 50px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
    border-top: var(--wp--custom--border-width--xsmall) solid var(--wp--preset--color--grey);
    padding: var(--wp--custom--layout--block-gap-large) 0 0;
}

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

.site-footer .flexbox {
    display: grid;
    grid-template-columns: 1fr 2fr 3fr;
    column-gap: var(--wp--custom--layout--block-gap);
    row-gap: var(--wp--custom--layout--block-gap);
    align-items: flex-start;
}

.footer-content h2 {
    font-family: var(--wp--preset--font-family--system-sans);
    font-size: var(--wp--preset--font-size--small);
    letter-spacing: var(--wp--custom--letter-spacing--loose);
    line-height: var(--wp--custom--line-height--small);
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 var(--wp--custom--layout--block-gap-small);
    color: var(--wp--preset--color--red);

}

.footer-content .social-menu {
    margin: var(--wp--custom--layout--block-gap-small) 0 0;
    justify-content: flex-start;
}

.footer-content .social-menu svg {
    fill: var(--wp--preset--color--ink);

}

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

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

/*--------------------------------------------------------------
##  Back To Top Button
--------------------------------------------------------------*/
.btt {
    position: absolute;
    right: 0;
    background: var(--wp--preset--color--red-light);
    top: -71px;
    width: 60px;
    height: 60px;
    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)
}

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

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

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

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

.footer-menu li {
    display: block;
    font-family: var(--wp--preset--font-family--system-sans);
    font-size: var(--wp--preset--font-size--small);
    letter-spacing: var(--wp--custom--letter-spacing--loose);
    line-height: var(--wp--custom--line-height--small);
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    color: var(--wp--preset--color--red);
}

.footer-menu li > ul, .footer-menu li > ol {
    margin-bottom: 0;
    margin-left: 0;
    margin-top: var(--wp--custom--layout--block-gap-small);
    padding: 0;
}

.footer-menu li ul li {
    display: block;
    letter-spacing: var(--wp--custom--letter-spacing--none);
    text-transform: none;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--wp--preset--color--ink);
}

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

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

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

}

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

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


/*--------------------------------------------------------------
# Headers (Pages, Posts, & Archives)
--------------------------------------------------------------*/
.entry-header {
    padding: 0;
    margin: 0;
}

.entry-title {
    margin: 0;
}

.archive-header {
    background: var(--wp--preset--color--grey-light);
    max-width: 100vw;
    padding: var(--wp--custom--layout--block-gap-large) var(--wp--custom--layout--block-gap);
    margin: 0 auto;
}

.archive-header .entry-title {
    padding: 0 0 var(--wp--custom--layout--block-gap);
    margin: var(--wp--custom--layout--block-gap) 0;
    border-bottom: 2px dotted var(--wp--preset--color--ink)
}

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

.page .archive-header .entry-title {
    padding: 0;
    margin: var(--wp--custom--layout--block-gap) 0 0;
    border-bottom: 0;
}

.page .entry-header .wrap, .blog .entry-header .wrap {
    border-bottom: 0;
    padding: 0;
}

.error404 .entry-header {
    padding: var(--wp--custom--layout--block-gap-large) 0;
    background: var(--wp--preset--color--grey);
    color: var(--wp--preset--color--ink);
}

.error404 .entry-content {
    margin: var(--wp--custom--layout--block-gap-large) 0;
}

.error404 .entry-header .wrap {
    border-bottom: 0;
    padding: 0;
}

.error404 .entry-header h1 {
    margin: 0;
}

@media (max-width: 600px) {
    .entry-title {
        font-size: 2rem;
    }

}

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

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

.archive-recent-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    max-width: var(--wp--custom--layout--wide);
    margin: var(--wp--custom--layout--block-gap-large) auto;
}

.archive-recent-header h2 {
    font-size: var(--wp--preset--font-size--xlarge);
    margin: 0;
    padding: 0;
    position: relative;
}

.archive-recent-header h2::after {
    content: "";
    position: absolute;
    left: calc(100% + 20px);
    top: 50%;
    height: 10px;
    width: 100vw;
    background-color: #FFFFFF;
    opacity: 1;
    background-image: radial-gradient(#24313A 2px, #FFFFFF 0);
    background-size: 10px;
    z-index: -1;
}

/*--------------------------------------------------------------
# Truncated Posts
--------------------------------------------------------------*/
.post-abbr {
    background: var(--wp--preset--color--white);
    border: var(--wp--custom--border-width--xsmall) solid var(--wp--preset--color--grey);
}

.post-abbr img {
    display: block;
}

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

.post-abbr .article-title {
    font-family: var(--wp--preset--font-family--custom-serif);
    line-height: var(--wp--custom--line-height--small);
    font-weight: 700;
    text-transform: capitalize;

}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--wp--preset--color--ink);
    font-family: var(--wp--preset--font-family--system-sans);
    font-size: var(--wp--preset--font-size--xxsmall);
    letter-spacing: var(--wp--custom--letter-spacing--none);
    line-height: var(--wp--custom--line-height--small);
    text-transform: none;
    font-weight: 400;
}

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

.post-meta .wprm-block-text-normal, .post-meta .wprm-recipe-details-unit {
    font-size: .8rem;
}

.overprint .sm-caps {
    font-weight: 400;
}

.overprint a {
    display: block;
    line-height: 1;
}

.read-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border: var(--wp--custom--border-width--small) solid var(--wp--preset--color--ink);
    color: var(--wp--preset--color--ink);
    padding: var(--wp--custom--layout--block-gap-small);
    margin: var(--wp--custom--layout--block-gap-small) 0 0;
}

.read-more:hover {
    background: var(--wp--preset--color--ink);
    color: var(--wp--preset--color--white);
}

.read-more a {
    color: var(--wp--preset--color--ink);
    display: flex;
    align-items: center;
    justify-content: center;
}

.read-more a .sm-caps {
    color: var(--wp--preset--color--ink);
    display: block;
}

.read-more a:hover .sm-caps {
    color: var(--wp--preset--color--white);
}

.read-more a:hover {
    opacity: 1;
}

.read-more svg {
    fill: var(--wp--preset--color--ink);
    transform: rotate(-90deg);
    margin-left: 5px;
    width: 20px;
    height: 20px;
}

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

.block-callout-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    background: var(--wp--preset--color--ink);
    color: var(--wp--preset--color--white) !important;
    padding: var(--wp--custom--layout--block-gap-small);
    margin: var(--wp--custom--layout--block-gap) 0 0;
}

.block-callout-button:hover {
    background: var(--wp--preset--color--blue);
    color: var(--wp--preset--color--white);
    opacity: 1;
}

.block-callout-button .sm-caps {
    color: var(--wp--preset--color--white);
    display: block;
}

.block-callout-button svg {
    fill: var(--wp--preset--color--white);
    transform: rotate(-90deg);
    margin-left: 5px;
    width: 20px;
    height: 20px;
}

/*--------------------------------------------------------------
## Post Type - Vertical
--------------------------------------------------------------*/
.post-vertical .abbr-content {
    padding: var(--wp--custom--layout--block-gap);
}

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

.type-post .post-vertical .abbr-content {
    padding: var(--wp--custom--layout--block-gap-small);

}

.type-post .post-vertical h3 {
    font-size: var(--wp--preset--font-size--small);
}

.block-area-after-post .post-vertical .abbr-content {
    padding: var(--wp--custom--layout--block-gap-small);

}

.block-area-after-post .post-vertical h3 {
    font-size: var(--wp--preset--font-size--small);
}

.block-area-sidebar .post-vertical .abbr-content {
    padding: var(--wp--custom--layout--block-gap-small);
}

.block-area-sidebar .post-vertical h3 {
    margin: 0 0 var(--wp--custom--layout--block-gap-xsmall);
    font-size: var(--wp--preset--font-size--small);
    line-height: var(--wp--custom--line-height--xsmall);
    display: block;
}

@media (max-width: 600px) {
    .post-vertical .abbr-content {
        padding: var(--wp--custom--layout--block-gap-small);
    }

    .post-vertical h3 {
        font-size: var(--wp--preset--font-size--small);
    }
}

/*--------------------------------------------------------------
## Post Type - Square
--------------------------------------------------------------*/
.post-square .abbr-content {
    padding: var(--wp--custom--layout--block-gap-small);
}

.post-square h3 {
    margin: 0 0 var(--wp--custom--layout--block-gap-small);
    font-size: var(--wp--preset--font-size--small);
    display: block;
}

.block-area-sidebar .post-square .abbr-content {
    padding: var(--wp--custom--layout--block-gap-small);
}

.block-area-sidebar .post-square h3 {
    margin: 0 0 var(--wp--custom--layout--block-gap-xsmall);
    display: block;
}

.section-posts-list .post-square {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*--------------------------------------------------------------
## Post Type - List
--------------------------------------------------------------*/
.section-posts-list .post-square .post-abbr-img {
    width: 40%;
}

.section-posts-list .post-square .abbr-content {
    width: 60%;
}

.section-posts-list .post-square h3 {
    font-size: var(--wp--preset--font-size--medium);
}

@media (max-width: 350px) {
    .section-posts-list .post-square h3 {
        font-size: var(--wp--preset--font-size--small);
    }
}

/*--------------------------------------------------------------
## Post Type - Horizontal
--------------------------------------------------------------*/
.post-horizontal .abbr-content {
    padding: 15px;
}

.post-horizontal h3 {
    font-size: var(--wp--preset--font-size--large);
    line-height: var(--wp--custom--line-height--small);
    margin: 0 0 var(--wp--custom--layout--block-gap-small);
    display: block;
}

.post-horizontal .post-meta {
    margin: 0 0 var(--wp--custom--layout--block-gap-small);
}

.post-horizontal .overprint {
    margin: 0 0 var(--wp--custom--layout--block-gap-small);
}

.post-horizontal .overprint a {
    color: var(--wp--preset--color--red);
}

.post-horizontal .overprint a:hover {
    color: var(--wp--preset--color--red-dark);
}

.section-posts-video .post-horizontal .overprint {
    display: none;
}

.section-posts-video .post-horizontal .entry-summary {
    display: none;
}

.section-posts-video .post-horizontal .read-more {
    display: none;
}

.section-posts-video .post-horizontal .abbr-content {
    padding: var(--wp--custom--layout--block-gap);
}

.block-area-sidebar .post-horizontal .abbr-content {
    padding: 15px;
}

.block-area-sidebar .post-horizontal h3 {
    font-size: var(--wp--preset--font-size--medium);
}

@media (max-width: 600px) {
    .post-horizontal .abbr-content, .section-posts-video .post-horizontal .abbr-content {
        padding: 15px;
    }

    .post-horizontal h3 {
        font-size: var(--wp--preset--font-size--medium);
    }
}

/*--------------------------------------------------------------
  ## Post Type - None
  --------------------------------------------------------------*/
.post-no-results {
    padding: var(--wp--custom--layout--block-gap);
}

.post-no-results h3 {
    font-size: var(--wp--preset--font-size--large);
    line-height: var(--wp--custom--line-height--small);
    margin: 0 0 var(--wp--custom--layout--block-gap-small);
}

.post-no-results .entry-summary p {
    margin: 0 0 var(--wp--custom--layout--block-gap-small);
}