@charset "UTF-8";
/* ---------- [ Text ] ---------- */
body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #1a1a1a;
}

/* ---------- [ Headings ] ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
  margin: 8px 0 12px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 20px;
}

/* ---------- [ Links ] ---------- */
/* [ More Links ] */
.more-link-container {
  display: block;
}

* + .more-link-container {
  margin-top: 12px;
}

a.more-link {
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
}
@media (min-width: 414px) {
  a.more-link {
    font-size: 20px;
  }
}
@media (hover: hover) {
  a.more-link:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}

.more-link .icon-font {
  margin-left: 8px;
}

/* ---------- [ Forms ] ---------- */
input,
select,
textarea {
  font-weight: 600;
  font-size: 16px;
  color: inherit;
  border-color: #707070;
}

/* [ Placeholders ] */
::-webkit-input-placeholder {
  color: #1a1a1a;
  text-transform: lowercase;
}

:-ms-input-placeholder {
  color: #1a1a1a;
  text-transform: lowercase;
}

::placeholder {
  color: #1a1a1a;
}

/* ---------- [ Pagination ] ---------- */
.comments-pagination {
  margin-top: 20px;
}

.comments-pagination::before,
.comments-pagination::after {
  display: table;
  clear: both;
  content: "";
}

.pagination {
  margin-top: 8px;
  font-weight: 800;
  font-size: 18px;
  font-family: "Jost", sans-serif;
}

.pagination a,
.pagination .pagination-omission,
.pagination .active a,
.pagination .post-page-numbers {
  border-radius: 100px;
}

@media (min-width: 1024px) {
  .pagination a,
.pagination .pagination-omission,
.pagination .active a,
.pagination .pagination-previous a,
.pagination .pagination-next a,
.pagination .post-page-numbers {
    padding: 8px;
  }
}
@media (hover: hover) {
  .pagination:not(.adjacent-entry-pagination) a:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    transform: scale(0.95);
  }
}
.pagination .pagination-previous a,
.pagination .pagination-next a {
  font-size: 16px;
  display: flex;
  align-items: center;
  padding: 14px;
  border-bottom: none;
  width: auto;
}

@media (min-width: 1024px) {
  .pagination .pagination-previous a,
.pagination .pagination-next a {
    padding: 0;
  }
}
.pagination .pagination-previous .icon-font {
  margin-right: 8px;
  margin-top: -2px;
}

.pagination .pagination-next .icon-font {
  margin-left: 8px;
  margin-top: -2px;
}

/* [ Archive Pagination ] */
.archive-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 1024px) {
  .archive-pagination ul {
    display: block;
  }
}
.archive-pagination li {
  display: flex;
  justify-content: center;
  margin: 0 4px;
}

@media (min-width: 1024px) {
  .archive-pagination li {
    display: inline-block;
    align-content: center;
  }
}
.archive-pagination a,
.archive-pagination .active a,
.archive-pagination .pagination-omission {
  width: 30px;
  height: 30px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.archive-pagination .pagination-omission {
  max-width: 64px;
}

.archive-pagination .active a {
  background-color: transparent;
  border-color: #1a1a1a;
  color: #1a1a1a;
  transform: none;
}

@media (hover: hover) {
  .archive-pagination a:hover {
    background-color: transparent !important;
    border-color: #1a1a1a;
    color: #1a1a1a;
  }
}
.archive-pagination .pagination-previous,
.archive-pagination .pagination-next {
  margin: 0;
}

@media (min-width: 1024px) {
  .archive-pagination .pagination-previous {
    margin: 0 8px 0 0;
  }

  .archive-pagination .pagination-next {
    margin: 0 0 0 8px;
  }
}
.archive-pagination .pagination-previous a,
.archive-pagination .pagination-next a {
  font-size: 20px;
  padding-left: 22px;
  padding-right: 22px;
  font-weight: 700;
  padding: 0;
}

@media (hover: hover) {
  .archive-pagination .pagination-previous a:hover,
.archive-pagination .pagination-next a:hover {
    background-color: transparent;
    text-decoration: underline;
    transform: none;
  }
}
.archive-pagination .pagination-previous .icon-font {
  margin-right: 4px;
  top: 0;
}

.archive-pagination .pagination-next .icon-font {
  margin-left: 4px;
}

/* [ Entry Pagination ] */
.section-description {
  margin-top: 8px;
  line-height: 1.3;
  letter-spacing: 0;
}

.section-description a,
.entry-description a {
  text-decoration: underline;
}

@media (hover: hover) {
  .section-description a:hover,
.entry-description a:hover {
    text-decoration: none;
  }
}
.entry-description {
  line-height: 1.3;
}

.content.flexbox > .entry {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.content.flexbox > .entry .entry-title-link {
  display: block;
  padding: 8px;
  text-align: center;
}

.content.flexbox .entry-header {
  display: flex;
  flex-direction: column;
}

.content.flexbox .entry-title {
  margin: 0;
  flex: 1;
}

.content.flexbox .all-posts-title {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 8px;
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .content.flexbox .all-posts-title {
    margin-top: 40px;
  }
}
/* Blocks Spacing */
.home.entry > * + * {
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .home.entry > * + * {
    margin-top: 40px;
  }
}
.home.entry .single-entry-content {
  margin-top: 0;
}

/* ---------- [ Comments ] ---------- */
/* [ Comment List ] */
.comment article {
  position: relative;
  margin-top: 24px;
}

.comment .comment {
  border-bottom: none;
  padding-bottom: 0;
}

.entry-comments .comment-header .comment-author {
  margin-bottom: 4px;
  font-family: "Jost", sans-serif;
  font-weight: 800;
}

.entry-comments .comment-header .comment-meta {
  font-family: "Jost", sans-serif;
  font-weight: 600;
}

.avatars-disabled article .comment-header::before {
  content: none;
}

.comment .avatar {
  margin-top: -4px;
}

.comment-meta {
  font-size: 16px;
  font-weight: 600;
  margin: 6px 0 0;
}

.comment-edit-link {
  text-transform: uppercase;
  font-weight: 500;
  position: absolute;
  bottom: 12px;
  right: 0;
}

.comment-content {
  margin-top: 8px;
  position: relative;
}

.comment-content .wprm-comment-rating {
  position: absolute;
  right: 0;
  top: -54px;
  margin: 0;
  line-height: 1;
}
@media (min-width: 414px) {
  .comment-content .wprm-comment-rating {
    top: -26px;
  }
}

.comment-reply .comment-reply-link {
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
  --color-secondary-hover: #fff;
  border-color: var(--color-secondary);
  background-color: transparent;
  min-height: initial;
  display: inline-flex;
  font-size: 16px;
  padding: 6px 10px;
}
@media (min-width: 414px) {
  .comment-reply .comment-reply-link {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .comment-reply .comment-reply-link:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}
@media (hover: hover) {
  .comment-reply .comment-reply-link:hover {
    background-color: var(--color-secondary);
  }
}

/* [ Comment Form ] */
.comment-respond {
  position: relative;
  margin: 24px -10px 0;
  padding: 36px;
  background-color: #f2fcfc;
  text-align: left;
}

@media (min-width: 768px) {
  .comment-respond {
    margin: 24px 0 0;
    padding: 20px 28px 24px;
    border-radius: 5px;
  }
}
.comment-respond .comment-reply-title {
  font-size: 32px;
  text-transform: capitalize;
  margin-bottom: 0;
}
.comment-respond .comment-reply-title::before {
  content: "";
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/embellishment-comments.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  height: 28px;
  width: 30px;
  margin-bottom: -4px;
}

.comment-respond .comment-notes {
  margin-top: 4px;
}

.comment-respond .comment-form-wprm-rating {
  margin: 0;
  text-align: center;
  border-radius: 5px;
  border: 2px solid;
  padding: 16px;
  background-color: #fff;
}

@media (min-width: 768px) {
  .comment-respond .comment-form-wprm-rating {
    display: flex;
    align-items: center;
    margin: 0;
  }
}
.comment-respond .comment-form-wprm-rating label {
  display: block;
}

.comment-respond .wprm-rating-stars {
  height: 40px;
  display: block;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .comment-respond .wprm-rating-stars {
    height: auto;
    margin: 0 0 0 8px;
    display: flex;
  }
}
.comment-respond .wprm-comment-ratings-container {
  transform: scale(1.8);
  transform-origin: top;
}

@media (min-width: 768px) {
  .comment-respond .wprm-comment-ratings-container {
    transform: none;
  }
}
.comment-respond .wprm-comment-ratings-container svg .wprm-star-full {
  transform: translateY(-1px);
}

.comment-respond p {
  margin: 0;
}

@media (min-width: 768px) {
  p.comment-form-author,
p.comment-form-email {
    width: 100%;
    margin-left: 0;
    display: flex;
  }
}
.comment-respond .comment-form {
  position: relative;
  z-index: 2;
  display: grid;
  grid-gap: 16px;
}

@media (min-width: 768px) {
  .comment-respond .comment-form {
    grid-template-columns: 1fr 1fr;
  }

  .comment-respond .comment-form > * {
    grid-column: span 2;
  }

  .comment-respond .comment-form .comment-form-author,
.comment-respond .comment-form .comment-form-email {
    grid-column: span 1;
  }
}
.comment-respond input,
.comment-respond textarea {
  padding: 9px 12px;
  border: none;
}

.comment-form textarea {
  padding: 8px 0 12px;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email {
  display: flex;
  padding-left: 12px;
  border-radius: 5px;
  border: 2px solid;
  background-color: #fff;
}

.comment-form-comment {
  flex-direction: column;
  padding-top: 12px;
}

.comment-respond label {
  position: static;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  text-transform: none;
}

.comment-respond label .required {
  margin-left: 0;
}

.comment-respond .comment-form-cookies-consent {
  padding: 0;
  margin-bottom: 9px;
}

.comment-respond .form-submit .submit {
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
  --color-secondary: #fff;
  --color-primary: #1a1a1a;
}
@media (min-width: 414px) {
  .comment-respond .form-submit .submit {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .comment-respond .form-submit .submit:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}

@media (min-width: 768px) {
  .comment-respond .form-submit .submit {
    width: auto;
  }
}
/* [ Comment List ] */
.comment-list .comment.byuser > article {
  background: #fff;
}

.comment.bypostauthor > article,
.comment.comment-author-bixskahill > article {
  background: #e2e2e2;
  position: relative;
  padding: 22px 12px;
}

.avatars-disabled .bypostauthor > article .comment-content,
.avatars-disabled .bypostauthor > article .comment-reply,
.avatars-disabled .comment-author-bixskahill > article .comment-content,
.avatars-disabled .comment-author-bixskahill > article .comment-reply {
  margin-left: 52px;
}

.avatars-disabled .bypostauthor > article .comment-header::before,
.avatars-disabled .comment-author-bixskahill > article .comment-header::before {
  content: "";
  width: 40px;
  height: 40px;
  margin-top: 1px;
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/avatar-author.jpg);
  background-size: contain;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .avatars-disabled .bypostauthor > article .comment-header::before,
.avatars-disabled .comment-author-bixskahill > article .comment-header::before {
    background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/avatar-author@2x.jpg);
  }
}

.comment-list .comment.bypostauthor > article,
.comment-list .comment.comment-author-bixskahill > article {
  position: relative;
  border: 5px solid #daf5f7;
  border-radius: 5px;
  padding: 16px;
}
.comment-list .comment.bypostauthor > article::after,
.comment-list .comment.comment-author-bixskahill > article::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 14px;
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/pattern-small.svg);
  background-size: 200px;
  background-repeat: repeat;
}
@media (min-width: 1024px) {
  .comment-list .comment.bypostauthor > article::after,
.comment-list .comment.comment-author-bixskahill > article::after {
    height: 20px;
  }
}

.comment-list .comment-author {
  margin-bottom: 5px;
}

.comment-list .children {
  margin-left: 20px;
}

@media (min-width: 1024px) {
  .comment-list .children {
    margin-left: 40px;
  }
}
.comment-list > .comment > .children > .comment {
  padding-right: 0 !important;
}

.comment-list > .comment > .children > .comment > article {
  margin-top: 18px;
}

.comment-list .comment-edit-link {
  bottom: 30px;
  right: 8px;
}

.entry-comments .comments-pagination {
  margin-top: 0;
}

@media (min-width: 1024px) {
  .entry-comments .comments-pagination {
    margin-top: 25px;
  }
}
.entry-comments .comments-pagination .pagination-previous,
.entry-comments .comments-pagination .pagination-next {
  margin: 0;
}

.entry-comments .comments-pagination .pagination-previous a,
.entry-comments .comments-pagination .pagination-next a {
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
  --color-secondary: #fff;
  --color-primary: #1a1a1a;
  font-size: 16px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (min-width: 414px) {
  .entry-comments .comments-pagination .pagination-previous a,
.entry-comments .comments-pagination .pagination-next a {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .entry-comments .comments-pagination .pagination-previous a:hover,
.entry-comments .comments-pagination .pagination-next a:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}
@media (min-width: 1024px) {
  .entry-comments .comments-pagination .pagination-previous a,
.entry-comments .comments-pagination .pagination-next a {
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
    color: #1a1a1a !important;
    min-height: initial;
    display: inline-flex;
    box-shadow: none;
    font-size: 20px;
  }
}
@media (min-width: 1024px) and (hover: hover) {
  .entry-comments .comments-pagination .pagination-previous a:hover,
.entry-comments .comments-pagination .pagination-next a:hover {
    transform: none;
    background-color: transparent;
    color: #1a1a1a !important;
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: currentColor;
  }
}

/* [ Reviews List ] */
.mv-comments-wrap .mv-comments-nav {
  margin: 15px 0;
}

.mv-comments-wrap .mv-comments-nav ul {
  margin: 0;
}

.mv-comments-wrap .mv-comments-nav ul li {
  font-size: 15px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .mv-comments-wrap .mv-comments-nav ul li {
    font-size: 20px;
  }
}
.mv-comments-wrap .mv-comments-nav ul li:not(.mv-active) {
  cursor: pointer;
}

.mv-comments-wrap .mv-comments-card {
  border: none;
  margin: 0;
  padding: 0;
}

.mv-comments-wrap .mv-comments-card-header {
  margin: 30px 0 25px;
  padding: 0;
  background: none;
}

.mv-comments-wrap .mv-modal-close {
  background-color: #1a1a1a;
  color: #fff;
}

.mv-comments-wrap .mv-comments-review {
  position: relative;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 22px 16px 32px;
}

@media (min-width: 1024px) {
  .mv-comments-wrap .mv-comments-review {
    padding: 30px 24px 40px;
  }
}
.mv-comments-wrap .mv-comments-review::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 14px;
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/pattern-small.svg);
  background-size: 200px;
  background-repeat: repeat;
}

@media (min-width: 1024px) {
  .mv-comments-wrap .mv-comments-review::after {
    height: 20px;
  }
}
.mv-comments-wrap .mv-comments-review .mv-comments-review-author {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 20px;
}

.mv-comments-wrap .mv-comments-review .mv-comments-review-date {
  font-size: 16px;
  font-weight: 600;
  margin: 6px 0 0;
}

.mv-comments-wrap .mv-comments-review .mv-comments-review-stars {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.mv-comments-wrap .mv-comments-review .mv-reviews-stars {
  margin: 0;
}

.mv-comments-wrap .mv-comments-review .mv-comments-review-stars h3 {
  order: -1;
  font-size: 20px;
  margin-bottom: 5px;
}

.mv-comments-wrap .mv-modal .mv-modal-inner {
  border-radius: 5px;
  border: 5px solid #1a1a1a;
  padding: 20px 20px 8px;
}

@media (min-width: 1024px) {
  .mv-comments-wrap .mv-modal .mv-modal-inner {
    padding: 32px 32px 16px;
  }
}
.mv-review-form .mv-star-ratings .star-hover:focus,
.mv-review-form .mv-star-ratings .star-hover:focus ~ .star-hover,
.mv-review-form .mv-star-ratings .star-hover:hover,
.mv-review-form .mv-star-ratings .star-hover:hover ~ .star-hover {
  fill: #1a1a1a;
}

.mv-comments-wrap .mv-review-form label {
  display: none;
}

.mv-comments-wrap .mv-review-form > * {
  margin-bottom: 12px !important;
}

.mv-comments-wrap .mv-review-form input,
.mv-comments-wrap .mv-review-form textarea {
  display: block;
  width: 100%;
  padding: 9px 12px;
  font-size: 20px;
  font-style: italic;
  border: 3px solid #1a1a1a;
  border-radius: 4px;
}

.mv-comments-wrap .mv-review-form button {
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
  --color-primary: #1a1a1a;
  --color-secondary: $color__white;
  padding: 12px;
}
@media (min-width: 414px) {
  .mv-comments-wrap .mv-review-form button {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .mv-comments-wrap .mv-review-form button:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}

.mv-comments-wrap .mv-review-form button[disabled] {
  opacity: 1;
}

.mv-comments-wrap .mv-review-form footer {
  margin-top: 12px;
}

/* ---------- [ Breadcrumbs ] ---------- */
.breadcrumb {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  text-transform: capitalize;
  line-height: 1;
}

.breadcrumb a {
  text-decoration: none;
}

@media (hover: hover) {
  .breadcrumb a:hover {
    text-decoration: underline;
  }
}
.breadcrumb-separator {
  margin: 0 4px;
  font-size: 12px;
}

.breadcrumb strong {
  font-weight: inherit;
}

/* ---------- [ Titles ] ---------- */
.entry-title,
.section-title {
  line-height: 1.1;
  margin: 0;
  text-transform: capitalize;
}

.entry-title {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 413px) {
  .entry-title {
    font-size: 18px;
  }
}

.section-pretitle,
.entry-pretitle {
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.section-pretitle img,
.section-title img {
  height: 26px;
  display: inline-block;
}

/* ---------- [ Entries ] ---------- */
* + .entries-container {
  margin-top: 12px;
}

.entry {
  display: flex;
  flex-direction: column;
}

body {
  --spacing-document-top: 0;
}

body.admin-bar {
  --spacing-document-top: 46;
}

@media (min-width: 783px) {
  body.admin-bar {
    --spacing-document-top: 32;
  }
}
/* ---------- [ Before Header ] ---------- */
.before-header {
  font-size: 16px;
  background-color: #0ca2a7;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  padding: 5px 0;
}
@media (min-width: 426px) {
  .before-header {
    font-size: 18px;
    padding: 0 0;
  }
}

@media (min-width: 1024px) {
  .before-header {
    background-color: transparent;
    font-size: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media (min-width: 1024px) {
  .before-header > .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .before-header .menu {
    --menu-level-1-txt-color: #1a1a1a;
    --menu-level-1-txt-color_hover: #1a1a1a;
    --menu-level-1-bg-color: transparent;
    --menu-level-1-bg-color_hover: transparent;
    justify-content: flex-end;
    font-weight: 600;
    font-family: "Jost", sans-serif;
  }

  .before-header .header-desktop-left {
    align-items: center;
  }

  .before-header .header-tagline {
    font-size: 18px;
    margin-left: 18px;
  }

  .before-header .header-social {
    padding-left: 12px;
    font-size: 20px;
  }

  .before-header .header-social .entries-container {
    margin-left: -8px;
    margin-right: -8px;
  }

  .before-header .header-social .link-item {
    margin-left: 8px;
    margin-right: 8px;
    width: auto;
  }
}
.before-header .more-link {
  font-size: inherit;
  --color-primary: transparent;
  --color-secondary: #fff;
  padding: 0;
  min-height: 32px;
  display: flex;
  border: 0;
}
@media (hover: hover) {
  .before-header .more-link:hover {
    transform: none;
    background-color: transparent;
    color: #fff !important;
    text-decoration: none !important;
  }
}

.before-header .more-link em {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
}

.before-header .menu-cta .more-link {
  background-color: #fdd958;
  color: #fff;
  font-family: "Jost", sans-serif;
  padding: 10px 16px;
  margin-left: 8px;
  border-radius: 0;
}
.before-header .menu-cta .more-link:hover {
  background-color: #fdd958;
  color: #fff;
}

.before-header .menu-cta .more-link .icon-font {
  color: #fff;
}

@media (hover: hover) {
  .before-header .header-desktop-right .menu > .menu-item > a:hover {
    text-decoration: underline;
  }
}
/* ---------- [ Nav: Header ] ---------- */
@media (min-width: 1024px) {
  .nav-header .menu > .menu-item > a {
    padding: 8px 12px;
    position: relative;
  }

  .nav-header .menu > .menu-item > .sub-menu {
    top: 50px;
    left: 0;
    margin-left: 0;
  }

  .nav-header .sub-menu .menu-item {
    border-top: 2px solid #c69a9a;
  }

  .nav-header .sub-menu .menu-item:first-of-type {
    border-top: 0;
  }

  .nav-header .sub-menu a {
    text-align: left;
  }
}
/* ---------- [ Header ] ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e2e2e2;
  position: sticky;
  top: 0;
  top: calc(var(--spacing-document-top, 0) * 1px);
  z-index: 999;
}

@media (min-width: 1024px) {
  .site-header {
    position: relative;
    top: initial;
    color: #1a1a1a;
    font-size: 20px;
    min-height: 86px;
    display: flex;
    align-items: center;
    border-top: 14px solid;
    border-image-source: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/pattern-diagonal.svg);
    border-image-repeat: repeat;
    border-image-slice: 14 8;
    border-image-outset: 8px 0;
    border-bottom: 0;
  }
}
.site-header > .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  /* used for inheritence */
  min-height: 55px;
}
@media (min-width: 1024px) {
  .site-header > .wrap {
    justify-content: flex-end;
    position: relative;
    padding-bottom: 5px;
  }
}

/* ---------- [ Toggles ] ---------- */
.generic-toggle {
  padding: 0;
  background: transparent;
  width: 48px;
  /* keep max width/height for tap UX */
  height: 48px;
  min-width: 36px;
  flex: 0 1 auto;
  font-size: 28px;
  color: inherit;
}

@media (min-width: 1024px) {
  .generic-toggle {
    display: none;
  }
}
.search-toggle {
  font-size: 22px;
}

@media (min-width: 1024px) {
  .search-toggle {
    display: none;
  }
}
@media (hover: hover) {
  .site-header .search-toggle:hover {
    transform: scale(1.05);
  }
}
.search-visible .site-header .search-toggle .icon-search::before {
  content: "";
}

@media (min-width: 1024px) {
  .site-header .search-toggle .icon-search::before {
    content: "";
  }
}
.icon-container {
  position: relative;
  display: inline-block;
}

.generic-toggle.activated .icon-font::before {
  content: "";
}

/* [ Search ] */
#header-search {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  width: 100vw;
  background: #2e2e2e;
  padding: 12px;
  z-index: 11;
  display: none;
}

.search-visible #header-search {
  display: block;
}

@media (min-width: 1024px) {
  #header-search {
    display: block;
    position: static;
    width: 164px;
    transform: none;
    background: transparent;
    padding: 0;
  }
}
#header-search .search-form {
  border-radius: 40px;
  border: none;
}
@media (min-width: 1024px) {
  #header-search .search-form {
    height: 44px;
    border: 2px solid;
  }
}

@media (min-width: 1024px) {
  #header-search input[type=search] {
    font-size: 16px;
    font-weight: 600;
  }
}
@media (min-width: 1200px) {
  #header-search input[type=search] {
    font-size: 18px;
  }
}

/* [ Logo ] */
.title-area {
  flex: 1 0 auto;
  margin: 0 8px;
}

@media (min-width: 1024px) {
  .title-area {
    margin: 0 auto 0 0;
  }
}
.title-area .site-title a {
  display: block;
  width: 152px;
  height: 24px;
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  text-indent: -9999px;
  transition: all 400ms;
}
@media (min-width: 414px) {
  .title-area .site-title a {
    width: 192px;
  }
}
@media (min-width: 1024px) {
  .title-area .site-title a {
    background-position: left;
    width: 220px;
    height: 32px;
    margin: 0 0 0 10px;
    position: relative;
    z-index: 9;
    background-position: center;
  }
}
@media (min-width: 1200px) {
  .title-area .site-title a {
    width: 268px;
  }
}
@media (hover: hover) {
  .title-area .site-title a:hover {
    transform: scale(0.95);
  }
}

/* [ Social Icons ] */
.mobile-header-social a {
  height: 48px;
  width: 48px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

@media (hover: hover) {
  .social-icons a:hover {
    transform: scale(1.15);
  }
}
/* [ Mobile Header CTA ] */
.cta-header-sticky {
  display: none;
}
@media (min-width: 375px) {
  .cta-header-sticky {
    display: block;
  }
}
@media (min-width: 1024px) {
  .cta-header-sticky {
    position: absolute;
    top: 64px;
    right: 0;
    height: 55px;
  }
  .cta-header-sticky * {
    height: 100%;
  }
}

.cta-header-sticky .more-link {
  background-color: transparent;
  font-size: 12px;
  border-width: 2px;
  min-height: 32px;
  padding: 6px;
  display: flex;
}
@media (min-width: 1024px) {
  .cta-header-sticky .more-link {
    font-size: 16px;
    padding: 0;
    border: 0;
    min-height: initial;
    max-width: 132px;
    text-align: left;
    padding-right: 0;
    align-items: center;
    position: relative;
    border-top: 3px solid transparent;
    border-radius: 0;
  }
  .cta-header-sticky .more-link::before {
    content: "";
    font-family: "custom";
    color: #fdd958;
    margin-right: 4px;
    font-size: 15px;
  }
}
@media (min-width: 1200px) {
  .cta-header-sticky .more-link {
    font-size: 18px;
  }
}
@media (min-width: 1024px) and (hover: hover) {
  .cta-header-sticky .more-link:hover {
    transform: none;
    background: transparent;
    border-color: #1a1a1a;
  }
}

/* [ Slick Stream Bar ] */
.slick-container {
  min-height: 88px;
  padding: 16px;
  background-color: #fbf5f1;
}

/* Footer Subscribe */
.footer-subscribe {
  background-color: #0ca2a7;
  padding: 25px 0;
  text-align: center;
  margin-top: 22px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .footer-subscribe {
    padding: 50px 0;
    margin-top: 32px;
  }
}
.footer-subscribe > .wrap {
  position: relative;
}
@media (min-width: 1024px) {
  .footer-subscribe > .wrap::before {
    content: "";
    background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/embellishment-email-cta.svg);
    position: absolute;
    left: 0;
    bottom: -75px;
    height: 261px;
    width: 194px;
  }
}

.footer-subscribe .section-content {
  text-align: center;
  position: relative;
}
@media (min-width: 1024px) {
  .footer-subscribe .section-content {
    max-width: 620px;
    margin: 0 auto;
  }
}

.footer-subscribe .section-pretitle,
.footer-subscribe .section-title,
.footer-subscribe .section-description {
  color: #fff;
}

.footer-subscribe .section-pretitle {
  font-size: 22px;
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-subscribe .section-title {
  font-size: 32px;
}
@media (min-width: 1024px) {
  .footer-subscribe .section-title {
    font-size: 38px;
  }
}

/* ---------- [ Site Footer ] ---------- */
.site-footer > .wrap {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .site-footer > .wrap {
    display: block;
  }
}
/* Back to top */
.back-to-top {
  font-family: "Jost", sans-serif;
  font-weight: bold;
  font-size: 20px;
}

@media (min-width: 1024px) {
  .back-to-top {
    font-size: 18px;
    color: #fff;
    margin-left: 0;
    margin-right: 36px;
  }
}
.back-to-top .icon-font {
  margin: 3px 10px 0 0;
}

/* Back To Top And Social Mobile */
.jump-and-social {
  background-color: #1a1a1a;
  padding: 12px 0 8px;
}

.jump-and-social > .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.jump-and-social .back-to-top {
  color: #fff;
  font-size: 20px;
  text-transform: capitalize;
  white-space: nowrap;
  letter-spacing: 0;
  margin: 0 8px 4px;
}

.jump-and-social .back-to-top .icon-font {
  margin-right: 4px;
}

.site-footer .social-icons {
  margin: 0 8px 4px;
}
@media (min-width: 1024px) {
  .site-footer .social-icons {
    margin-top: 16px;
  }
}

.site-footer .social-icons .link-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  font-size: 28px;
}
@media (min-width: 1024px) {
  .site-footer .social-icons .link-item {
    width: 36px;
    height: 36px;
    font-size: 20px;
    background-color: #0ca2a7;
    color: #fff;
  }
  .site-footer .social-icons .link-item:nth-of-type(2) {
    background-color: #fdd958;
    color: #1a1a1a;
  }
  .site-footer .social-icons .link-item:nth-of-type(3) {
    background-color: #cd4260;
  }
}
@media (hover: hover) {
  .site-footer .social-icons .link-item:hover {
    background-color: #1a1a1a;
    color: #fff;
  }
}

/* ---------- [ Footer Content ] ---------- */
.footer-content {
  background-color: #f2fcfc;
}

@media (min-width: 1024px) {
  .footer-content {
    margin-top: 40px;
    background-color: #fff;
  }

  .footer-content > .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .footer-desktop-left {
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .footer-desktop-right .entries-container {
    display: grid;
    grid-gap: 10px 15px;
    margin: 0;
  }

  .footer-desktop-right .entries-container .entry {
    margin: 0;
  }

  .footer-desktop-right .entries-container .entry-title {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    line-height: 26px;
  }
}
/* ---------- [ Footer Logo ] ---------- */
.footer-logo {
  display: block;
  width: 158px;
  height: 54px;
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/logo-footer.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

/* ---------- [ Nav: Footer ] ---------- */
.nav-footer {
  width: 100%;
}

.nav-footer .menu {
  --menu-level-1-txt-color_hover: #1a1a1a;
  --menu-level-1-bg-color_hover: transparent;
  --menu-level-1-border-color: #1a1a1a;
  --menu-level-2-txt-color_hover: #1a1a1a;
  --menu-level-2-bg-color_hover: transparent;
  --menu-level-2-txt-color: #fff;
  --menu-level-2-bg-color: #1a1a1a;
  --menu-level-2-border-color: #e2e2e2;
  gap: 12px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .nav-footer .menu {
    --menu-level-2-txt-color: #1a1a1a;
    --menu-level-2-bg-color: #fff;
    align-items: stretch;
    gap: 0;
  }
}

.nav-footer .menu > .menu-item {
  border: 0;
}
@media (min-width: 1024px) {
  .nav-footer .menu > .menu-item {
    flex: 1 1 auto;
    border-left: 1px solid #e2e2e2 !important;
    padding: 0 28px;
  }
  .nav-footer .menu > .menu-item:last-of-type {
    padding-right: 0;
    align-items: center;
    display: flex;
  }
}
@media (min-width: 1200px) {
  .nav-footer .menu > .menu-item {
    padding: 0 40px;
  }
}

.nav-footer .menu > .menu-item > button {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-weight: 700;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 1024px) {
  .nav-footer .menu > .menu-item > button {
    padding: 0;
    pointer-events: none;
  }
}

.nav-footer .menu > .menu-item > button .icon-font {
  margin-left: 0;
  margin-right: 13px;
}
@media (min-width: 1024px) {
  .nav-footer .menu > .menu-item > button .icon-font {
    display: none;
  }
}

.nav-footer .menu > .menu-item > a {
  border-radius: 5px;
  border: 3px solid !important;
  padding: 8px 16px;
  font-weight: 700;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (min-width: 1024px) {
  .nav-footer .menu > .menu-item > a {
    height: 144px;
    width: 144px;
    box-shadow: none;
    border-radius: 50%;
    border: 4px double !important;
    padding: 8px;
    font-size: 18px;
  }
}
@media (hover: hover) {
  .nav-footer .menu > .menu-item > a:hover {
    transform: scale(0.95);
  }
}

.nav-footer .menu > .menu-item > a > span {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .nav-footer .menu > .menu-item > a > span {
    flex-direction: column;
    text-align: center;
  }
}

.nav-footer .menu > .menu-item > a > span em {
  margin: 0 8px;
  font-style: normal;
}
@media (min-width: 1024px) {
  .nav-footer .menu > .menu-item > a > span em {
    margin: 2px 0 0;
    font-size: 22px;
  }
}

.nav-footer .menu > .menu-item > a > span .icon-font {
  margin: 0 0 0 auto;
}
@media (min-width: 1024px) {
  .nav-footer .menu > .menu-item > a > span .icon-font {
    margin: 8px 0 0;
  }
}

.nav-footer .menu .sub-menu .menu-item a,
.nav-footer .menu .sub-menu .menu-item button {
  background-color: #fff;
  color: #1a1a1a;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .nav-footer .menu .sub-menu .menu-item a,
.nav-footer .menu .sub-menu .menu-item button {
    font-weight: 400;
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .nav-footer .menu .sub-menu {
    display: block !important;
    position: static;
    opacity: 1 !important;
    transform: none !important;
    width: 100%;
  }

  .nav-footer .menu .sub-menu a {
    padding: 0 !important;
    margin-top: 8px;
  }
}
@media (min-width: 1024px) and (hover: hover) {
  .nav-footer .menu .sub-menu a:hover {
    text-decoration: underline;
  }
}
/* Legal Links */
.legal-links {
  margin-top: 16px;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .legal-links {
    margin-top: 0;
    margin-bottom: 0;
    flex: 1;
  }

  .legal-links .entries-container {
    margin-top: 0;
  }

  .legal-links .entry {
    width: auto !important;
  }
}
/* Footer bottom */
.footer-bottom {
  background-color: #f2fcfc;
}

@media (min-width: 1024px) {
  .footer-bottom {
    background-color: #1a1a1a;
    padding: 16px 0;
  }

  .footer-bottom > .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.footer-disclosure {
  font-size: 12px;
  line-height: 16px;
  font-style: italic;
  color: #707070;
  margin: 16px 0;
}
@media (min-width: 1024px) {
  .footer-disclosure {
    margin-top: 40px;
  }
}

.footer-bottom-left {
  background: none;
}
@media (min-width: 1024px) {
  .footer-bottom-left {
    display: flex;
    align-items: center;
    flex: 1;
  }
}

.footer-bottom-left .entry-content,
.footer-bottom-left .entry-title,
.footer-bottom-left .entry-title a {
  height: 100%;
}
@media (min-width: 1024px) {
  .footer-bottom-left .entry-content,
.footer-bottom-left .entry-title,
.footer-bottom-left .entry-title a {
    height: auto;
  }
}

.footer-bottom-left .entry a {
  background-color: #fff;
  color: #1a1a1a;
  font-family: "Jost", sans-serif;
  border: 3px solid #1a1a1a;
  font-weight: 700;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (min-width: 1024px) {
  .footer-bottom-left .entry a {
    background-color: transparent;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    display: inline-block;
    width: auto;
    padding: 8px 0;
    text-align: center;
    color: #fff;
  }
}

.footer-credits {
  background-color: #fdd958;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(100% + 20px);
  margin: 12px -10px 0;
  padding: 14px 10px;
  order: 2;
  color: #1a1a1a;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .footer-credits {
    margin: 0;
    padding: 0;
    width: auto;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-color: transparent;
  }
}

.footer-credits .copyright {
  display: block;
  margin-right: 10px;
}

.site-credits-container {
  padding: 0;
}

@media (min-width: 1024px) {
  .site-credits-container {
    margin: 0;
  }
}
/* Footer Brands */
.block-brands {
  text-align: center;
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .block-brands > .wrap {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .block-brands .section-content {
    flex: 1 0 auto;
    margin-right: 24px;
    display: flex;
    align-items: center;
  }
}
.block-brands .entries-container {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 30px;
  margin: 0;
}

@media (min-width: 1024px) {
  .block-brands .entries-container {
    margin-top: 0;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px 40px;
  }
}
.block-brands .entry {
  justify-content: center;
  align-items: center;
  margin: 0;
  width: auto;
}

/* Footer Brands */
.footer-brands {
  margin-top: 32px;
}

.sidebar {
  margin: 0 auto;
}

.sidebar .widget {
  margin: 20px 0 0;
}

@media (min-width: 1024px) {
  .sidebar .widget {
    margin: 0;
  }

  .sidebar .widget + .widget {
    margin-top: 32px;
  }
}
/* ---------- [ Widget: Posts ] ---------- */
.posts-widget .entries-container {
  margin-top: 8px;
}

.posts-widget .widget-title {
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}

.posts-widget .entry {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.posts-widget .entry-content {
  margin-top: 6px;
  flex: 1;
}

.posts-widget .entry-title {
  font-size: 20px;
  line-height: 24px;
  text-transform: capitalize;
  text-align: center;
}

@media (min-width: 1024px) {
  .posts-widget .entry-title {
    font-size: 18px;
    line-height: 22px;
  }
}
/* ---------- [ Widget: Bio ] ---------- */
.sidebar .bio-widget {
  position: relative;
  padding: 25px 15px 15px 15px;
  margin-bottom: 40px;
}

.sidebar .bio-widget::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 96px;
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/pattern-widget.svg);
  background-size: cover;
}

.sidebar .bio-widget .widget-wrap {
  background-color: #fff;
}

.sidebar .widget-bio {
  margin-top: 56px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.sidebar .widget-bio .section-image {
  display: flex;
  justify-content: center;
}

.sidebar .widget-bio .section-image img {
  height: 136px;
  width: 136px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: -25px;
}

.sidebar .widget-bio .section-content {
  text-align: center;
  padding: 10px 14px 30px 14px;
}

.sidebar .widget-bio .section-pretitle {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
}

.sidebar .widget-bio .section-title {
  font-size: 32px;
  margin-bottom: 4px;
}

.sidebar .widget-bio .section-description {
  margin-top: 0;
  line-height: 1.33;
}

@media (min-width: 1024px) {
  .sidebar .widget-bio .section-description {
    font-size: 18px;
  }
}
.sidebar .widget-bio .more-link-container {
  text-align: center;
}

.sidebar .widget-bio .more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: lowercase;
}

/* ---------- [ Widget: Taxonomy Indicators ] ---------- */
.widget.ti_key {
  border: 3px solid #1a1a1a;
  border-radius: 5px;
  padding: 0 20px 20px 20px;
}

.widget.ti_key .widget-wrap {
  margin-top: -20px;
  text-align: center;
}

.widget.ti_key .widget-title,
.widget.ti_key .section-description {
  text-align: center;
  font-family: "Jost", sans-serif;
}

.widget.ti_key .widget-title {
  display: inline-block;
  background-color: #fff;
  font-size: 28px;
  font-weight: 800;
  padding: 0 5px;
  margin: 0 0 3px;
}

.widget.ti_key .section-description {
  font-size: 16px;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* ---------- [ Widget: Subscribe ] ---------- */
.subscribe-widget {
  background-color: #fdd958;
  padding: 35px 25px 18px;
  text-align: center;
  color: #1a1a1a;
  border-radius: 5px;
}

.subscribe-widget .section-image {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.subscribe-widget .section-image img {
  max-width: 64px;
  height: auto;
}

.subscribe-widget .section-pretitle {
  font-size: 20px;
  font-family: "Jost", sans-serif;
  font-weight: 800;
  font-style: normal;
  margin-bottom: 12px;
  text-transform: capitalize;
  letter-spacing: 0;
}

.subscribe-widget .section-title {
  font-size: 30px;
  line-height: 32px;
}

.subscribe-widget input:not([type=button]) {
  border: 3px solid #1a1a1a !important;
  background: #fff !important;
  font-weight: bold !important;
  font-style: italic;
  text-align: center;
  height: 48px !important;
  min-height: 48px !important;
  line-height: 48px;
  width: 100%;
  padding: 0 15px;
  text-transform: lowercase;
}

.subscribe-widget input[type=button] {
  width: 100% !important;
  display: block !important;
  height: 48px;
  line-height: 48px;
  padding: 0 15px;
  font-family: "Jost", sans-serif;
  font-weight: 800;
  font-size: 20px;
}

@media (hover: hover) {
  .subscribe-widget input[type=button]:hover {
    transform: scale(0.95);
  }
}
/* ---------- [ Widget: CTA ] ---------- */
.cta-widget {
  padding: 25px 30px 0;
  text-align: center;
  background-color: #e4f5ea;
}

.cta-widget .wrap {
  display: flex;
  flex-direction: column;
}

.cta-widget .section-image {
  order: 2;
  margin: 0 -30px;
}

.cta-widget .section-image img {
  max-width: 100%;
  width: 100%;
}

.cta-widget .section-content {
  position: relative;
  padding: 40px 0 5px;
}

.cta-widget .section-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/embellishment-asterisk.svg);
  height: 32px;
  width: 32px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.cta-widget .section-pretitle {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: capitalize;
}

.cta-widget .section-title {
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 5px;
}

.cta-widget .more-link {
  display: inline-flex;
  --color-primary: #1a1a1a;
  --color-secondary: #fff;
  border-width: 3px;
}

@media (hover: hover) {
  .cta-widget .more-link:hover {
    display: inline-flex;
    background-color: #fff;
  }
}
.after-entry .cta-widget {
  position: relative;
  padding: 38px;
  overflow: hidden;
  margin: 30px -10px;
  background-color: #0ca2a7;
}

@media (min-width: 768px) {
  .after-entry .cta-widget {
    border-radius: 5px;
    margin: 30px 0;
  }
}
.after-entry .cta-widget::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/after-entry-cta-bg-icon.svg);
  background-repeat: no-repeat;
  height: 531px;
  width: 725px;
  background-size: 100% 100%;
}

@media (min-width: 768px) {
  .after-entry .cta-widget {
    padding: 40px 34px;
  }

  .after-entry .cta-widget .wrap {
    display: grid;
    grid-template-columns: 215px 1fr;
    grid-gap: 32px;
  }
}
.after-entry .widget-cta {
  position: relative;
  z-index: 2;
}

.after-entry .cta-widget .section-image {
  order: 0;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .after-entry .cta-widget .section-image {
    margin: 0;
  }
}
.after-entry .cta-widget .section-image img {
  max-width: 257px;
  height: auto;
}

@media (min-width: 768px) {
  .after-entry .cta-widget .section-image img {
    max-width: 100%;
  }
}
.after-entry .cta-widget .section-content {
  padding: 18px 0 0 0;
}

@media (min-width: 768px) {
  .after-entry .cta-widget .section-content {
    text-align: left;
    padding-top: 0;
  }
}
.after-entry .cta-widget .section-content::before {
  display: none;
}

.after-entry .cta-widget .section-pretitle {
  text-transform: none;
}

.after-entry .cta-widget .section-title {
  text-transform: none;
  font-size: 32px;
}

@media (hover: hover) {
  .after-entry .cta-widget a.more-link:hover {
    background-color: #fff;
  }
}
/* ---------- [ Widget: Icons ] ---------- */
.icons-widget {
  border-radius: 5px;
  border: 2px solid;
  padding: 20px 16px;
}

.icons-widget .widget-title {
  font-size: 26px;
  text-align: center;
  max-width: 290px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .icons-widget .widget-title {
    font-size: 20px;
  }
}

.icons-widget .widget-icons {
  margin-bottom: 0;
}

.icons-widget .entries-container {
  --column-gap: 8;
}

.icons-widget .widget-icons .link-item {
  flex-direction: row;
  justify-content: flex-start;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  line-height: 1;
}
@media (min-width: 414px) {
  .icons-widget .widget-icons .link-item {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .icons-widget .widget-icons .link-item {
    font-size: 18px;
  }
}
.icons-widget .widget-icons .link-item::after {
  content: none;
}

.icons-widget .block-icons .link-icon {
  display: block;
  margin-right: 12px;
  flex-shrink: 0;
  background-position: center;
}
@media (min-width: 1024px) {
  .icons-widget .block-icons .link-icon {
    width: 38px;
    height: 38px;
  }
}

.icons-widget .block-icons .link-icon.icon-family {
  margin-top: -6px;
}

.icons-widget .block-icons .link-text {
  margin-top: 0;
}
@media (min-width: 1024px) {
  .icons-widget .block-icons .link-text {
    font-size: 16px;
  }
}

.icons-widget .block-icons .widget-surprise-me {
  display: flex;
  background-color: #0ca2a7;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-family: "Jost", sans-serif;
  font-size: 17px;
  font-weight: 700;
  min-height: 64px;
  padding: 12px 20px;
  width: calc(100% + 36px);
  margin: 12px -18px -22px;
  border-radius: 0 0 5px 5px;
}
@media (min-width: 414px) {
  .icons-widget .block-icons .widget-surprise-me {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .icons-widget .block-icons .widget-surprise-me:hover {
    background-color: #1a1a1a;
    text-decoration: none;
  }
}

.icons-widget .block-icons .widget-surprise-me .icon-font {
  margin-right: 12px;
}

.icons-widget .block-icons .widget-surprise-me:not(:hover) .icon-font {
  color: #fdd958;
}

/* ---------- [ Generic Menu ] ---------- */
.menu {
  text-transform: capitalize;
  --menu-padding-x: 12px;
  --menu-level-1-txt-color: #1a1a1a;
  --menu-level-1-txt-color_hover: #1a1a1a;
  --menu-level-1-bg-color: #fff;
  --menu-level-1-bg-color_hover: #fdd958;
  --menu-level-1-border-color: #e2e2e2;
  --menu-level-1-border-width: 2px;
  --menu-level-1-font-family: Jost, sans-serif;
  --menu-level-2-txt-color: #1a1a1a;
  --menu-level-2-txt-color_hover: #fff;
  --menu-level-2-bg-color: #fff;
  --menu-level-2-bg-color_hover: #1a1a1a;
  --menu-level-2-border-color: #fff;
  --menu-level-3-txt-color: #fff;
  --menu-level-3-txt-color_hover: #1a1a1a;
  --menu-level-3-bg-color: #1a1a1a;
  --menu-level-3-bg-color_hover: #fff;
  --menu-level-3-border-color: #1a1a1a;
  --menu-level-4-border-color: #0ca2a7;
  --sub-menu-border-radius: 0;
  word-break: initial;
  line-height: 1;
  clear: both;
  margin: 0;
  display: grid;
  list-style: none;
  font-family: var(--menu-level-1-font-family, inherit);
}

@media (min-width: 1024px) {
  .menu {
    display: flex;
    align-items: center;
  }
}
.menu .menu-item {
  position: relative;
}

@media (min-width: 1024px) {
  .menu .menu-item {
    display: inline-block;
    margin: 0;
  }
}
.menu .menu-item.hidden-on-mobile {
  display: none;
}

@media (min-width: 1024px) {
  .menu .menu-item.hidden-on-mobile {
    display: inline-block;
  }

  .menu .menu-item.visible-on-mobile {
    display: none;
  }
}
.menu .menu-item button,
.menu .menu-item a {
  border-top: 1px solid;
}

@media (min-width: 1024px) {
  .menu .menu-item button,
.menu .menu-item a {
    border-top: none;
  }
}
.menu .menu-item:first-child > button,
.menu .menu-item:first-child > a {
  border-top: none;
}

.menu .menu-item button {
  width: 100%;
  justify-content: space-between;
  font-size: inherit;
  font-family: inherit;
  text-align: inherit;
  font-weight: inherit;
  text-transform: inherit;
  border-radius: 0;
}

@media (min-width: 1024px) {
  .menu .menu-item button {
    width: auto;
  }
}
.menu .menu-item a,
.menu .menu-item button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  text-decoration: none;
  padding: 8px var(--menu-padding-x);
  min-height: 48px;
}

@media (min-width: 1024px) {
  .menu .menu-item a,
.menu .menu-item button {
    min-height: initial;
  }
}
@media (hover: hover) {
  .menu .menu-item a:hover {
    text-decoration: none;
  }

  .menu .menu-item.no-click > a:hover {
    cursor: default;
  }
}
/* [ Sub-menus ] */
.menu .sub-menu {
  width: 100%;
  margin: 0;
  display: none;
  font-size: 20px;
}

@media (min-width: 1024px) {
  .menu .sub-menu {
    position: absolute;
    z-index: 99;
    top: 0;
    left: 100%;
    width: 150px;
    text-align: center;
  }
}
.menu .sub-menu .menu-item {
  display: block;
}

/* Level 1 */
.menu .menu-item a,
.menu .menu-item button {
  border-color: var(--menu-level-1-border-color);
  border-width: var(--menu-level-1-border-width, 1px);
  color: var(--menu-level-1-txt-color);
  background-color: var(--menu-level-1-bg-color);
}

@media (min-width: 1024px) {
  .menu .menu-item a,
.menu .menu-item button {
    width: 100%;
  }
}
@media (hover: hover) {
  .menu .menu-item a:hover,
.menu .menu-item button:hover {
    color: var(--menu-level-1-txt-color_hover);
    background-color: var(--menu-level-1-bg-color_hover);
  }
}
/* Use a loop to make sub-menu styles. */
.menu .sub-menu {
  font-family: var(--menu-level-2-font-family, inherit);
}
.menu .sub-menu .menu-item a, .menu .sub-menu .menu-item button {
  border-color: var(--menu-level-2-border-color, #1a1a1a);
  border-width: var(--menu-level-2-border-width, 1px);
  color: var(--menu-level-2-txt-color);
  background-color: var(--menu-level-2-bg-color, #fff);
  padding-left: calc(2 * var(--menu-padding-x));
}
@media (min-width: 1024px) {
  .menu .sub-menu .menu-item a, .menu .sub-menu .menu-item button {
    padding-left: var(--menu-padding-x);
  }
}
@media (hover: hover) {
  .menu .sub-menu .menu-item a:hover, .menu .sub-menu .menu-item button:hover {
    color: var(--menu-level-2-txt-color_hover);
    background-color: var(--menu-level-2-bg-color_hover, #e2e2e2);
  }
}
.menu .sub-menu .menu-item a .icon-font, .menu .sub-menu .menu-item button .icon-font {
  color: var(--menu-level-2-icon-color);
}
@media (hover: hover) {
  .menu .sub-menu .menu-item a:hover .icon-font, .menu .sub-menu .menu-item button:hover .icon-font {
    color: var(--menu-level-2-icon-color_hover, inherit);
  }
}

.menu .sub-menu .sub-menu {
  font-family: var(--menu-level-3-font-family, inherit);
}
.menu .sub-menu .sub-menu .menu-item a, .menu .sub-menu .sub-menu .menu-item button {
  border-color: var(--menu-level-3-border-color, #1a1a1a);
  border-width: var(--menu-level-3-border-width, 1px);
  color: var(--menu-level-3-txt-color);
  background-color: var(--menu-level-3-bg-color, #fff);
  padding-left: calc(3 * var(--menu-padding-x));
}
@media (min-width: 1024px) {
  .menu .sub-menu .sub-menu .menu-item a, .menu .sub-menu .sub-menu .menu-item button {
    padding-left: var(--menu-padding-x);
  }
}
@media (hover: hover) {
  .menu .sub-menu .sub-menu .menu-item a:hover, .menu .sub-menu .sub-menu .menu-item button:hover {
    color: var(--menu-level-3-txt-color_hover);
    background-color: var(--menu-level-3-bg-color_hover, #e2e2e2);
  }
}
.menu .sub-menu .sub-menu .menu-item a .icon-font, .menu .sub-menu .sub-menu .menu-item button .icon-font {
  color: var(--menu-level-3-icon-color);
}
@media (hover: hover) {
  .menu .sub-menu .sub-menu .menu-item a:hover .icon-font, .menu .sub-menu .sub-menu .menu-item button:hover .icon-font {
    color: var(--menu-level-3-icon-color_hover, inherit);
  }
}

.menu .sub-menu .sub-menu .sub-menu {
  font-family: var(--menu-level-4-font-family, inherit);
}
.menu .sub-menu .sub-menu .sub-menu .menu-item a, .menu .sub-menu .sub-menu .sub-menu .menu-item button {
  border-color: var(--menu-level-4-border-color, #1a1a1a);
  border-width: var(--menu-level-4-border-width, 1px);
  color: var(--menu-level-4-txt-color);
  background-color: var(--menu-level-4-bg-color, #fff);
  padding-left: calc(4 * var(--menu-padding-x));
}
@media (min-width: 1024px) {
  .menu .sub-menu .sub-menu .sub-menu .menu-item a, .menu .sub-menu .sub-menu .sub-menu .menu-item button {
    padding-left: var(--menu-padding-x);
  }
}
@media (hover: hover) {
  .menu .sub-menu .sub-menu .sub-menu .menu-item a:hover, .menu .sub-menu .sub-menu .sub-menu .menu-item button:hover {
    color: var(--menu-level-4-txt-color_hover);
    background-color: var(--menu-level-4-bg-color_hover, #e2e2e2);
  }
}
.menu .sub-menu .sub-menu .sub-menu .menu-item a .icon-font, .menu .sub-menu .sub-menu .sub-menu .menu-item button .icon-font {
  color: var(--menu-level-4-icon-color);
}
@media (hover: hover) {
  .menu .sub-menu .sub-menu .sub-menu .menu-item a:hover .icon-font, .menu .sub-menu .sub-menu .sub-menu .menu-item button:hover .icon-font {
    color: var(--menu-level-4-icon-color_hover, inherit);
  }
}

.menu .sub-menu .sub-menu .sub-menu .sub-menu {
  font-family: var(--menu-level-5-font-family, inherit);
}
.menu .sub-menu .sub-menu .sub-menu .sub-menu .menu-item a, .menu .sub-menu .sub-menu .sub-menu .sub-menu .menu-item button {
  border-color: var(--menu-level-5-border-color, #1a1a1a);
  border-width: var(--menu-level-5-border-width, 1px);
  color: var(--menu-level-5-txt-color);
  background-color: var(--menu-level-5-bg-color, #fff);
  padding-left: calc(5 * var(--menu-padding-x));
}
@media (min-width: 1024px) {
  .menu .sub-menu .sub-menu .sub-menu .sub-menu .menu-item a, .menu .sub-menu .sub-menu .sub-menu .sub-menu .menu-item button {
    padding-left: var(--menu-padding-x);
  }
}
@media (hover: hover) {
  .menu .sub-menu .sub-menu .sub-menu .sub-menu .menu-item a:hover, .menu .sub-menu .sub-menu .sub-menu .sub-menu .menu-item button:hover {
    color: var(--menu-level-5-txt-color_hover);
    background-color: var(--menu-level-5-bg-color_hover, #e2e2e2);
  }
}
.menu .sub-menu .sub-menu .sub-menu .sub-menu .menu-item a .icon-font, .menu .sub-menu .sub-menu .sub-menu .sub-menu .menu-item button .icon-font {
  color: var(--menu-level-5-icon-color);
}
@media (hover: hover) {
  .menu .sub-menu .sub-menu .sub-menu .sub-menu .menu-item a:hover .icon-font, .menu .sub-menu .sub-menu .sub-menu .sub-menu .menu-item button:hover .icon-font {
    color: var(--menu-level-5-icon-color_hover, inherit);
  }
}

/* Desktop styles */
@media (min-width: 1024px) {
  .menu .sub-menu a {
    height: auto;
    word-wrap: break-word;
  }

  .menu > .menu-item > .sub-menu .menu-item:first-child > a,
.menu > .menu-item > .sub-menu .menu-item:first-child > button {
    padding-top: 12px;
  }

  .menu > .menu-item > .sub-menu .menu-item:last-child > a,
.menu > .menu-item > .sub-menu .menu-item:last-child > button {
    padding-bottom: 12px;
    border-bottom-left-radius: var(--sub-menu-border-radius);
    border-bottom-right-radius: var(--sub-menu-border-radius);
  }
}
/* [ First sub-menu ] */
@media (min-width: 1024px) {
  .menu > .menu-item > .sub-menu {
    bottom: 0;
    top: initial;
    transform: translate(-50%, 100%);
    left: 50%;
  }
}
/* [ Sub-menu Icons ] */
.menu .menu-item button .icon-font {
  margin-left: 8px;
  width: 20px;
  text-align: center;
}

.menu .menu-item button.activated .icon-font::before {
  transform: rotate(-90deg);
}

@media (min-width: 1024px) {
  .menu .menu-item .sub-menu button .icon-font::before {
    transform: none;
  }
}
/* ---------- [ Nav Primary ] ---------- */
.nav-primary {
  display: block;
  height: auto;
  max-height: 0;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  transition: all 300ms;
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media (min-width: 1024px) {
  .nav-primary {
    display: block;
    position: static;
    max-height: initial !important;
    width: auto;
    overflow: initial;
    box-shadow: none;
    margin-top: 3px;
    margin-left: 24px;
    margin-right: 24px;
  }
}
.site-container > .nav-primary > .wrap {
  width: 100%;
}

.nav-primary .menu {
  --menu-padding-x: 24px;
  --menu-level-1-txt-color: #fff;
  --menu-level-1-bg-color: #2e2e2e;
  --menu-level-1-border-color: #fff;
  --menu-level-1-border-width: 1px;
  --menu-level-2-txt-color: #fff;
  --menu-level-2-bg-color: #1a1a1a;
  --menu-level-2-border-color: #464646;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 12px;
  background-color: #2e2e2e;
}
@media (min-width: 1024px) {
  .nav-primary .menu {
    --menu-level-1-txt-color: #1a1a1a;
    --menu-level-1-txt-color_hover: #1a1a1a;
    --menu-level-1-bg-color: #fff;
    --menu-level-1-bg-color_hover: #fff;
    --menu-level-1-border-color: transparent;
    --menu-level-2-txt-color: #fff;
    --menu-level-2-txt-color_hover: #1a1a1a;
    --menu-level-2-bg-color: #292929;
    --menu-level-2-bg-color_hover: #fff;
    --menu-level-2-border-color: #292929;
    --menu-level-3-txt-color: #fff;
    --menu-level-3-bg-color: #1a1a1a;
    --menu-level-3-bg-color_hover: #fff;
    --menu-level-3-border-color: #1a1a1a;
    --menu-padding-x: 12px;
    --sub-menu-border-radius: 4px;
    border: 0;
    font-size: 15px;
    gap: 0;
    padding: 0;
    background-color: transparent;
  }
  .nav-primary .menu .nav-primary .sub-menu {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .nav-primary .menu {
    font-size: 18px;
  }
}

.nav-primary .menu > .menu-item > a {
  border: 2px solid var(--menu-level-1-border-color);
  border-radius: 5px;
  text-align: center;
  justify-content: center;
  height: 100%;
}

@media (min-width: 1024px) {
  .nav-primary .menu > .menu-item > a {
    border: 0;
  }

  .nav-primary .menu > .menu-item {
    border-top: 3px solid var(--menu-level-1-border-color);
    margin-right: 16px;
    margin-left: 16px;
    position: relative;
    align-self: stretch;
    flex: 1 0 auto;
  }
  .nav-primary .menu > .menu-item::before {
    content: "";
    height: 24px;
    border-left: 2px solid #e2e2e2;
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (min-width: 1024px) and (hover: hover) {
  .nav-primary .menu > .menu-item.sfHover,
.nav-primary .menu > .menu-item:hover {
    --menu-level-1-border-color: #1a1a1a;
  }
}
@media (min-width: 1024px) {
  .nav-primary .menu > .menu-item > .sub-menu {
    padding-top: 8px;
  }

  .nav-primary .menu > .menu-item > .sub-menu > .menu-item:first-of-type > a,
.nav-primary .menu > .menu-item > .sub-menu > .menu-item:first-of-type > button {
    border-top-left-radius: var(--sub-menu-border-radius);
    border-top-right-radius: var(--sub-menu-border-radius);
  }

  .nav-primary .menu > .menu-item > .sub-menu > .menu-item:first-of-type > a::before,
.nav-primary .menu > .menu-item > .sub-menu > .menu-item:first-of-type > button::before {
    content: "";
    height: 16px;
    width: 16px;
    position: absolute;
    top: -8px;
    left: calc(50% - 8px);
    z-index: -1;
    background-color: var(--menu-level-2-bg-color);
    transform: rotate(45deg);
  }

  .nav-primary .sub-menu .menu-item button,
.nav-primary .sub-menu .menu-item a {
    border: 1px solid transparent;
  }

  .nav-primary .sub-menu .menu-item button:hover,
.nav-primary .sub-menu .menu-item a:hover {
    border-color: var(--menu-level-2-bg-color);
  }

  .nav-primary .menu > .menu-item > * > .icon-font {
    font-size: 16px;
    width: 18px;
  }

  .nav-primary .menu > .menu-item > *:not(.sub-menu) {
    padding: 4px 0;
    width: auto;
  }
}
@media (max-width: 1023px) {
  .nav-primary .menu .mobile-nav-container + .menu-item a {
    background-color: #fff;
    color: #1a1a1a;
  }
}
/* Featured Item */
@media (min-width: 1024px) {
  .nav-primary .menu > .menu-item.featured {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    flex-shrink: 0;
  }
  .nav-primary .menu > .menu-item.featured::after {
    content: "";
    height: 36px;
    width: 36px;
    background: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/avatar-author@2x.jpg) no-repeat left center/contain;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    margin-right: 8px;
  }
}

/* Menu Social */
.nav-primary .menu-social {
  grid-column: 1/-1;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .nav-primary .menu-social {
    order: -1;
    padding-right: 16px;
    margin-bottom: -3px;
  }
}

.nav-primary .menu-social .entries-container {
  --column-gap: 6;
}

@media (min-width: 1024px) {
  .nav-primary .menu-social .entries-container {
    --column-gap: 4;
  }
}
.nav-primary .menu-social .link-item {
  width: auto;
}
@media (hover: hover) {
  .nav-primary .menu-social .link-item:hover {
    text-decoration: none;
  }
}

.nav-primary .menu-social .link-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #daf5f7;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .nav-primary .menu-social .link-icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  .nav-primary .menu-social .link-icon.icon-facebook {
    background-color: #0ca2a7;
    color: #fff;
  }
  .nav-primary .menu-social .link-icon.icon-instagram {
    background-color: #fdd958;
  }
  .nav-primary .menu-social .link-icon.icon-instagram::before {
    position: relative;
    left: 0.03em;
  }
  .nav-primary .menu-social .link-icon.icon-pinterest {
    background-color: #cd4260;
    color: #fff;
  }
}

/* Menu CTA */
.nav-primary .menu-cta {
  grid-column: 1/-1;
  margin: 0 -12px;
  width: calc(100% + 24px);
}

.nav-primary .menu-cta .more-link {
  border-radius: 0;
  display: flex;
}

/* Mobile Nav Container */
.menu .mobile-nav-container {
  grid-column: 1/-1;
  width: calc(100% + 24px);
  margin-left: -12px;
  margin-right: -12px;
  --menu-level-1-border-color: #464646;
}

@media (min-width: 1024px) {
  .menu .mobile-nav-container {
    display: none;
  }
}
.mobile-nav-container a.more-link {
  justify-content: flex-start;
  border: none;
  border-radius: 0;
  background-color: #fdd958;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: normal;
  padding-bottom: 10px;
}

@media (hover: hover) {
  .mobile-nav-container a.more-link:hover {
    transform: none;
    text-decoration: underline;
  }
}
.mobile-nav-container a.more-link .icon-asterisk {
  margin: 0 8px 0 0;
}

.mobile-nav-container a.more-link em {
  font-weight: 400;
  font-style: italic;
  font-family: "Jost", sans-serif;
  margin-left: 8px;
}

.nav-primary .menu .icon-asterisk {
  display: none;
}

/* ---------- [ Header Links ] ---------- */
.header-links {
  display: none;
}

@media (min-width: 1024px) {
  .header-links {
    display: block;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
    padding: 20px 0;
  }

  .home .header-links {
    border-bottom: none;
  }

  .header-links .wrap {
    display: flex;
  }

  .header-links .section-title {
    letter-spacing: var(--letter-spacing, 0.1em);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 16px;
    margin-right: 8px;
  }

  .header-links .section-title em {
    font-style: normal;
    color: #fdd958;
  }

  .header-links .entries-container {
    flex: 1;
    margin-bottom: -8px;
  }

  .header-links .entries-container .entry {
    width: auto;
    margin-bottom: 8px;
    position: relative;
    flex: 1 1 auto;
    text-align: center;
  }

  .header-links .entries-container .entry:not(:last-of-type):after {
    content: "";
    border-right: 1px solid #e2e2e2;
    display: block;
    height: 36px;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    position: absolute;
  }

  .header-links .entry-title {
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    text-transform: lowercase;
  }
}
@media (hover: hover) {
  .header-links .entry-title-link:hover {
    text-decoration: underline;
    text-decoration-color: #c4c4c4;
    text-decoration-thickness: 2px;
  }
}
.lity {
  background: rgba(26, 26, 26, 0.74);
}

.lity-content {
  padding: 28px 20px 20px;
  background-color: #fff;
  position: relative;
  max-width: 366px;
  width: calc(100% - 20px);
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 5px;
}

@media (min-width: 1024px) {
  .lity-content {
    max-width: 700px;
    padding: 32px 36px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
}
.lity-content .wrap {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .lity-content .wrap {
    display: grid;
    grid-template-columns: min-content 1fr;
    gap: 24px;
    align-items: center;
  }
}
.lity-wrap::before {
  margin: 0;
}

.lity-container .lity-close,
.lity-container .lity-close:hover {
  background-color: #fdd958;
  color: #1a1a1a !important;
  color: inherit;
  text-shadow: none;
  position: absolute;
  height: 44px;
  width: 44px;
  top: -16px;
  right: -10px;
  border-radius: 100%;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

@media (hover: hover) {
  .lity-close:hover {
    transform: scale(1.05);
  }
}
.lity-content .section-image {
  width: 110px;
  margin-right: 16px;
  margin-bottom: 12px;
}

@media (min-width: 1024px) {
  .lity-content .section-image {
    width: 233px;
    margin: 0;
  }
}
.lity-content .section-image img {
  height: 100%;
  object-fit: cover;
}

.lity-content .section-content {
  display: contents;
}

@media (min-width: 1024px) {
  .lity-content .section-content {
    display: block;
  }
}
.lity-content h2 {
  font-size: 32px;
  text-transform: capitalize;
  line-height: 1.1;
  flex: 1 0;
  margin: 0;
}

@media (min-width: 1024px) {
  .lity-content h2 {
    text-align: center;
    margin: 0;
  }
}
.lity-content p {
  margin: 0;
}

.lity-content .nf-form-cont {
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .lity-content .nf-form-cont {
    margin-top: 0;
  }
}
.lity-content .wpforms-field-container {
  font-weight: 600;
  margin-top: 8px;
}

.lity-content .wpforms-field-text input,
.lity-content .wpforms-field-email input {
  border-radius: 4px !important;
  border: 3px solid !important;
  font-size: 20px;
  font-family: "Jost", sans-serif;
  max-width: 100% !important;
}

.lity-content .wpforms-submit-container .wpforms-submit {
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
  --color-primary: #0ca2a7;
  --color-secondary: #fff;
  width: 100%;
}
@media (min-width: 414px) {
  .lity-content .wpforms-submit-container .wpforms-submit {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .lity-content .wpforms-submit-container .wpforms-submit:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}

.lity-content .wpforms-container .wpforms-field-gdpr-checkbox input,
.lity-content .wpforms-container .wpforms-field-gdpr-checkbox input {
  height: 20px !important;
  width: 20px !important;
  background: transparent;
  border: 2px solid #1a1a1a !important;
  border-radius: 2px;
}
.lity-content .wpforms-container .wpforms-field-gdpr-checkbox input::after,
.lity-content .wpforms-container .wpforms-field-gdpr-checkbox input::after {
  color: #1a1a1a;
  border-right: 2px solid !important;
  border-bottom: 2px solid !important;
  left: 0.24rem;
}

.lity-content .wpforms-container .wpforms-field-gdpr-checkbox .wpforms-field-label-inline {
  font-size: 14px;
  font-family: "Jost", sans-serif;
}

.lity-content .dpsp-shortcode-wrapper {
  display: flex;
}

.lity-content .dpsp-networks-btns-wrapper {
  display: flex;
}

.lity-content .dpsp-networks-btns-wrapper li + li {
  margin-left: 12px;
}

.lity-content .dpsp-networks-btns-wrapper .dpsp-network-btn {
  height: 48px;
  width: 48px;
  background-color: #fdd958;
  color: #fff;
  border-radius: 50%;
  border: 2px solid #fdd958;
}

@media (hover: hover) {
  .lity-content .dpsp-networks-btns-wrapper .dpsp-network-btn:hover {
    background-color: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
  }
}
.single .content-sidebar-wrap {
  margin-top: 12px;
}
@media (min-width: 1024px) {
  .single .content-sidebar-wrap {
    margin-top: 28px;
  }
}

.single h1.entry-title {
  font-size: 28px;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .single h1.entry-title {
    font-size: 32px;
  }
}
.single .block-icon-links {
  margin-top: 0;
}

.entry-header .post-info {
  font-size: 12px;
  line-height: 1;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media (min-width: 375px) {
  .entry-header .post-info {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .entry-header .post-info {
    margin-top: 12px;
    justify-content: space-between;
  }

  .entry-header .post-info .info-wrap {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
  }
}
.entry-header .post-info .info-organization {
  font-family: "Jost", sans-serif;
  margin-top: 16px;
  flex-basis: 100%;
  text-transform: capitalize;
}

.entry-header .post-info .info-organization .categories-separator {
  margin-left: 8px;
  margin-right: 4px;
}

.entry-header .wprm-customized-rating {
  display: flex;
  align-items: center;
}

.entry-header .wprm-customized-rating .icon-font {
  background-color: #fdd958;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  margin-top: -4px;
  font-size: 12px;
}

@media (min-width: 768px) {
  .entry-header .wprm-customized-rating .icon-font {
    margin-top: -2px;
  }
}
.entry-header .info-separator {
  margin: 0 6px;
}

.entry-header .info-buttons {
  display: flex;
  justify-content: flex-start;
  background-color: #f2fcfc;
  color: #fff;
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-right: -10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: 16px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .entry-header .info-buttons {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1024px) {
  .entry-header .info-buttons {
    width: initial;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 1024px) {
  .entry-header .info-buttons {
    background-color: transparent;
    color: #1a1a1a;
    padding: 0;
    flex: 1;
    justify-content: flex-end;
    margin: 0 0 0 auto;
  }
}
.entry-header .info-buttons .dpsp-shortcode-wrapper,
.entry-header .info-buttons .dpsp-networks-btns-wrapper {
  display: contents !important;
}

.entry-header .info-buttons a,
.entry-header .info-buttons button {
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
  font-size: 22px;
  padding: 8px;
  width: 48px;
  border-width: 2px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (min-width: 414px) {
  .entry-header .info-buttons a,
.entry-header .info-buttons button {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .entry-header .info-buttons a:hover,
.entry-header .info-buttons button:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}
@media (min-width: 1024px) {
  .entry-header .info-buttons a,
.entry-header .info-buttons button {
    --color-secondary-hover: #fff;
    border-color: var(--color-secondary);
    background-color: transparent;
    box-shadow: none;
  }
}
@media (min-width: 1024px) and (hover: hover) {
  .entry-header .info-buttons a:hover,
.entry-header .info-buttons button:hover {
    background-color: var(--color-secondary);
  }
}

@media (max-width: 1023px) {
  .entry-header .info-buttons .dpsp-facebook {
    --color-primary: #9be3e5;
  }

  .entry-header .info-buttons .dpsp-pinterest {
    --color-secondary: #fff;
    --color-primary: #cd4260;
  }
}
.entry-header .info-buttons svg {
  color: inherit;
  height: 22px;
}

.entry-header .info-buttons .dpsp-network-list-item,
.entry-header .info-buttons .entry-comments-link {
  margin-left: 12px;
  max-width: max-content;
}

.entry-header .info-buttons .wprm-recipe-link {
  --color-secondary-hover: #fff;
  border-color: var(--color-secondary);
  background-color: transparent;
  font-size: 14px;
  flex: 1 0 auto;
  margin: 0 auto 0 0;
  max-width: max-content;
  box-shadow: none;
}
@media (hover: hover) {
  .entry-header .info-buttons .wprm-recipe-link:hover {
    background-color: var(--color-secondary);
  }
}
@media (min-width: 414px) {
  .entry-header .info-buttons .wprm-recipe-link {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .entry-header .info-buttons .wprm-recipe-link {
    margin: 0;
  }
}

.entry-header .wprm-recipe-link .icon-font {
  margin-right: 8px;
}

.entry-header .wprm-block-text-normal {
  font-weight: inherit;
  color: inherit !important;
}

.entry-header .entry-comments-link {
  display: flex;
}

.entry-header .info-details {
  margin-top: 14px;
  width: 100%;
}
@media (min-width: 1024px) {
  .entry-header .info-details {
    width: initial;
    margin-top: 0;
  }
}

.entry-header .info-details::before {
  content: "";
  height: 50px;
  width: 50px;
  background: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/avatar-author@2x.jpg) no-repeat left center/contain;
  float: left;
  border-radius: 50%;
  margin: -2px 12px 0 0;
}

.entry-header .entry-author {
  display: block;
  margin-top: 3px;
  text-transform: capitalize;
}
@media (min-width: 1024px) {
  .entry-header .entry-author {
    display: inline-block;
  }
}

.entry-header .entry-date {
  margin-right: 16px;
  margin-top: 8px;
  display: inline-block;
}

.entry-header .info-legal {
  font-style: italic;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #d3d3d3;
  clear: both;
  flex: 1 0 100%;
}
@media (min-width: 1024px) {
  .entry-header .info-legal {
    color: #666;
  }
}

.entry-header .info-legal .section-description {
  margin-top: 0;
}

.single-entry-content {
  /* All of these will be wrapped in a class for where it is used on the editor or single post. */
}
.single-entry-content {
  line-height: 1.8;
}
.single-entry-content a {
  color: #0a7c80;
  text-decoration: underline;
}
@media (hover: hover) {
  .single-entry-content a:hover {
    text-decoration: none;
  }
}
.single-entry-content .wp-block-button__link {
  color: #fff;
  text-decoration: none;
}
@media (hover: hover) {
  .single-entry-content .wp-block-button__link:hover {
    transform: scale(0.95);
  }
}
.single-entry-content .wp-block-button__link {
  position: relative;
}
.single-entry-content .wp-block-button__link::after {
  font-family: "Icons" !important;
  content: "";
  font-size: 80%;
  margin-left: 8px;
}
.single-entry-content h1,
.single-entry-content h2,
.single-entry-content h3,
.single-entry-content h4,
.single-entry-content h5,
.single-entry-content h6 {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.2;
}
.single-entry-content h1 + p,
.single-entry-content h1 + ul,
.single-entry-content h1 + ol,
.single-entry-content h2 + p,
.single-entry-content h2 + ul,
.single-entry-content h2 + ol,
.single-entry-content h3 + p,
.single-entry-content h3 + ul,
.single-entry-content h3 + ol,
.single-entry-content h4 + p,
.single-entry-content h4 + ul,
.single-entry-content h4 + ol,
.single-entry-content h5 + p,
.single-entry-content h5 + ul,
.single-entry-content h5 + ol,
.single-entry-content h6 + p,
.single-entry-content h6 + ul,
.single-entry-content h6 + ol {
  margin-top: 0;
}
.single-entry-content h2 {
  font-size: 30px;
  margin: 24px 0 8px;
}
.single-entry-content h3 {
  font-size: 28px;
  margin: 16px 0 8px;
}
.single-entry-content h4 {
  font-size: 26px;
  margin: 16px 0 8px;
}
.single-entry-content h5 {
  font-size: 24px;
  margin: 16px 0 8px;
}
.single-entry-content h6 {
  font-size: 22px;
  margin: 16px 0 8px;
}
.single-entry-content ol,
.single-entry-content ul {
  margin-left: 0;
}
.single-entry-content ol li,
.single-entry-content ul li {
  line-height: 1.4;
  margin-bottom: 8px;
}
.single-entry-content ol li:last-child,
.single-entry-content ul li:last-child {
  margin-bottom: 0;
}
.single-entry-content ul {
  padding-left: 22px;
}
.single-entry-content ol > li,
.single-entry-content ul > li[style="list-style-type: decimal;"] {
  counter-increment: postlist;
  list-style-type: none !important;
  position: relative;
  margin-left: 0;
  padding-left: 30px;
  line-height: 1.4;
}
.single-entry-content ol > li::before,
.single-entry-content ul > li[style="list-style-type: decimal;"]::before {
  position: absolute;
  left: 0;
  top: 5px;
  content: counter(postlist);
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  width: 19px;
  height: 19px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 50%;
}
.single-entry-content ol > li + li,
.single-entry-content ul > li[style="list-style-type: decimal;"] + li {
  margin-top: 8px;
}

/* Author Box */
.author-box {
  background-color: #f2fcfc;
  border: 1px solid #f2fcfc;
  margin: 80px 0 30px;
  position: relative;
  padding: 0 24px 24px;
}

@media (min-width: 768px) {
  .author-box {
    background: none;
    border: none;
    margin: 28px 0;
    padding: 0 0 0 125px;
  }
}
.author-box-title {
  font-family: "Jost", sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.1em;
  margin: 8px 0 0;
  text-align: center;
}

@media (min-width: 768px) {
  .author-box-title {
    margin: 0;
    text-align: left;
  }
}
.author-box-title::before {
  content: "";
  background: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/avatar-bio.jpg) no-repeat left center/contain;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min-device-pixel-ratio: 1.5) {
  .author-box-title::before {
    background-image: url("/wp-content/themes/once-coupled-its-always-autumn/assets/images/avatar-bio@2x.jpg");
  }
}
.author-box-title::before,
.author-box .avatar {
  border-radius: 50%;
  height: 110px;
  width: 110px;
  object-fit: cover;
  display: block;
  margin: -45px auto 10px;
}

@media (min-width: 768px) {
  .author-box-title::before,
.author-box .avatar {
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.author-box .avatar + .author-box-title::before {
  content: none;
}

.author-box-content {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-top: 4px;
  line-height: 1.3;
  text-align: center;
}

@media (min-width: 768px) {
  .author-box-content {
    text-align: left;
  }

  .author-box-content p:last-of-type {
    display: inline;
  }
}
.author-box-content a {
  font-weight: 700;
  text-decoration: underline;
}

@media (hover: hover) {
  .author-box-content a:hover {
    text-decoration: none;
  }
}
.author-box-content .more-link-container {
  margin-top: 2px;
}

@media (min-width: 768px) {
  .author-box-content .more-link-container {
    display: inline;
    text-align: left;
  }
}
.author-box-content a.more-link {
  background: none;
  border: none;
  display: inline;
  margin: 0;
  line-height: 1.3;
  padding: 0;
  text-decoration: underline;
  text-transform: none;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 20px;
}

@media (hover: hover) {
  .author-box-content a.more-link:hover {
    text-decoration: none;
  }
}
/* Single Pagination */
.adjacent-entry-pagination {
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .adjacent-entry-pagination {
    margin-top: 25px;
  }
}
.adjacent-entry-pagination a {
  flex-direction: column;
  height: 100%;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

@media (min-width: 768px) {
  .adjacent-entry-pagination a {
    background-color: transparent !important;
    flex-direction: row;
  }
}
@media (hover: hover) {
  .adjacent-entry-pagination a:hover {
    text-decoration: underline;
    transform: none;
  }
}
.adjacent-entry-pagination .pagination-previous,
.adjacent-entry-pagination .pagination-next {
  box-shadow: 0 0 4px 0 #ccc;
  flex: 0 0 calc(50% - 8px);
  max-width: 192px;
}

@media (min-width: 768px) {
  .adjacent-entry-pagination .pagination-previous,
.adjacent-entry-pagination .pagination-next {
    box-shadow: none;
    max-width: 266px;
  }
}
.adjacent-entry-pagination .pagination-next {
  margin: 0 0 0 auto;
}

@media (max-width: 769px) {
  .adjacent-entry-pagination .pagination-previous .pagination-label .icon-font,
.adjacent-entry-pagination .pagination-next .pagination-label .icon-font {
    margin: 0 0 4px;
  }

  .adjacent-entry-pagination .pagination-next .pagination-label .icon-font {
    order: -1;
  }
}
.adjacent-entry-pagination .pagination-previous + .pagination-next {
  margin-left: 16px;
}

.adjacent-entry-pagination .pagination-text-container {
  padding: 12px 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .adjacent-entry-pagination .pagination-text-container {
    text-align: right;
    display: block;
    padding: 0;
  }

  .adjacent-entry-pagination .pagination-previous .pagination-text-container {
    text-align: left;
    order: -1;
    margin-right: 8px;
  }

  .adjacent-entry-pagination .pagination-next .pagination-text-container {
    text-align: left;
    order: 2;
    margin-left: 8px;
  }
}
.adjacent-entry-pagination .pagination-image {
  flex: 0 0 auto;
  margin: 0;
}

.adjacent-entry-pagination .pagination-image img {
  margin: 0 auto;
  width: 192px;
  height: 192px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .adjacent-entry-pagination .pagination-image img {
    border-radius: 50%;
    height: 85px;
    width: 85px;
  }
}
.adjacent-entry-pagination .pagination-label {
  font-size: 16px;
  display: flex;
  align-items: center;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  flex-direction: column;
}

@media (min-width: 768px) {
  .adjacent-entry-pagination .pagination-label {
    display: block;
  }
}
.adjacent-entry-pagination .pagination-title {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  text-transform: capitalize;
  letter-spacing: 0;
  line-height: 1.1;
  font-weight: 700;
  margin-top: 4px;
}

.oc-recipe-roundup {
  background-color: #f2fcfc;
  border-radius: 10px;
  display: flex;
  flex-direction: column-reverse;
  padding: 24px 32px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .oc-recipe-roundup {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .oc-recipe-roundup .wprm-recipe-roundup-summary-container {
    flex-basis: 70%;
  }
}

.oc-recipe-roundup .wprm-recipe-name {
  font-size: 32px;
  font-weight: 700;
  font-family: "Jost", sans-serif;
  line-height: 1.1;
  margin-top: 12px;
  display: block;
}
@media (min-width: 768px) {
  .oc-recipe-roundup .wprm-recipe-name {
    margin-top: 0;
  }
}

.oc-recipe-roundup .wprm-recipe-summary {
  line-height: 1.3;
  margin-top: 4px;
}

.oc-recipe-roundup .wprm-recipe-roundup-link {
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
  margin-top: 12px;
  text-transform: none;
}
@media (min-width: 414px) {
  .oc-recipe-roundup .wprm-recipe-roundup-link {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .oc-recipe-roundup .wprm-recipe-roundup-link:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}

.oc-recipe-roundup .wprm-recipe-roundup-link .icon-font {
  font-size: 14px;
  margin-left: 8px;
}

@media (min-width: 768px) {
  .oc-recipe-roundup .wprm-recipe-image {
    margin-left: 44px;
    flex-basis: calc(30% - 44px);
  }
}

.oc-recipe-roundup .wprm-recipe-image img {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.oc-recipe-container {
  overflow: initial !important;
  margin-top: 72px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .oc-recipe-container {
    margin-top: 24px;
  }
}

.wprm-recipe-container .wprm-recipe {
  overflow: initial;
}

.oc-recipe-container .wprm-block-text-normal {
  font-weight: inherit;
}

/* ---- [ Recipe Card ] ---- */
.oc-recipe-cta-before {
  line-height: 1.8;
}

.oc-recipe-container {
  border-radius: 10px;
  border: 4px solid #1a1a1a;
  position: relative;
}

/* Header */
.oc-recipe-header {
  text-align: center;
  margin: 0 10px;
  border-bottom: 5px double;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .oc-recipe-header {
    text-align: left;
    margin: 20px 24px 0 24px;
  }
}

.oc-recipe-header a {
  text-decoration: underline;
  color: inherit;
}

@media (hover: hover) {
  .oc-recipe-header a:hover {
    text-decoration: none;
  }
}
.oc-recipe-pretitle {
  display: inline-flex;
  align-items: center;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  margin-top: 12px;
}
.oc-recipe-pretitle::before, .oc-recipe-pretitle::after {
  content: "";
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/embellishment-x.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
}
.oc-recipe-pretitle::after {
  margin: 0 0 0 8px;
}

.oc-recipe-header .oc-recipe-rating {
  display: block;
  text-decoration: none;
  margin-top: 16px;
}

@media (hover: hover) {
  .oc-recipe-header .oc-recipe-rating:hover {
    text-decoration: underline;
  }
}
.oc-recipe-header .recipe-info-rating {
  text-decoration: none;
  font-family: 17px;
  font-weight: 700;
  color: #2f3e46;
}

@media (hover: hover) {
  .oc-recipe-header .recipe-info-rating:hover {
    text-decoration: underline;
  }
}
.oc-recipe-header .wprm-recipe-rating-details {
  color: #1a1a1a;
}

.oc-recipe-header .wprm-recipe-image {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 4px solid;
  padding: 4px;
  display: block;
  margin: -48px auto 0;
  background-color: #fff;
}
@media (min-width: 768px) {
  .oc-recipe-header .wprm-recipe-image {
    width: 228px;
    height: 228px;
    margin: 0 0 20px 12px;
    float: right;
    padding: 8px;
  }
}

.oc-recipe-header .wprm-recipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.oc-recipe-header h2.wprm-recipe-name {
  margin-top: 8px;
  font-size: 32px;
  font-weight: 700;
}

.oc-recipe-header .wprm-recipe-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@media (min-width: 768px) {
  .oc-recipe-header .wprm-recipe-rating {
    justify-content: flex-start;
  }
}
.oc-recipe-header .wprm-recipe-rating .wprm-recipe-rating-details {
  font-size: 18px;
  font-weight: 700;
  margin-left: 8px;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .oc-recipe-header .wprm-recipe-rating .wprm-recipe-rating-details {
    font-size: 18px;
  }
}
.oc-recipe-header .wprm-recipe-rating svg {
  height: 26px;
  width: 26px;
}

.oc-recipe-header .wprm-recipe-rating .wprm-rating-star.wprm-rating-star-full svg * {
  fill: currentColor;
  stroke: currentColor;
}

.oc-recipe-header .wprm-recipe-servings,
.oc-recipe-header .wprm-recipe-details,
.oc-recipe-header .wprm-recipe-details-unit {
  font-size: inherit;
  font-weight: 400 !important;
  font-family: "Jost", sans-serif;
}

.oc-recipe-header .wprm-recipe-details-label {
  font-family: "Jost", sans-serif;
  font-weight: 700;
}

.oc-recipe-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 16px -6px 0;
  line-height: 1;
  position: relative;
  font-size: 20px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .oc-recipe-info {
    font-size: 20px;
    justify-content: flex-start;
    left: -6px;
  }
}
.oc-recipe-info .icon-clock {
  margin: 0 0 8px 8px;
}

.oc-recipe-info .wprm-recipe-block-container {
  margin: 0 6px 6px;
  font-weight: 600;
}

.wprm-recipe-times-container {
  display: contents;
}

/* Servings */
/* Adjustable servings --- find way to use different class for it 
.wprm-recipe-servings-with-unit {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .wprm-recipe-servings-with-unit {
    flex-direction: column;
  }
}

.wprm-recipe-servings-container {
  font-family: $font__headings;
  background-color: $color__brand-1;
  padding: 16px 10px;
  width: calc(100% + 20px);
  margin: 0 -10px 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .wprm-recipe-servings-container {
    background-color: transparent;
    padding: 0;
    width: auto;
    margin: 24px 0 8px 8px;
    float: right;
  }
}

.wprm-recipe-servings-container .wprm-recipe-details-unit {
  margin-left: 16px;
  font-size: 24px;
  font-weight: 800;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .wprm-recipe-servings-container .wprm-recipe-details-unit {
    color: $color__black;
    margin: 4px 0 0;
    font-size: 18px;
  }
}

.oc-recipe-container .wprm-recipe-servings-text-buttons-container .wprm-recipe-servings-change {
  background-color: #0c2438 !important;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border: none !important;
  transition: all 400ms;
}

@media (min-width: 768px) {
  .oc-recipe-container .wprm-recipe-servings-text-buttons-container .wprm-recipe-servings-change {
    background-color: $color__black !important;
    width: 24px;
    height: 40px;
    font-size: 20px;
  }
}

@media (hover: hover) {
  .oc-recipe-container .wprm-recipe-servings-text-buttons-container .wprm-recipe-servings-change:hover {
    transform: scale(1.05);
  }
}

.oc-recipe-container .wprm-recipe-servings-text-buttons-container input[type='text'].wprm-recipe-servings {
  border: none;
  height: auto;
  font-size: 28px;
  font-weight: 800;
  width: 70px;
}

@media (min-width: 768px) {
  .oc-recipe-container .wprm-recipe-servings-text-buttons-container input[type='text'].wprm-recipe-servings {
    border: 1px solid #445a66;
    font-size: 22px;
    width: 50px;
  }
} */
/* [ Social ] */
.oc-recipe-container .oc-recipe-buttons {
  display: flex;
  flex-wrap: wrap;
  margin: 12px -8px -16px;
  flex-direction: column;
}
@media (min-width: 490px) {
  .oc-recipe-container .oc-recipe-buttons {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .oc-recipe-container .oc-recipe-buttons {
    flex-wrap: nowrap;
    clear: both;
  }
}

.oc-recipe-buttons .wprm-recipe-link {
  --color-primary-hover: #1a1a1a;
  --color-secondary-hover: #fff;
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
  padding: 8px;
  max-height: none;
  height: 100%;
  flex: 1 0 calc(50% - 16px);
  margin: 0 8px 8px;
  font-size: 19px;
}
@media (min-width: 414px) {
  .oc-recipe-buttons .wprm-recipe-link {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .oc-recipe-buttons .wprm-recipe-link:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}
@media (min-width: 490px) {
  .oc-recipe-buttons .wprm-recipe-link {
    margin: 0 8px 16px;
  }
}
@media (min-width: 768px) {
  .oc-recipe-buttons .wprm-recipe-link {
    flex: 1 1 auto;
  }
}
.oc-recipe-buttons .wprm-recipe-link:nth-child(3) {
  --color-primary: #9be3e5;
}
.oc-recipe-buttons .wprm-recipe-link:nth-child(4) {
  --color-secondary: #fff;
  --color-primary: #0ca2a7;
}
@media (hover: hover) {
  .oc-recipe-buttons .wprm-recipe-link:hover {
    border-color: #1a1a1a;
  }
}

.oc-recipe-buttons .dpsp-shortcode-wrapper {
  min-height: 48px;
  flex: 1 0 calc(50% - 16px);
  margin: 0 8px 8px;
}
@media (min-width: 490px) {
  .oc-recipe-buttons .dpsp-shortcode-wrapper {
    margin: 0 8px 16px;
  }
}
@media (min-width: 768px) {
  .oc-recipe-buttons .dpsp-shortcode-wrapper {
    flex: 1 1 auto;
  }
}
.oc-recipe-buttons .dpsp-shortcode-wrapper .dpsp-networks-btns-wrapper {
  height: 100%;
}
.oc-recipe-buttons .dpsp-shortcode-wrapper .dpsp-network-list-item {
  margin: 0;
  display: flex;
  height: 100%;
}
.oc-recipe-buttons .dpsp-shortcode-wrapper .dpsp-network-btn {
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
  font-size: 19px;
  --color-secondary: #fff;
  --color-primary: #cd4260;
  --color-primary-hover: #1a1a1a;
  --color-secondary-hover: #fff;
}
@media (min-width: 414px) {
  .oc-recipe-buttons .dpsp-shortcode-wrapper .dpsp-network-btn {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .oc-recipe-buttons .dpsp-shortcode-wrapper .dpsp-network-btn:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}
@media (hover: hover) {
  .oc-recipe-buttons .dpsp-shortcode-wrapper .dpsp-network-btn:hover {
    border-color: #1a1a1a;
  }
}
.oc-recipe-buttons .dpsp-shortcode-wrapper .dpsp-network-icon svg {
  width: 20px;
  height: 20px;
  margin-right: 4px;
  position: relative;
  top: 1px;
}

.oc-recipe-buttons .wprm-recipe-link .icon-font {
  margin: 0 8px 0 0;
  font-size: 16px;
}

/* [ Content ] */
.wprm-recipe h1,
.wprm-recipe h2,
.wprm-recipe h3,
.wprm-recipe h4,
.wprm-recipe h5,
.wprm-recipe h6 {
  margin-top: 16px;
}

.oc-recipe-content {
  padding: 20px 10px 12px;
  border-bottom: 14px solid;
  border-image-source: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/pattern-diagonal.svg);
  border-image-repeat: repeat;
  border-image-slice: 14 8;
  border-image-outset: 8px 0;
}

@media (min-width: 768px) {
  .oc-recipe-content {
    padding: 16px 24px 12px;
  }
}
.oc-recipe-content ul {
  margin-left: 0;
}

.oc-recipe-content .wprm-recipe-summary {
  font-style: italic;
  margin-top: 0;
}

.oc-recipe-container .oc-recipe-content .wprm-spacer {
  display: none !important;
}

.oc-recipe-content .wprm-recipe-header {
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 700 !important;
  font-style: initial;
  line-height: 1.1;
  margin-top: 22px !important;
  display: flex;
}

.oc-recipe-content .wprm-recipe-header .icon-font {
  margin-right: 12px;
}

.wprm-checkbox-container label::before {
  border: 2px solid #1a1a1a;
  top: 4px;
}

.wprm-checkbox-container label::after {
  top: 9px;
}

.oc-recipe-content > [class*=container] {
  margin-top: 22px !important;
  border-top: 1px solid #e2e2e2;
}

.oc-recipe-content .wprm-recipe-ingredients-container {
  margin-top: 0 !important;
  border-top: 0;
}

.wprm-recipe-ingredients-container .wprm-checkbox-container label::before {
  top: 5px;
}

.wprm-recipe-ingredients-container .wprm-checkbox-container label::after {
  height: 8px;
  width: 12px;
  border-left: 3px solid;
  border-bottom: 3px solid;
  left: 3px;
  top: 8px;
}

.wprm-recipe-ingredients-container li[style="list-style-type: disc;"] {
  margin-left: 24px;
}

.wprm-recipe-equipment-container .wprm-recipe-equipment-item {
  margin-left: 0;
}

.oc-recipe-content .wprm-recipe-group-name,
.oc-recipe-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 16px !important;
  line-height: 1;
}

.wprm-recipe-ingredients-container .wprm-recipe-ingredient-notes-faded {
  opacity: 1;
  font-weight: 500;
  font-style: italic;
  color: #666;
}

.wprm-recipe-notes > * {
  margin-top: 12px !important;
}

.oc-recipe-content [class*=container] ol,
.oc-recipe-content [class*=container] ul {
  margin-top: 8px !important;
}

.oc-recipe-content .wprm-recipe-notes-container ol li,
.oc-recipe-content .wprm-recipe-notes-container ul li,
.oc-recipe-content .wprm-recipe-notes > span:not(.wprm-spacer) {
  border-radius: 5px;
  border: 2px solid;
  margin: 0;
  padding: 16px;
  line-height: 1.2;
  list-style-position: inside !important;
  margin-top: 12px;
}

.oc-recipe-content .wprm-recipe-notes-container ul li {
  list-style: none !important;
}

.oc-recipe-content .wprm-recipe-notes-container ul > li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 9px;
  width: 9px;
  border-radius: 50%;
  background-color: #1a1a1a;
  margin-right: 8px;
  margin-top: -2px;
}

.oc-recipe-content .wprm-recipe-notes-container ol li + li,
.oc-recipe-content .wprm-recipe-notes-container ul li + li {
  margin-top: 16px;
}

.oc-recipe-content .wprm-recipe-notes-container ol li {
  list-style: decimal !important;
  list-style-position: inside !important;
}

.oc-recipe-content .wprm-recipe-notes-container ol li::marker {
  font-weight: 700;
}

.oc-recipe-content .wprm-recipe-notes-container li::before {
  content: none;
}

.oc-recipe-content .wprm-recipe-equipment {
  margin-bottom: 0;
}

.wprm-recipe-equipment .wprm-recipe-equipment-item {
  display: flex;
  flex-direction: column-reverse;
  padding-left: 24px;
  position: relative;
}

.wprm-recipe-equipment .wprm-recipe-equipment-item::before {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #1a1a1a;
  position: absolute;
  top: 0.45em;
  left: 4px;
}

.wprm-recipe-equipment .wprm-recipe-equipment-item .wprm-recipe-equipment-name {
  text-align: left !important;
}

.wprm-recipe-instructions-container .wprm-recipe-instruction-media {
  margin: 12px 0 0;
}

.wprm-recipe li {
  line-height: 1.4;
  margin-top: 8px;
}

.wprm-recipe li span {
  display: inline !important;
}

/* [ Equipment Images ] */
.wprm-recipe-equipment-images a {
  color: #1a1a1a;
  text-decoration: none;
}

@media (hover: hover) {
  .wprm-recipe-equipment-images a:hover {
    text-decoration: underline;
  }
}
/* [ Conversion Container ] */
.wprm-unit-conversion-container {
  margin-top: 16px;
  padding-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
}

.wprm-unit-conversion-container .wprm-unit-conversion {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 700;
  display: block;
  padding: 4px 16px;
  border-radius: 5px;
  border: 3px solid #1a1a1a;
  margin-right: 12px;
}

@media (hover: hover) {
  .wprm-unit-conversion-container .wprm-unit-conversion:hover {
    transform: scale(0.95);
    background-color: #1a1a1a;
    color: #fff;
  }
}
.wprm-unit-conversion-container .wprm-unit-conversion.wprmpuc-active {
  background-color: #1a1a1a;
  color: #fff;
}

/* [ Nutrition ] */
.wprm-nutrition-label-container {
  margin-top: 12px;
  line-height: 1.6;
}

.wprm-nutrition-label-container span {
  color: #1a1a1a !important;
}

.wprm-nutrition-label-text-nutrition-label {
  color: inherit !important;
  font-weight: 700 !important;
}

.oc-recipe-content p.oc-recipe-disclaimer {
  margin-top: 12px;
  font-style: italic;
  font-size: 16px;
  line-height: 1.1;
}

.oc-recipe-content .oc-recipe-copyright {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
}
.oc-recipe-content .oc-recipe-copyright > * {
  margin-right: 12px;
}

/* [ Footer ] */
.oc-recipe-container .oc-recipe-footer {
  background: #2e2e2e;
  color: #fff;
  border-radius: 0 0 5px 5px;
  text-align: center;
  font-size: 22px;
  line-height: 1.4;
  padding: 24px 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: calc(100% + 8px);
  margin: 0 -4px -4px;
}

@media (min-width: 768px) {
  .oc-recipe-container .oc-recipe-footer {
    padding: 28px 24px;
    background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/embellishment-recipe-cta.svg);
    background-repeat: no-repeat;
    background-size: 190px;
    background-position-x: -44px;
    background-position-y: 72px;
    width: 100%;
    margin: 0;
  }
}
.oc-recipe-footer-cta {
  max-width: 540px;
  text-align: center;
}

.oc-recipe-container .oc-recipe-footer-cta .section-title {
  font-family: "Jost", sans-serif;
  text-transform: capitalize;
  font-size: 32px !important;
  font-weight: 700 !important;
  line-height: 1.1;
  color: inherit !important;
}

.oc-recipe-container .oc-recipe-footer-cta .section-description {
  margin-top: 0;
  line-height: 1.4;
}

.oc-recipe-container .oc-recipe-footer-cta a {
  text-decoration: underline;
  font-weight: 700;
  color: inherit;
}

@media (hover: hover) {
  .oc-recipe-container .oc-recipe-footer-cta a:hover {
    text-decoration: none;
  }
}
.oc-recipe-container .oc-recipe-footer-social {
  padding: 0;
  display: flex;
  flex-direction: column;
  max-width: 540px;
  margin: 12px -8px -16px;
  width: 100%;
}
@media (min-width: 768px) {
  .oc-recipe-container .oc-recipe-footer-social {
    flex-direction: row;
  }
}

.oc-recipe-container .oc-recipe-footer-social a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px 8px;
  color: #fff !important;
  background-color: #2e2e2e;
  border: 2px solid #fdd958;
  border-radius: 5px;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  padding: 11px 8px;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .oc-recipe-container .oc-recipe-footer-social a {
    flex-direction: column;
    padding: 16px;
    font-size: 18px;
  }
}
@media (hover: hover) {
  .oc-recipe-container .oc-recipe-footer-social a:hover {
    text-decoration: none;
    transform: scale(0.95);
    background-color: #fff;
    border-color: #fff;
    color: #1a1a1a !important;
  }
}

.oc-recipe-container .oc-recipe-footer-social .icon-font,
.oc-recipe-container .oc-recipe-footer-social .wprm-recipe-icon {
  margin-right: 8px;
}
@media (min-width: 768px) {
  .oc-recipe-container .oc-recipe-footer-social .icon-font,
.oc-recipe-container .oc-recipe-footer-social .wprm-recipe-icon {
    margin: 0 0 8px 0;
  }
}

.oc-recipe-container .oc-recipe-footer-social .wprm-recipe-icon.wprm-recipe-slickstream-not-saved-icon path {
  stroke: currentColor;
  stroke-width: 1.5;
}

.oc-recipe-container .oc-recipe-footer-social .wprm-recipe-icon.wprm-recipe-slickstream-saved-icon path {
  stroke: currentColor;
  fill: currentColor;
}

/* Callout */
.oc-recipe-callout {
  padding: 16px;
  display: flex;
  border-radius: 14px;
  border: 2px solid;
  margin-top: 24px;
}

.oc-recipe-callout .icon-font {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #1a1a1a;
  color: #fff;
  margin-right: 16px;
  height: 40px;
  width: 40px;
  flex-shrink: 0;
  font-size: 22px;
}

/* How To Variant */
@media (min-width: 768px) {
  .oc-how-to-container {
    margin-top: 64px;
  }
}

@media (min-width: 768px) {
  .oc-how-to-container .wprm-recipe-image {
    margin-top: -44px;
  }
}

.oc-how-to-container .wprm-recipe-instructions-container .wprm-recipe-instruction {
  background-color: #f2fcfc;
  border-radius: 5px;
  padding: 20px 16px;
  display: flex;
  flex-wrap: wrap;
}
.oc-how-to-container .wprm-recipe-instructions-container .wprm-recipe-instruction::before {
  position: static;
  margin-right: 8px;
  margin-top: 6px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .oc-how-to-container .wprm-recipe-instructions-container .wprm-recipe-instruction {
    flex-wrap: nowrap;
  }
}

.oc-how-to-container .wprm-recipe-instructions-container .wprm-recipe-instruction-text {
  flex: 1;
}

.oc-how-to-container .wprm-recipe-instructions-container .wprm-recipe-instruction-media {
  margin: 12px 0 0;
}
@media (min-width: 768px) {
  .oc-how-to-container .wprm-recipe-instructions-container .wprm-recipe-instruction-media {
    width: 264px;
    flex-shrink: 0;
    margin: 0 0 0 auto;
    padding-left: 12px;
  }
}
.oc-how-to-container .wprm-recipe-instructions-container .wprm-recipe-instruction-media img {
  border-radius: 10px;
  border: 8px solid #fff;
}

/* ---------- [ Page: Category ] ---------- */
.archive-nav {
  padding-top: 20px;
  margin-top: 0 !important;
  background-image: linear-gradient(to top, #fff 24px, #2e2e2e 24px);
  color: #fff;
}
@media (min-width: 1024px) {
  .archive-nav {
    background-color: #2e2e2e;
    background-image: none;
    padding: 32px 0 36px;
  }
}

.archive-nav > .wrap {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .archive-nav > .wrap {
    display: block;
  }
}

.archive-nav .breadcrumb-separator {
  color: #fdd958;
}

.archive-nav h1 {
  font-family: "Jost", sans-serif;
  text-transform: capitalize;
  margin: 10px 0 0;
  font-size: 32px;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .archive-nav h1 {
    margin-top: 12px;
  }
}

.archive-nav .archive-description p:first-of-type {
  margin-top: 8px;
}

.archive-nav .search-form {
  margin-top: 12px;
  order: 1;
}
@media (min-width: 1024px) {
  .archive-nav .search-form {
    margin-top: -8px;
    float: right;
    border: 0;
  }
}

.archive-nav .search-submit-icon {
  color: #1a1a1a;
}

.category .archive-nav + .content-sidebar-wrap {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .category .archive-nav + .content-sidebar-wrap {
    margin-top: 40px;
  }
}

.category .site-inner > .featured-content,
.category #genesis-content > .featured-content {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .category .site-inner > .featured-content,
.category #genesis-content > .featured-content {
    margin-top: 40px;
  }
}

.category-posts-sections.count-2,
.category-posts-sections.count-4,
.category-posts-sections.count-6 {
  padding: 20px 0;
  position: relative;
}
@media (min-width: 1024px) {
  .category-posts-sections.count-2,
.category-posts-sections.count-4,
.category-posts-sections.count-6 {
    padding: 40px 0;
  }
}
.category-posts-sections.count-2::before,
.category-posts-sections.count-4::before,
.category-posts-sections.count-6::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  top: 0;
  background-color: #f2fcfc;
}
@media (min-width: 1024px) {
  .category-posts-sections.count-2::before,
.category-posts-sections.count-4::before,
.category-posts-sections.count-6::before {
    left: calc(50% + 180px);
  }
}

.category .category-posts-sections .more-link {
  text-transform: capitalize;
}

.category .footer-brands > .wrap {
  padding-top: 24px;
  border-top: 5px double;
}
@media (min-width: 1024px) {
  .category .footer-brands > .wrap {
    padding-top: 36px;
  }
}

/* Blog */
.blog .archive-nav {
  background-image: none;
  background-color: #2e2e2e;
  padding-bottom: 20px;
}
@media (min-width: 1024px) {
  .blog .archive-nav {
    padding-bottom: 32px;
  }
}
.blog .archive-nav .block-links {
  margin-top: 16px;
}
@media (max-width: 1023px) {
  .blog .archive-nav .block-links .entries-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 0;
  }
}
.blog .archive-nav .block-links .entry {
  width: auto;
}
@media (max-width: 1023px) {
  .blog .archive-nav .block-links .entry {
    margin: 0;
  }
}
@media (max-width: 1023px) {
  .blog .archive-nav .block-links .entry-content,
.blog .archive-nav .block-links .more-link-container,
.blog .archive-nav .block-links .more-link {
    height: 100%;
  }
}
.blog .archive-nav .block-links .more-link {
  --color-secondary-hover: #fff;
  border-color: var(--color-secondary);
  background-color: transparent;
  --color-secondary: #fff;
  --color-secondary-hover: #1a1a1a;
  font-weight: 600;
}
@media (hover: hover) {
  .blog .archive-nav .block-links .more-link:hover {
    background-color: var(--color-secondary);
  }
}
@media (max-width: 1023px) {
  .blog .archive-nav .block-links .more-link {
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .blog .archive-nav .block-links .more-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.blog .content-sidebar-wrap {
  margin-top: 20px;
  padding-bottom: 26px;
  border-bottom: 5px double;
}
@media (min-width: 1024px) {
  .blog .content-sidebar-wrap {
    margin-top: 40px;
    padding-bottom: 44px;
  }
}

/* Tag */
.tag .archive-nav {
  background-color: #2e2e2e;
  background-image: none;
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .tag .archive-nav {
    padding-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .tag .archive-nav {
    margin-bottom: 40px;
  }
}

.nav-category {
  margin-top: 0 !important;
  font-size: 16px;
  border-bottom: 1px solid #e2e2e2;
}
@media (min-width: 414px) {
  .nav-category {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .nav-category {
    display: none;
  }
}

.nav-category > .wrap {
  width: 100%;
}

.nav-category .menu {
  display: flex;
  flex-wrap: wrap;
}

.nav-category .menu .menu-item {
  position: relative;
  flex-grow: 1;
}

.nav-category .menu .menu-item:not(:first-of-type)::before {
  content: "";
  border-left: 1px solid #e2e2e2;
  height: 12px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.site-inner > .nav-category .menu .menu-item a {
  border-top: 0;
  justify-content: center;
  min-height: 44px;
}

.page-template-page_about .site-inner > * {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .page-template-page_about .site-inner > * {
    margin-top: 40px;
  }
}

.page-template-page_about .content-sidebar-wrap {
  display: none;
}

.page-template-page_about .block-posts-sections .more-link {
  text-transform: capitalize;
}

/* [ Archive Nav ] */
.page-template-page_about .archive-nav {
  background-color: #f2fcfc;
  background-image: none;
  color: #1a1a1a;
  padding-bottom: 20px;
}
@media (min-width: 1024px) {
  .page-template-page_about .archive-nav {
    padding-bottom: 32px;
  }
}

@media (min-width: 1024px) {
  .page-template-page_about .archive-nav > .wrap {
    display: flex;
    flex-direction: row;
  }
}

.page-template-page_about .archive-nav .breadcrumb-separator {
  color: #1a1a1a;
}

.page-template-page_about .archive-nav .more-link {
  display: flex;
}
@media (min-width: 1024px) {
  .page-template-page_about .archive-nav .more-link {
    display: inline-flex;
  }
}

.page-template-page_about .archive-nav-image {
  margin-top: 16px;
  border: 10px solid #fff;
  position: relative;
}
@media (min-width: 1024px) {
  .page-template-page_about .archive-nav-image {
    flex: 0 0 554px;
    margin-left: 36px;
  }
}
.page-template-page_about .archive-nav-image::before {
  content: "";
  position: absolute;
  bottom: -14px;
  right: -16px;
  z-index: 1;
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/large-block-icons.svg);
  width: 38px;
  height: 39px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: scaleX(-1);
}

/* [ Brands ] */
.about-brands {
  background-color: #2e2e2e;
  color: #fff;
  margin-top: 0 !important;
}

.about-brands > .wrap {
  padding: 24px 0;
}

.about-brands img {
  filter: invert(1) brightness(2);
}

/* [ Circles ] */
.block-features-circles.about-features-circles {
  text-align: left;
}

@media (min-width: 1024px) {
  .block-features-circles.about-features-circles > .wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  .block-features-circles.about-features-circles > .wrap > * {
    flex-basis: 50%;
  }
}

@media (min-width: 1024px) {
  .block-features-circles.about-features-circles .entries-container {
    padding-right: 60px;
    margin-top: 0;
  }
}

/* [ Post Sections ] */
.about-posts-sections .section-title {
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
}

.about-posts-sections .entries-container {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .about-posts-sections .entries-container {
    margin-top: 12px;
  }
}

.about-posts-sections:nth-of-type(even) {
  background-color: #f2fcfc;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 1024px) {
  .about-posts-sections:nth-of-type(even) {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .about-posts-sections:nth-of-type(odd) .entry-title {
    font-size: 22px;
  }
}

/* [ Inline CTA ] */
.inline-cta.about-inline-cta {
  background-color: #fdd958;
  color: #1a1a1a;
}

.inline-cta.about-inline-cta .more-link {
  --color-secondary: #fff;
  --color-primary: #0ca2a7;
}

/* [ FAQs ] */
.about-faqs {
  counter-reset: faqs;
}

.about-faqs .section-title {
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
  text-align: center;
}

@media (min-width: 1024px) {
  .about-faqs .entries-container {
    columns: 2;
    display: block;
    margin-top: 20px;
  }
}

.about-faqs .entry {
  flex-direction: row;
  counter-increment: faqs;
  break-inside: avoid;
}
.about-faqs .entry::before {
  content: counter(faqs);
  font-family: "Jost", sans-serif;
  font-weight: 700;
  line-height: 1;
  width: 36px;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 16px;
}

/* [ Footer CTA ] */
.about-footer-cta {
  text-align: center;
  background-color: #0ca2a7;
  color: #fff;
  overflow: hidden;
}

.about-footer-cta .section-title {
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
}

.about-footer-cta > .wrap {
  position: relative;
}
@media (min-width: 1024px) {
  .about-footer-cta > .wrap::before {
    content: "";
    background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/embellishment-email-cta.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    height: 240px;
    width: 190px;
    position: absolute;
    bottom: -20px;
    left: -60px;
  }
}

.about-footer-cta > .wrap > .section-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;
}
@media (min-width: 1024px) {
  .about-footer-cta > .wrap > .section-content {
    padding: 64px 0;
    max-width: 824px;
    margin: 0 auto;
  }
}

.about-footer-cta > .wrap > .section-content > .more-link-container {
  padding-right: 8px;
}

.about-footer-cta > .wrap > .section-content > .featured-content {
  padding-left: 8px;
  margin-top: 12px;
}

/* ---------- [ Page: 404 ] ---------- */
.error404 .site-inner {
  background-color: #f2fcfc;
}

.error404 .content-sidebar-wrap {
  padding-top: 16px;
}
@media (min-width: 1024px) {
  .error404 .content-sidebar-wrap {
    padding: 40px 0;
    text-align: center;
  }
}

.error404 .single-entry-content {
  line-height: 1.3;
}

.error404 .content > .entry > .entry-title {
  margin-top: 12px;
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.error404 .content .search-form {
  border: 2px solid;
  max-width: 100%;
  display: inline-flex;
  width: 100%;
}
@media (min-width: 768px) {
  .error404 .content .search-form {
    max-width: 350px;
  }
}

.error404 .content .search-form .search-form-input {
  height: 50px;
}

.error404 .block-features-circles {
  background-color: #fff;
  padding: 20px 0;
}
@media (min-width: 1024px) {
  .error404 .block-features-circles {
    padding: 0;
    background-color: transparent;
  }
}

/* ---------- [ Page: Search ] ---------- */
.search .archive-nav {
  background: none;
  color: #1a1a1a;
  padding-top: 16px;
  padding-bottom: 20px;
}
@media (min-width: 1024px) {
  .search .archive-nav {
    padding-top: 20px;
  }
}

.search .archive-nav .breadcrumb-separator {
  color: inherit;
}

.contact-form {
  margin-top: 12px;
}

@media (min-width: 1024px) {
  .contact-form {
    margin-top: 24px;
  }
}
.contact-form .wpforms-form .wpforms-field-container {
  gap: 16px;
}

.contact-form .wpforms-required-label {
  display: none;
}

.contact-form .wpforms-field-container .wpforms-field input,
.contact-form .wpforms-field-container .wpforms-field textarea {
  border: 3px solid !important;
  border-radius: 5px !important;
}

.contact-form .wpforms-field-container .wpforms-field-label {
  font-size: 20px;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  text-transform: capitalize;
  position: absolute;
  top: 8px;
  left: 16px;
}

.contact-form .wpforms-field-textarea .wpforms-field-label {
  display: block;
  width: calc(100% - 32px);
  background: #fff;
  top: 3px;
  left: 16px;
  padding-left: 0;
  padding-top: 8px;
}

.contact-form .wpforms-field-container textarea,
.contact-form .wpforms-field-container input {
  font-size: 20px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
}

.contact-form .wpforms-field-container textarea {
  padding-top: 40px;
}

.contact-form .wpforms-field-container input[type=text],
.contact-form .wpforms-field-container input[type=email] {
  padding-left: 82px;
  max-width: 100%;
}

.contact-form .wpforms-submit-container .wpforms-submit {
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
  --color-secondary: #fff;
  --color-primary: #1a1a1a;
  width: auto;
}
@media (min-width: 414px) {
  .contact-form .wpforms-submit-container .wpforms-submit {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .contact-form .wpforms-submit-container .wpforms-submit:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}
.contact-form .wpforms-submit-container .wpforms-submit::after {
  color: #fdd958;
  transition: all 400ms ease;
}
.contact-form .wpforms-submit-container .wpforms-submit:hover::after {
  color: #1a1a1a;
}

/* ---------- [ Page: Accessibility ] ---------- */
.page-template-page_accessiblity .archive-nav,
.page-template-default:not(.home) .archive-nav {
  background: none;
  color: #1a1a1a;
  padding-top: 16px;
}
@media (min-width: 1024px) {
  .page-template-page_accessiblity .archive-nav,
.page-template-default:not(.home) .archive-nav {
    padding: 24px 0 0;
  }
}
.page-template-page_accessiblity .breadcrumb-separator,
.page-template-default:not(.home) .breadcrumb-separator {
  color: inherit;
}
.page-template-page_accessiblity .entry-content > p:first-of-type,
.page-template-default:not(.home) .entry-content > p:first-of-type {
  margin-top: 4px;
}
.page-template-page_accessiblity .footer-brands > .wrap,
.page-template-default:not(.home) .footer-brands > .wrap {
  padding-top: 24px;
  border-top: 5px double;
}
@media (min-width: 1024px) {
  .page-template-page_accessiblity .footer-brands > .wrap,
.page-template-default:not(.home) .footer-brands > .wrap {
    padding-top: 36px;
  }
}

/* ---------- [ Page: Recipe Index ] ---------- */
.page-template-page_index .site-inner {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .page-template-page_index .site-inner {
    display: block;
  }
}
.page-template-page_index .archive-nav {
  padding-bottom: 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .page-template-page_index .archive-nav {
    padding: 58px 0 44px;
    background-color: #0ca2a7;
    background-image: none;
    position: relative;
  }

  .page-template-page_index .archive-nav::after {
    content: "";
    background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/banner-index.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    height: 100%;
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    left: 53%;
  }
}
body.page-template-page_index:not(.paged) .archive-nav > .wrap {
  padding-bottom: 66px;
}

@media (min-width: 1024px) {
  body.page-template-page_index .archive-nav > .wrap {
    background-color: transparent;
    text-align: center;
    box-shadow: none;
    padding: 0 0 0 4% !important;
  }

  .page-template-page_index .archive-nav > .wrap > * {
    max-width: 504px;
  }

  .page-template-page_index .archive-nav .entry-title {
    font-size: 44px;
  }
}
.page-template-page_index.paged .content-sidebar-wrap {
  padding-top: 25px;
}

@media (min-width: 1024px) {
  .page-template-page_index.paged .content-sidebar-wrap {
    padding-top: 45px;
  }
}
.page-template-page_index .hidden-on-index {
  display: none;
}

.page-template-page_index .content.flexbox .no-bottom-margin {
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .page-template-page_index .content.flexbox .no-bottom-margin {
    margin-top: 40px;
  }
}
.page-template-page_index .content-sidebar-wrap .content .index-features-circles {
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .page-template-page_index .content-sidebar-wrap .content .index-features-circles {
    margin-top: 40px;
  }
}
.single-book_product .site-inner > * {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .single-book_product .site-inner > * {
    margin-top: 40px;
  }
}
.single-book_product .content-sidebar-wrap {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 18px 0;
  width: calc(100% - 20px);
}
@media (min-width: 768px) {
  .single-book_product .content-sidebar-wrap {
    width: calc(100% - 40px);
  }
}
@media (min-width: 1024px) {
  .single-book_product .content-sidebar-wrap {
    width: 1000px;
    margin-right: auto;
    margin-left: auto;
    padding: 40px 0;
  }
}
@media (min-width: 1080px) {
  .single-book_product .content-sidebar-wrap {
    width: 1020px;
  }
}
@media (min-width: 1200px) {
  .single-book_product .content-sidebar-wrap {
    width: 1100px;
  }
}
.single-book_product .content-sidebar-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
}
@media (min-width: 1024px) {
  .single-book_product .content-sidebar-wrap {
    display: flex;
    align-items: stretch;
  }
}
@media (min-width: 768px) {
  .single-book_product .content-sidebar-wrap .content-image {
    flex-basis: 50%;
  }
}
.single-book_product .content-sidebar-wrap .entry-image {
  max-height: 50vh;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .single-book_product .content-sidebar-wrap .entry-image {
    height: 100%;
    max-height: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
}
.single-book_product .content-sidebar-wrap .content {
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 20px;
  max-width: 100%;
  font-size: 20px !important;
}
@media (min-width: 1024px) {
  .single-book_product .content-sidebar-wrap .content {
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 20px;
  }
}
.single-book_product .content-sidebar-wrap .content .book-pretitle {
  font-size: 24px;
  letter-spacing: 0.5em;
  text-align: center;
  line-height: 1;
}
@media (min-width: 768px) {
  .single-book_product .content-sidebar-wrap .content .book-pretitle {
    text-align: left;
  }
}
.single-book_product .content-sidebar-wrap .content .book-pretitle .icon-font {
  display: inline-block;
  transform: rotate(-8deg);
}
.single-book_product .content-sidebar-wrap .content .entry-title {
  font-size: 32px;
  font-weight: 800;
  margin-top: 12px;
  text-align: center;
  line-height: 1;
}
@media (min-width: 768px) {
  .single-book_product .content-sidebar-wrap .content .entry-title {
    text-align: left;
  }
}
.single-book_product .content-sidebar-wrap .content .entry-content {
  margin-top: 8px;
  line-height: 1.3;
}
.single-book_product .content-sidebar-wrap .content .entry-content p:first-child {
  margin-top: 0;
}
.single-book_product .content-sidebar-wrap .content .entry-content p:last-child {
  margin-bottom: 0;
}
.single-book_product .content-sidebar-wrap .content .book-subtitle .section-pretitle {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: 0;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .single-book_product .content-sidebar-wrap .content .book-subtitle .section-pretitle {
    text-align: left;
  }
}
.single-book_product .book-brands {
  background-color: #fdd958;
  padding: 20px 0;
}
.single-book_product .book-brands:not(.alt) {
  margin-top: 0;
}
.single-book_product .book-brands .section-title {
  font-size: 24px;
}
@media (min-width: 1024px) {
  .single-book_product .book-brands .section-title {
    font-size: 18px;
    max-width: 75px;
  }
}
.single-book_product .book-brands .entry-image-link {
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 12px 20px;
}
@media (hover: hover) {
  .single-book_product .book-brands .entry-image-link:hover {
    filter: invert(1) brightness(2);
  }
}
.single-book_product .book-benefits {
  text-align: center;
}
.single-book_product .book-benefits .section-description {
  text-align: left;
}
.single-book_product .book-benefits .entry {
  border: 3px solid #1a1a1a;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-top: 20px;
}
.single-book_product .book-benefits .entry::before {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: -40px auto 8px;
  border-radius: 100%;
  font-family: "custom";
  content: "";
  color: #fff;
  background: #1a1a1a;
  font-size: 21px;
}
.single-book_product .book-benefits .entry-title {
  font-size: 24px;
}
.single-book_product .book-benefits .entry-description {
  margin-top: 8px;
}
.single-book_product .book-chapters {
  padding-bottom: 16px;
}
.single-book_product .book-chapters > .wrap {
  position: relative;
}
@media (min-width: 1024px) {
  .single-book_product .book-chapters > .wrap {
    padding: 40px 0;
  }
}
.single-book_product .book-chapters .section-title {
  color: #fff;
  background: #1a1a1a;
  font-size: 28px;
  font-weight: 700;
  margin: 0 -10px;
  padding: 8px 10px;
}
@media (min-width: 768px) {
  .single-book_product .book-chapters .section-title {
    margin: 0 -20px;
  }
}
@media (min-width: 1024px) {
  .single-book_product .book-chapters .section-title {
    margin: 0;
    transform: rotate(-16deg);
    position: absolute;
    top: 40px;
    left: -44px;
    z-index: 1;
    padding: 8px 16px;
    max-width: 240px;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .single-book_product .book-chapters .entries-container {
    margin-top: 0;
  }
}
.single-book_product .book-chapters .entry {
  background-color: #fff;
}
.single-book_product .book-chapters .entry-content,
.single-book_product .book-chapters .entry-title,
.single-book_product .book-chapters .entry-title-link {
  height: 100%;
  padding: 8px;
}
.single-book_product .book-chapters .entry-title-link {
  padding: 0;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.single-book_product .book-highlight {
  margin-left: 10px;
  margin-right: 10px;
  border: 3px solid #1a1a1a;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .single-book_product .book-highlight {
    border: none;
  }
}
@media (min-width: 768px) {
  .single-book_product .book-highlight .wrap {
    display: flex;
  }
}
.single-book_product .book-highlight .section-image {
  margin: 0 -10px;
}
@media (min-width: 768px) {
  .single-book_product .book-highlight .section-image {
    margin: 0 40px 0 0;
    flex-basis: 50%;
  }
}
@media (min-width: 768px) {
  .single-book_product .book-highlight .entry-image {
    height: 100%;
    object-fit: cover;
  }
}
@media (min-width: 768px) {
  .single-book_product .book-highlight .section-content {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
  }
}
.single-book_product .book-highlight .section-pretitle {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .single-book_product .book-highlight .section-pretitle {
    margin-top: 0;
  }
}
.single-book_product .book-highlight .section-title {
  margin-top: 12px;
}
.single-book_product .book-highlight .section-description {
  margin-top: 12px;
}
.single-book_product .book-highlight .section-description ul {
  list-style-type: none;
  margin-top: 0;
  margin-bottom: 0;
}
.single-book_product .book-highlight .section-description ul li {
  position: relative;
}
.single-book_product .book-highlight .section-description ul li::before {
  font-family: "custom";
  content: "";
  position: absolute;
  top: 0;
  left: -28px;
}
.single-book_product .book-highlight .more-link-container {
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .single-book_product .book-highlight .more-link-container {
    margin-bottom: 0;
  }
}
.single-book_product .book-highlight .more-link {
  padding: 8px 36px;
}
@media (min-width: 768px) {
  .single-book_product .book-highlight .more-link {
    text-align: left;
    padding: 8px 16px;
  }
}
@media (min-width: 1024px) {
  .single-book_product .book-highlight .more-link {
    display: inline-flex;
  }
}
.single-book_product .book-posts-sections {
  background-color: #f2fcfc;
  padding: 24px 0;
}
@media (min-width: 1024px) {
  .single-book_product .book-posts-sections {
    padding: 36px 0;
  }
}
.single-book_product .book-posts-sections .section-title {
  text-align: center;
}
.single-book_product .book-posts-sections .section-title::after {
  content: none;
}
.single-book_product .book-posts-sections .entry-content {
  text-align: left;
  padding: 8px 12px;
}
.single-book_product .book-posts-sections .entry-pretitle {
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.single-book_product .book-posts-sections .entry-title {
  font-size: 22px;
  font-weight: 800;
}
@media (min-width: 768px) {
  .single-book_product .book-reviews .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
.single-book_product .book-reviews .entry-title-link {
  font-size: 24px;
}
@media (min-width: 768px) {
  .single-book_product .book-reviews .entries-container {
    flex-basis: calc(100% + var(--column-gap) * 2px);
    order: 1;
  }
}
@media (min-width: 768px) {
  .single-book_product .book-reviews .wrap > .more-link-container {
    margin: 0 0 0 auto;
    position: relative;
    top: -8px;
  }
}
.single-book_product .book-reviews .more-link {
  text-transform: lowercase;
  text-align: left;
  --color-primary: #1a1a1a;
  --color-secondary: #fff;
}
@media (min-width: 1024px) {
  .single-book_product .book-brands.alt {
    padding: 44px 0;
  }
}
.single-book_product .book-brands.alt > .wrap {
  display: block;
}
.single-book_product .book-brands.alt .section-title {
  text-transform: capitalize;
  max-width: initial;
  font-size: 32px;
}
.single-book_product .book-brands.alt .section-content {
  display: block;
}
@media (min-width: 1024px) {
  .single-book_product .book-brands.alt .entries-container {
    margin-top: 16px;
  }
}

/* ---------- [ Inline ] ---------- */
#dpsp-content-top {
  border-top: 1px solid #e2e2e2;
  padding-top: 12px;
  margin-top: 12px;
}

@media (min-width: 1024px) {
  #dpsp-content-top {
    display: none !important;
  }
}
#dpsp-content-top li + li {
  margin-left: 8px;
}

#dpsp-content-top .dpsp-total-share-wrapper {
  color: #c4c4c4;
}

#dpsp-content-top .dpsp-networks-btns-wrapper .dpsp-network-btn {
  border-color: #e2e2e2;
  border-radius: 5px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 16px;
  height: 34px;
}

#dpsp-content-top .dpsp-network-icon svg {
  height: 16px;
}

/* ---------- [ Inline: bottom ] ---------- */
#dpsp-content-bottom {
  display: flex;
  margin-top: 20px;
}

@media (min-width: 768px) {
  #dpsp-content-bottom {
    margin-top: 28px;
  }
}
#dpsp-content-bottom .dpsp-total-share-wrapper {
  color: #c4c4c4;
}

#dpsp-content-bottom .dpsp-networks-btns-wrapper {
  display: flex;
  flex: 1;
}

#dpsp-content-bottom .dpsp-network-btn {
  background-color: #0ca2a7;
  border-radius: 5px;
  border: none;
  font-weight: 800;
  font-size: 16px;
  padding: 12px;
  justify-content: space-between;
  min-height: 48px;
}

@media (min-width: 768px) {
  #dpsp-content-bottom .dpsp-network-btn {
    justify-content: flex-start;
    font-size: 20px;
  }
}
@media (hover: hover) {
  #dpsp-content-bottom .dpsp-network-btn:hover {
    background-color: #1a1a1a;
    color: #fff;
  }
}
#dpsp-content-bottom .dpsp-network-btn svg {
  height: 14px;
  margin-right: 12px;
  width: auto;
}

@media (min-width: 768px) {
  #dpsp-content-bottom .dpsp-network-btn svg {
    height: 24px;
  }
}
/* ---------- [ Floating Sidebar ] ---------- */
#dpsp-floating-sidebar {
  top: calc(50% + 20px) !important;
  z-index: 9999 !important;
  background: #fff !important;
  padding: 12px 12px 4px 0;
  border-radius: 0 10px 10px 0;
}

#dpsp-floating-sidebar .dpsp-networks-btns-wrapper .dpsp-network-btn {
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
  border: 3px solid #1a1a1a !important;
  border-left: 0 !important;
  border: none;
  height: 48px;
  width: 48px;
}

#dpsp-floating-sidebar .dpsp-networks-btns-wrapper .dpsp-pinterest {
  background-color: #cd4260;
  border-color: #cd4260 !important;
  color: #fff;
}

#dpsp-floating-sidebar .dpsp-networks-btns-wrapper .dpsp-facebook {
  background-color: #0ca2a7;
  border-color: #0ca2a7 !important;
  color: #fff;
}

#dpsp-floating-sidebar .dpsp-networks-btns-wrapper .dpsp-twitter {
  background-color: #9be3e5;
  border-color: #9be3e5 !important;
}

#dpsp-floating-sidebar .dpsp-networks-btns-wrapper .dpsp-email {
  background-color: #fdd958;
  border-color: #fdd958 !important;
}

@media (hover: hover) {
  #dpsp-floating-sidebar .dpsp-networks-btns-wrapper .dpsp-network-btn:hover {
    background-color: transparent;
    border-color: #1a1a1a !important;
    color: #1a1a1a;
    transform: scale(0.95);
    transform-origin: left center;
  }
}
#dpsp-floating-sidebar .dpsp-network-icon svg {
  height: 24px;
}

/* ---- Related Posts ---- */
.rp4wp-related-posts {
  border: 3px solid #1a1a1a;
  border-radius: 5px;
  margin-top: 32px;
  padding: 16px 20px;
  position: relative;
}

@media (min-width: 768px) {
  .rp4wp-related-posts {
    margin-top: 48px;
    padding: 24px 20px;
  }
}
.rp4wp-related-posts h3 {
  display: block;
  width: auto;
  white-space: nowrap;
  background-color: #fff;
  color: #1a1a1a;
  font-family: "Jost", sans-serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  margin: 0;
  padding: 0 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -55%);
  text-align: center;
  text-transform: capitalize;
}

@media (min-width: 360px) {
  .rp4wp-related-posts h3 {
    font-size: 28px;
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .rp4wp-related-posts h3 {
    left: 20px;
    transform: translate(0, -55%);
    right: auto;
  }
}
.rp4wp-related-posts ul {
  list-style: none;
  margin: 0;
}
@media (min-width: 768px) {
  .rp4wp-related-posts ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
  }
}

.rp4wp-related-posts li {
  align-items: center;
  display: flex;
  margin: 16px 0;
}
@media (min-width: 768px) {
  .rp4wp-related-posts li {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    display: block;
    flex-basis: calc(33.333% - 16px);
    margin: 8px;
  }
}

.rp4wp-related-posts .rp4wp-related-post-image {
  flex-basis: 25%;
}

.rp4wp-related-posts .rp4wp-related-post-content {
  flex-basis: 75%;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .rp4wp-related-posts .rp4wp-related-post-content {
    padding: 0 10px 10px;
  }
}
.rp4wp-related-posts .rp4wp-related-post-content a {
  display: block;
  font-family: "Jost", sans-serif;
  text-transform: capitalize;
  margin-top: 6px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .rp4wp-related-posts .rp4wp-related-post-content a {
    font-size: 18px;
    text-align: center;
  }
}

@media (hover: hover) {
  .rp4wp-related-posts li:hover .rp4wp-related-post-content a {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: #1a1a1a;
  }
}
.oc-theme .wpforms-container {
  margin: 0;
  font-family: "Jost", sans-serif;
}

.oc-theme .wpforms-container .wpforms-field {
  padding: 0;
}

.oc-theme .wpforms-container .wpforms-field-label-inline {
  font-weight: inherit;
  line-height: 1.1;
}

.oc-theme .wpforms-field {
  text-align: var(--field-text-align);
}

.oc-theme .wpforms-field input[type=email],
.oc-theme .wpforms-field input[type=text],
.oc-theme .wpforms-field textarea,
.oc-theme .wpforms-field select {
  min-height: 48px;
  border-style: solid;
  border-width: var(--field-border-width, 0);
  border-color: var(--field-border-color, initial);
  border-radius: var(--field-border-radius, 0);
  background-color: var(--field-bg-color, transparent);
  font-style: var(--field-font-style, iherit);
  color: var(--field-text-color, inherit);
}

.oc-theme .wpforms-submit {
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
  width: 100%;
}
@media (min-width: 414px) {
  .oc-theme .wpforms-submit {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .oc-theme .wpforms-submit:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}
.oc-theme .wpforms-submit::after {
  content: "";
  font-family: "Icons";
  margin-left: 6px;
  display: inline-block;
  font-size: 14px;
}

.oc-theme .wpforms-container .wpforms-submit-container {
  margin-top: 16px;
  padding: 0;
}

/* Checkbox */
.oc-theme .wpforms-field-gdpr-checkbox {
  text-align: left;
  font-size: 16px;
  line-height: 1.1;
}

.oc-theme .wpforms-field-gdpr-checkbox li {
  display: flex;
}

.oc-theme .wpforms-container .wpforms-field-gdpr-checkbox input {
  width: 34px;
  height: 34px;
  position: relative;
  margin: 1px 8px 0 0;
  flex-shrink: 0;
  -moz-appearance: none;
  -o-apperance: none;
  -webkit-appearance: none;
  border-style: solid;
  border-width: var(--field-border-width, 0);
  border-color: var(--field-border-color, initial);
  background-color: var(--field-bg-color, transparent);
}
@media (min-width: 1024px) {
  .oc-theme .wpforms-container .wpforms-field-gdpr-checkbox input {
    width: 16px;
    height: 16px;
  }
}
.oc-theme .wpforms-container .wpforms-field-gdpr-checkbox input:checked::after {
  content: "";
  border-right: 3px solid;
  border-bottom: 3px solid;
  width: 40%;
  height: 70%;
  transform: rotate(45deg);
  position: absolute;
  left: 33%;
  top: 8%;
}

/* Radios */
.oc-theme .wpforms-field-radio ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  gap: 12px;
  margin-top: 8px;
  font-weight: 600;
}

.oc-theme .wpforms-field-radio ul li {
  display: flex;
  align-items: center;
}

.oc-theme .wpforms-field-radio input[type=radio] {
  width: 34px;
  height: 34px;
  border: 2px solid #e2e2e2;
  border-radius: 50%;
  position: relative;
  margin: 0 8px 0 0;
}
@media (min-width: 1024px) {
  .oc-theme .wpforms-field-radio input[type=radio] {
    width: 16px;
    height: 16px;
  }
}
.oc-theme .wpforms-field-radio input[type=radio]:checked {
  border-color: #1a1a1a;
}
.oc-theme .wpforms-field-radio input[type=radio]:checked:before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  display: block;
  position: absolute;
  border-radius: 50%;
  left: 2px;
  top: 2px;
  background-color: #1a1a1a;
}

/* Errors */
.oc-theme .wpforms-container label.wpforms-error {
  font-size: 1em;
  margin-top: 4px;
  font-weight: 700;
  color: var(--field-warning-color, #990000);
}

.oc-theme .wpforms-container .wpforms-field input.wpforms-error,
.oc-theme .wpforms-container .wpforms-field input.user-invalid,
.oc-theme .wpforms-container .wpforms-field textarea.wpforms-error,
.oc-theme .wpforms-container .wpforms-field textarea.user-invalid,
.oc-theme .wpforms-container .wpforms-field select.wpforms-error,
.oc-theme .wpforms-container .wpforms-field select.user-invalid,
.oc-theme .wpforms-container .wpforms-field.wpforms-has-error .choices__inner {
  border-color: var(--field-warning-color, #990000);
  border-width: var(--field-border-width, 0);
}

.oc-theme .wpforms-container .wpforms-required-label {
  color: var(--field-warning-color, #990000);
}

/* Reset */
.oc-theme .wpforms-field-container {
  display: grid;
  gap: 12px 20px;
}
@media (min-width: 768px) {
  .oc-theme .wpforms-field-container {
    grid-template-columns: repeat(12, 1fr);
  }
}
.oc-theme .wpforms-container .wpforms-five-sixths,
.oc-theme .wpforms-container .wpforms-four-sixths,
.oc-theme .wpforms-container .wpforms-four-fifths,
.oc-theme .wpforms-container .wpforms-one-fifth,
.oc-theme .wpforms-container .wpforms-one-fourth,
.oc-theme .wpforms-container .wpforms-one-half,
.oc-theme .wpforms-container .wpforms-one-sixth,
.oc-theme .wpforms-container .wpforms-one-third,
.oc-theme .wpforms-container .wpforms-three-fourths,
.oc-theme .wpforms-container .wpforms-three-fifths,
.oc-theme .wpforms-container .wpforms-three-sixths,
.oc-theme .wpforms-container .wpforms-two-fourths,
.oc-theme .wpforms-container .wpforms-two-fifths,
.oc-theme .wpforms-container .wpforms-two-sixths,
.oc-theme .wpforms-container .wpforms-two-thirds {
  margin: 0;
}
.oc-theme .wpforms-container .wpforms-field:not(.wpforms-field-phone):not(.wpforms-field-select-style-modern) {
  overflow: initial;
}
.oc-theme .wpforms-container .wpforms-field {
  width: 100% !important;
}
@media (min-width: 768px) {
  .oc-theme .wpforms-container .wpforms-field {
    grid-column: 1/-1;
  }
}
@media (min-width: 768px) {
  .oc-theme .wpforms-container .wpforms-one-sixth {
    grid-column: span 2;
  }
  .oc-theme .wpforms-container .wpforms-one-fourth {
    grid-column: span 3;
  }
  .oc-theme .wpforms-container .wpforms-one-third,
.oc-theme .wpforms-container .wpforms-two-sixths {
    grid-column: span 4;
  }
  .oc-theme .wpforms-container .wpforms-one-half,
.oc-theme .wpforms-container .wpforms-three-sixths,
.oc-theme .wpforms-container .wpforms-two-fourths {
    grid-column: span 6;
  }
  .oc-theme .wpforms-container .wpforms-two-thirds,
.oc-theme .wpforms-container .wpforms-four-sixths {
    grid-column: span 8;
  }
  .oc-theme .wpforms-container .wpforms-three-fourths {
    grid-column: span 9;
  }
  .oc-theme .wpforms-container .wpforms-five-sixths {
    grid-column: span 10;
  }
}

/* ---------- [ Plugin: Taxonomy Indicators ] ---------- */
.taxonomy-indicators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
}

.taxonomy-indicators .taxonomy-indicator {
  flex-wrap: nowrap;
  width: 100%;
  margin: 0;
}

.taxonomy-indicator .abbr {
  width: 38px;
  height: 38px;
  border: 3px solid #1a1a1a;
  background: none;
  color: #1a1a1a;
  font-weight: 800;
  font-family: "Jost", sans-serif;
  flex-shrink: 0;
}

@media (hover: hover) {
  .taxonomy-indicator:hover {
    text-decoration: none;
  }

  .taxonomy-indicator:hover .abbr,
.taxonomy-indicator:hover .full-name {
    opacity: 1;
  }

  .taxonomy-indicator:hover .abbr {
    background-color: #1a1a1a;
    color: #fff;
  }
}
.taxonomy-indicator.tax-all .abbr {
  background-color: #1a1a1a;
  color: #fff;
  border: 0;
}

@media (hover: hover) {
  .taxonomy-indicator.tax-all:hover .abbr {
    background-color: #fdd958;
    color: #1a1a1a;
  }
}
.taxonomy-indicator .full-name {
  font-weight: 800;
  font-family: "Jost", sans-serif;
  text-align: left;
  line-height: 1.2;
  margin-left: 8px;
  font-size: 16px;
}

@media (hover: hover) {
  .taxonomy-indicator:hover .full-name {
    text-decoration: underline;
  }
}
/* Home Variant */
.home-key {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .home-key {
    margin-top: 60px;
  }
}
@media (min-width: 1024px) {
  .home-key {
    margin-top: 0;
  }
}
.home-key .taxonomy-indicator .abbr {
  width: 48px;
  height: 48px;
  font-size: 20px;
}

.home-key .taxonomy-indicator .full-name {
  font-size: 18px;
}

.home-key .taxonomy-indicator.tax-all .abbr {
  color: #1a1a1a;
  background-color: #0ca2a7;
}

/* Index Variant */
.indicator-key {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

@media (min-width: 1024px) {
  .indicator-key {
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: left;
  }
}
.indicator-key::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100vw;
  height: 100%;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.indicator-key > .wrap {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 16px 20px;
}

@media (min-width: 1024px) {
  .indicator-key > .wrap {
    display: block;
  }
}
.indicator-key .section-title {
  order: -1;
  font-weight: 400;
  font-size: 28px;
}

@media (min-width: 1024px) {
  .indicator-key .section-title {
    font-size: 32px;
    margin-left: 20px;
  }
}
.indicator-key .section-pretitle {
  letter-spacing: normal;
  text-transform: capitalize;
  background-color: #fdd958;
  padding: 8px 16px;
  width: calc(100% + 32px);
  margin: 8px -16px 0;
}

@media (min-width: 1024px) {
  .indicator-key .section-pretitle {
    width: auto;
    margin: 0 20px 0 0;
    float: right;
  }
}
.index-key {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 13px 10px;
  margin-top: 20px;
  align-items: start;
}

@media (min-width: 1024px) {
  .index-key {
    grid-template-columns: repeat(9, 1fr);
  }
}
.index-key .taxonomy-indicator {
  flex-direction: column;
}

.index-key .taxonomy-indicator .abbr {
  width: 72px;
  height: 72px;
  font-size: 28px;
}

.index-key .taxonomy-indicator .full-name {
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  margin: 5px 0 0;
}

@media (min-width: 370px) {
  .index-key .taxonomy-indicator .full-name {
    margin-top: 8px;
    font-size: 17px;
  }
}
@media (min-width: 768px) {
  .index-key .taxonomy-indicator .full-name {
    font-size: 18px;
  }
}
.mv-recipe-card {
  margin: 20px 0 8px;
  --mv-star-fill: #1a1a1a;
  max-width: 100% !important;
  margin-top: 20px !important;
}

@media (min-width: 768px) {
  .mv-recipe-card {
    border: 5px solid #1a1a1a;
    border-radius: 10px;
    margin: 40px 0 8px;
    padding: 28px 28px 0;
  }
}
.mv-recipe-card .icon-font::before {
  display: block !important;
}

.mv-create-wrapper {
  border: none !important;
  padding: 0 !important;
}

.mv-create-card li,
.mv-create-card ol,
.mv-create-card p,
.mv-create-card ul {
  font-size: 20px !important;
  line-height: 26px !important;
}

/* Recipe CTA Top */
.wp-block-mv-recipe .mv-create-cta {
  background-color: #fbf5f1;
  padding: 15px 20px 15px 53px;
  text-indent: -17px;
  border-radius: 5px;
  font-size: 20px;
  line-height: 26px;
}

.wp-block-mv-recipe .mv-create-cta .icon-star {
  margin-right: 8px;
}

.wp-block-mv-recipe .mv-create-cta .icon-star::before {
  transform: rotate(-10deg);
}

.wp-block-mv-recipe .mv-create-cta strong:first-child {
  font-weight: 800;
  font-family: "Jost", sans-serif;
}

.wp-block-mv-recipe .mv-create-cta a {
  font-weight: 700;
}

/* [ Recipe Header ] */
.mv-recipe-card .mv-create-header {
  margin: 0;
  position: relative;
  text-align: center;
}

@media (min-width: 768px) {
  .mv-recipe-card .mv-create-header {
    display: block;
    text-align: left;
  }
}
.mv-recipe-card .mv-create-header .mv-create-image-container {
  margin: 0 -10px;
  width: 100vw;
  min-width: 100vw;
  grid-row: 1/span 1;
  grid-column: 1/-1;
}

@media (min-width: 768px) {
  .mv-recipe-card .mv-create-header .mv-create-image-container {
    position: relative;
    float: right;
    margin: 0 0 40px 12px;
    width: 257px !important;
    min-width: unset;
  }

  .mv-recipe-card .mv-create-header .mv-create-image-container::after {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: -17px;
    left: 0;
    width: 100%;
    height: 110px;
    background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/pattern-large.svg);
    background-size: 200px;
    display: block !important;
  }

  .mv-recipe-card .mv-create-header .mv-create-image {
    position: relative;
    z-index: 2;
    width: 240px;
    height: 240px;
    margin: 0 auto 0 0;
    object-fit: cover;
  }
}
.mv-recipe-card .mv-create-title-wrap {
  background-color: #fff;
  padding: 20px 8px 0;
  grid-row: 1;
  grid-column: 2;
}

@media (min-width: 768px) {
  .mv-recipe-card .mv-create-title-wrap {
    padding: 0;
    max-width: calc(100% - 270px);
  }
}
.mv-recipe-card .mv-create-pre-title {
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
  display: block;
  letter-spacing: 0.15em;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.mv-recipe-card .mv-create-title.mv-create-title-primary {
  letter-spacing: 0;
  line-height: 1.1;
  font-family: "5th Avenue", serif;
  font-weight: 400;
  font-size: 32px;
  margin: 4px 0 0;
  max-width: 100% !important;
  float: none;
}

@media (min-width: 768px) {
  .mv-recipe-card .mv-create-title.mv-create-title-primary {
    font-size: 38px;
  }
}
/* [ Header Rating ] */
.mv-recipe-card .mv-create-reviews {
  background-color: #fff;
  padding: 0 8px;
  line-height: 1;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .mv-recipe-card .mv-create-reviews {
    padding: 0;
    max-width: calc(100% - 270px);
  }
}
.mv-recipe-card .mv-reviews {
  --mv-star-fill: $color__black;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .mv-recipe-card .mv-reviews {
    justify-content: flex-start;
  }
}
.mv-recipe-card .mv-reviews > * {
  margin: 8px 4px;
}

.mv-recipe-card .star-ratings {
  fill: transparent;
  width: 150px;
  display: block;
}

.mv-recipe-card .star-ratings .star {
  fill: #e2e2e2;
}

.mv-recipe-card .mv-rating-1 .rating-1 {
  fill: var(--mv-star-fill);
}

.mv-recipe-card .mv-rating-1-5 .rating-1-5 {
  fill: var(--mv-star-fill);
}

.mv-recipe-card .mv-rating-2 .rating-2 {
  fill: var(--mv-star-fill);
}

.mv-recipe-card .mv-rating-2-5 .rating-2-5 {
  fill: var(--mv-star-fill);
}

.mv-recipe-card .mv-rating-3 .rating-3 {
  fill: var(--mv-star-fill);
}

.mv-recipe-card .mv-rating-3-5 .rating-3-5 {
  fill: var(--mv-star-fill);
}

.mv-recipe-card .mv-rating-4 .rating-4 {
  fill: var(--mv-star-fill);
}

.mv-recipe-card .mv-rating-4-5 .rating-4-5 {
  fill: var(--mv-star-fill);
}

.mv-recipe-card .mv-rating-5 .rating-5 {
  fill: var(--mv-star-fill);
}

.mv-recipe-card .mv-rating-5-5 .rating-5-5 {
  fill: var(--mv-star-fill);
}

.mv-recipe-card .mv-reviews-reviewcount {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0;
  line-height: 1;
}

/* [ Modal ] */
.mv-recipe-card .mv-modal {
  position: absolute;
  left: 0;
  background-color: #fff;
  border: 3px solid;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

/* [ Times ] */
.mv-recipe-card .mv-create-times {
  display: block;
  margin: 0;
  line-height: 1.2;
  clear: none;
}

.mv-recipe-card .mv-create-times * {
  opacity: 1;
  font-style: normal;
  display: inline-block;
}

.mv-recipe-card .mv-create-times .icon-asterisk {
  font-size: 15px;
}

.mv-recipe-card .mv-create-times .icon-clock {
  position: relative;
  top: 1px;
  font-size: 17px;
}

.mv-recipe-card .mv-create-time {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 4px;
  padding: 0;
  width: auto;
}

.mv-recipe-card .mv-create-time strong {
  font-weight: 800;
}

/* [ Header buttons ] */
.mv-recipe-card .mv-create-below-header-bar {
  width: calc(100% + 20px);
  margin: 16px -10px 0;
  padding: 16px 10px;
  background-color: #fdd958;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  grid-column: 1/-1;
}

@media (min-width: 768px) {
  .mv-recipe-card .mv-create-below-header-bar {
    background-color: #fff;
    width: 100%;
    margin: 16px 0 0 0;
    padding: 0;
    grid-template-columns: initial;
    grid-auto-columns: minmax(25%, auto);
    grid-auto-flow: column;
  }
}
.mv-recipe-card .mv-create-below-header-bar .button,
.mv-recipe-card .mv-create-below-header-bar .dpsp-network-btn {
  background-color: #fff;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  text-transform: none;
}

@media (min-width: 768px) {
  .mv-recipe-card .mv-create-below-header-bar .button,
.mv-recipe-card .mv-create-below-header-bar .dpsp-network-btn {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    background-color: #ffee00;
    border-color: #ffee00;
  }
}
@media (hover: hover) {
  .mv-recipe-card .mv-create-below-header-bar .button:hover,
.mv-recipe-card .mv-create-below-header-bar .dpsp-network-btn:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
    transform: scale(0.95) !important;
  }
}
.mv-recipe-card .mv-create-below-header-bar .button .icon-font {
  font-size: 16px;
  color: #1c1c1c;
  margin-right: 12px;
}

@media (hover: hover) {
  .mv-recipe-card .mv-create-below-header-bar .button:hover .icon-font {
    color: #fff;
  }
}
.mv-recipe-card .mv-create-below-header-bar .dpsp-network-btn svg {
  height: 18px;
  width: auto;
  color: #1c1c1c;
  margin-right: 12px;
  margin-top: 1px;
}

@media (hover: hover) {
  .mv-recipe-card .mv-create-below-header-bar .dpsp-network-btn:hover svg {
    color: #fff;
  }
}
.mv-recipe-card .mv-create-below-header-bar .print-button {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

@media (hover: hover) {
  .mv-recipe-card .mv-create-below-header-bar .print-button:hover {
    background-color: #fff;
    border-color: #1a1a1a;
    color: #1a1a1a;
    transform: scale(0.95);
  }
}
.mv-recipe-card .mv-create-below-header-bar .print-button .icon-font {
  color: #fff;
}

@media (hover: hover) {
  .mv-recipe-card .mv-create-below-header-bar .print-button:hover .icon-font {
    color: #1a1a1a;
  }
}
.mv-recipe-card .mv-create-below-header-bar + * {
  margin-top: 16px;
}

/* [ Content ] */
.mv-recipe-card .mv-create-wrapper p {
  margin: 0;
  font-size: inherit;
}

.mv-recipe-card .mv-create-wrapper * + p {
  margin-top: 12px;
}

.mv-recipe-card .mv-create-wrapper ul,
.mv-recipe-card .mv-create-wrapper ol {
  margin-top: 8px;
  margin-bottom: 0;
}

.mv-recipe-card .mv-create-wrapper ul {
  margin-left: 22px;
}

.mv-recipe-card .mv-create-wrapper ol {
  margin-left: 0;
}

.mv-recipe-card .mv-create-wrapper ul li,
.mv-recipe-card .mv-create-wrapper ol li {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.4;
}

.mv-recipe-card .mv-create-wrapper .mv-create-title-secondary {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 28px;
  font-style: normal;
  letter-spacing: 0;
  color: #1a1a1a;
  line-height: 1.2;
}

.mv-recipe-card .mv-create-description {
  padding-bottom: 16px;
  text-align: center;
  line-height: 1.3;
  font-style: italic;
  grid-column: 1/-1;
}

.mv-recipe-card .mv-create-description p {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
}

.mv-recipe-card .mv-create-notes,
.mv-recipe-card .mv-create-nutrition,
.mv-recipe-card .mv-create-products {
  border-top: 4px solid #1a1a1a;
  margin-top: 24px;
  padding-top: 24px;
}

.mv-recipe-card .mv-create-ingredients {
  margin-top: 2px;
}

.mv-recipe-card .mv-create-wrapper .mv-create-ingredients h3 {
  font-size: 20px;
  margin: 8px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0;
}

.mv-recipe-card .mv-create-wrapper .mv-create-ingredients h4 {
  font-size: 18px;
  margin: 8px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

.mv-recipe-card .mv-create-wrapper .mv-create-ingredients ul li,
.mv-recipe-card .mv-create-wrapper .mv-create-ingredients ol li {
  line-height: 1.6;
}

.mv-recipe-card .mv-create-instructions br {
  display: none;
}

.mv-recipe-card .mv-create-instructions div {
  line-height: 26px;
  font-size: 20px;
}

.mv-recipe-card .mv-create-wrapper .mv-create-instructions ol li::before,
.mv-recipe-card .mv-create-wrapper .mv-create-instructions ul li[style="list-style-type: decimal;"]::before {
  background-color: #1a1a1a;
  color: #fff;
}

.mv-recipe-card .mv-create-wrapper .mv-create-notes ol,
.mv-recipe-card .mv-create-wrapper .mv-create-notes ul {
  margin-left: 0;
}

.mv-recipe-card .mv-create-wrapper .mv-create-notes ol li,
.mv-recipe-card .mv-create-wrapper .mv-create-notes ul li {
  background-color: #fbf5f1;
  border-radius: 5px;
  list-style-type: decimal !important;
  list-style-position: inside;
  margin: 0 0 15px 0;
  padding: 15px 10px;
}

.mv-recipe-card .mv-create-wrapper .mv-create-notes ol li::before,
.mv-recipe-card .mv-create-wrapper .mv-create-notes ul li[style="list-style-type: decimal;"]::before {
  display: none;
}

.mv-recipe-card .mv-create-nutrition {
  line-height: 1.3;
}

.mv-recipe-card .mv-create-nutrition-title:before {
  display: none !important;
}

.mv-recipe-card .mv-create-nutrition-box {
  color: #1a1a1a;
  margin-top: 8px;
}

.mv-recipe-card .mv-create-nutrition-box .mv-create-nutrition-item {
  opacity: 1;
  font-size: 20px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  margin-right: 4px;
}

.mv-recipe-card .mv-create-nutrition-box *,
.mv-recipe-card .mv-create-nutrition-box .mv-create-uppercase {
  font-weight: normal !important;
  text-transform: capitalize;
}

.mv-recipe-card .mv-create-nutrition-item:not(:last-child)::after {
  content: ", ";
}

.mv-recipe-card .mv-create-nutrition .mv-create-nutrition-label {
  display: inline;
  font-family: "Lato", sans-serif;
  font-size: inherit;
  font-weight: 700 !important;
  font-style: normal;
  letter-spacing: normal;
}

.mv-recipe-card .mv-create-nutrition-disclaimer {
  font-size: 16px !important;
  font-style: italic;
  letter-spacing: 0;
  margin: 12px 0 0 !important;
  opacity: 1 !important;
}

/* [ Categories tags ] */
.mv-recipe-card .mv-create-categories {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  margin-top: 16px;
  text-align: left !important;
  text-transform: capitalize;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
}

.mv-recipe-card .mv-create-copy {
  flex-basis: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .mv-recipe-card .mv-create-copy {
    flex-basis: auto;
    width: auto;
    margin-right: 8px;
  }
}
.mv-recipe-card .mv-create-category {
  margin-right: 8px;
}

.mv-recipe-card .mv-create-categories > * {
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .mv-recipe-card .mv-create-categories > * {
    margin-bottom: 0;
  }
}
/* [ Products ] */
.mv-recipe-card .mv-create-products-list {
  margin-top: 12px;
  list-style: none;
  text-align: center;
}

.mv-recipe-card .mv-create-products-list a.mv-create-products-link {
  color: inherit;
  text-decoration: none;
}

@media (hover: hover) {
  .mv-recipe-card .mv-create-products-list a.mv-create-products-link:hover {
    text-decoration: underline;
  }
}
.mv-recipe-card .mv-create-products-list .entry-title {
  margin-top: 8px;
}

/* [ Footer ] */
.mv-recipe-card .mv-create-footer {
  width: calc(100% + 20px);
  margin: 12px -10px 0;
  padding: 24px 10px 20px;
  background-color: #fdd958;
  color: #1a1a1a;
  text-align: center;
  opacity: 1;
}

@media (min-width: 768px) {
  .mv-recipe-card .mv-create-footer {
    width: calc(100% + 66px);
    margin-left: -33px;
    margin-right: -33px;
    margin-bottom: -5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 28px;
  }
}
.mv-recipe-card .mv-create-footer * {
  text-align: center;
}

.mv-recipe-card .mv-create-footer .mv-create-footer-flexbox {
  justify-content: center;
}

.mv-recipe-card .mv-create-footer .mv-create-social {
  background-color: transparent;
  display: block;
  margin: 0;
  padding: 0;
}

.mv-recipe-card .mv-create-footer .mv-create-social h3 {
  font-family: "5th Avenue", serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 !important;
}

@media (min-width: 768px) {
  .mv-recipe-card .mv-create-footer .mv-create-social h3 {
    font-size: 44px;
  }
}
.mv-recipe-card .mv-create-footer .mv-create-pinterest {
  display: none;
}

.mv-recipe-card .mv-create-footer .footer-logo {
  display: block;
  margin: 0 auto;
  width: 66px;
  height: 53px;
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/submark-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.mv-recipe-card .mv-create-footer h2.mv-create-social-title {
  color: inherit;
  font-size: 36px;
  margin: 12px 0 0 !important;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .mv-recipe-card .mv-create-footer h2.mv-create-social-title {
    font-size: 38px;
  }
}
.mv-recipe-card .mv-create-footer .mv-create-social-body {
  line-height: 1.2;
  margin: 8px 0 0 !important;
  text-align: center;
}

@media (min-width: 768px) {
  .mv-recipe-card .mv-create-footer .mv-create-social-body {
    font-size: 22px;
  }
}
.mv-recipe-card .mv-create-footer .mv-create-social-body a {
  color: inherit;
}

.mv-recipe-card .mv-create-footer .mv-create-footer-share {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
  width: 100%;
}

@media (min-width: 768px) {
  .mv-recipe-card .mv-create-footer .mv-create-footer-share {
    grid-template-columns: 1fr 1fr 1fr;
    width: auto;
  }
}
.mv-recipe-card .mv-create-footer .mv-create-footer-share a {
  border-radius: 5px;
  border: 3px solid #fff;
  background-color: #fff;
  color: #110e17;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1;
}

@media (hover: hover) {
  .mv-recipe-card .mv-create-footer .mv-create-footer-share a:hover {
    background-color: #1a1a1a;
    border: 3px solid #1a1a1a;
    color: #fff;
    transform: scale(0.95);
  }
}
.mv-recipe-card .mv-create-footer .mv-create-footer-share a:first-of-type {
  grid-column: 1/-1;
}

@media (min-width: 768px) {
  .mv-recipe-card .mv-create-footer .mv-create-footer-share a:first-of-type {
    grid-column: initial;
  }
}
.mv-recipe-card .mv-create-footer .mv-create-footer-share .icon-font {
  margin-right: 8px;
}

/* ---------- [ Block: Latest Posts ] ---------- */
.latest-posts {
  margin-top: 20px;
}

.latest-posts .more-link-container {
  margin-top: 12px;
}

.latest-posts .more-link {
  --color-primary: #0a7c80;
  --color-secondary: #1a1a1a;
}

@media (min-width: 1024px) {
  .latest-posts .more-link {
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
    color: #1a1a1a !important;
    min-height: initial;
    display: inline-flex;
    text-transform: capitalize;
    letter-spacing: normal;
    font-family: "Jost", sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
  }
}
@media (min-width: 1024px) and (hover: hover) {
  .latest-posts .more-link:hover {
    transform: none;
    background-color: transparent;
    color: #1a1a1a !important;
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: currentColor;
  }
}
.latest-posts .entry {
  flex-direction: row;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.latest-posts .entry-image-link {
  flex: 0 0 125px;
}

.latest-posts .entry-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
}

.latest-posts .entry-pretitle {
  font-size: 16px;
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
  font-weight: 800;
  background-color: #0a7c80;
  padding: 4px 6px;
  width: max-content;
}

.latest-posts .entry-pretitle .icon-font {
  font-size: 13px;
}

.latest-posts .entry-title {
  font-size: 24px;
}

@media (min-width: 1024px) {
  .latest-posts .entry-title {
    font-size: 22px;
  }
}
.latest-posts .entry-pretitle + .entry-title {
  margin-top: 4px;
}

.latest-posts .entry-description {
  margin-top: 8px;
}

/* small */
.latest-posts-small {
  margin-top: 16px;
  position: relative;
}

@media (min-width: 1024px) {
  .latest-posts-small {
    margin-top: 36px;
  }
}
.latest-posts-small .more-link-container {
  margin-top: 16px;
}

@media (min-width: 1024px) {
  .latest-posts-small .more-link-container {
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(calc(-100% - 12px));
  }
}
/* ---------- [ Block: Post Sections ] ---------- */
.block-posts-sections > .wrap {
  position: relative;
}

@media (min-width: 1024px) {
  .block-posts-sections .section-content {
    padding-right: 220px;
    text-align: left;
    margin-bottom: 0;
  }
}

.block-posts-sections .entry {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
}

.block-posts-sections .entry-title {
  font-weight: 600;
}
@media (max-width: 413px) {
  .block-posts-sections .entry-title {
    font-size: 16px;
  }
}

.block-posts-sections .entry-content {
  text-align: center;
  padding: 12px;
}

.block-posts-sections .more-link {
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
  --color-primary: #1a1a1a;
  --color-secondary: #fff;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 414px) {
  .block-posts-sections .more-link {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .block-posts-sections .more-link:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}
.block-posts-sections .more-link .icon-font {
  margin-left: 8px;
}
@media (min-width: 1024px) {
  .block-posts-sections .more-link {
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
    color: #1a1a1a !important;
    min-height: initial;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
  }
}
@media (min-width: 1024px) and (hover: hover) {
  .block-posts-sections .more-link:hover {
    transform: none;
    background-color: transparent;
    color: #1a1a1a !important;
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: currentColor;
  }
}

@media (min-width: 1024px) {
  .block-posts-sections .more-link-container {
    position: absolute;
    top: 4px;
    right: 0;
    margin-top: 0;
  }
}
/* Home Recent Variant */
.home-recent {
  position: relative;
  padding: 20px 0;
  background-color: #f2fcfc;
  text-align: center;
  border-bottom: 14px solid;
  border-image-source: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/pattern-diagonal.svg);
  border-image-repeat: repeat;
  border-image-slice: 14 8;
  border-image-outset: 8px 0;
}
@media (min-width: 1024px) {
  .home-recent {
    text-align: left;
    padding: 40px 0;
  }
}

.home-recent + .featured-content {
  margin-top: 36px !important;
}
@media (min-width: 1024px) {
  .home-recent + .featured-content {
    margin-top: 54px;
  }
}

/* Home Posts Sections */
.home-posts-sections {
  text-align: center;
}
@media (min-width: 1024px) {
  .home-posts-sections {
    text-align: left;
  }
}
.home-posts-sections.count-2, .home-posts-sections.count-4 {
  padding: 20px 0;
  background-color: #f2fcfc;
}
@media (min-width: 1024px) {
  .home-posts-sections.count-2, .home-posts-sections.count-4 {
    padding: 40px 0;
  }
}

@media (min-width: 1024px) {
  .home .block-posts-sections .section-content {
    display: flex;
    align-items: center;
  }
}

.home .block-posts-sections .section-title {
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
  font-size: 30px;
}
@media (min-width: 414px) {
  .home .block-posts-sections .section-title {
    font-size: 32px;
  }
}

@media (min-width: 1024px) {
  .home .block-posts-sections .section-pretitle {
    margin-right: 8px;
    white-space: nowrap;
  }
}

/* Home Posts Bottom */
.home-posts-bottom > .wrap {
  display: flex;
  flex-direction: column;
}
.home-posts-bottom .section-content {
  position: relative;
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding-right: 0;
  order: -1;
}
@media (min-width: 1024px) {
  .home-posts-bottom .section-content {
    padding-bottom: 8px;
  }
  .home-posts-bottom .section-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 2px;
    background-color: #fdd958;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .home-posts-bottom .entry-title {
    font-size: 16px;
  }
}
.home-posts-bottom .section-content .section-pretitle {
  margin: 0;
}
@media (min-width: 1024px) {
  .home-posts-bottom .entries-container {
    margin-top: 24px;
  }
}
.home-posts-bottom .more-link-container {
  order: -1;
}
@media (min-width: 1024px) {
  .home-posts-bottom .more-link-container {
    z-index: 1;
  }
}
.home-posts-bottom .more-link .icon-font {
  background-color: transparent;
}
@media (max-width: 769px) {
  .home-posts-bottom .more-link {
    background-color: #fdd958;
    color: #1a1a1a !important;
    border-color: #fdd958;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .home-posts-bottom .more-link {
    transform: rotate(8deg);
    color: #fff !important;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    font-size: 18px;
    background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/surprise-me.svg);
    background-size: 100% 100%;
    width: 118px;
    height: 118px;
    right: 20px;
  }
  .home-posts-bottom .more-link .contrast-bg {
    background-color: #1a1a1a;
  }
  .home-posts-bottom .more-link .icon-font {
    order: -1;
    color: #fdd958;
    font-size: 18px;
    margin: 0 0 8px;
  }
}
@media (min-width: 1024px) and (hover: hover) {
  .home-posts-bottom .more-link:hover {
    transform: scale(0.95) rotate(8deg);
    color: #fff !important;
    background-color: transparent;
    text-decoration: none;
  }
  .home-posts-bottom .more-link:hover .icon-font {
    color: #fff;
  }
}

/* Post footer sections */
/* Post Posts Sections */
.post-posts-sections {
  margin-top: 20px;
  text-align: center;
  padding: 20px 0;
  background-color: #f2fcfc;
}
@media (min-width: 1024px) {
  .post-posts-sections {
    text-align: left;
    margin-top: 40px;
    background-color: transparent;
    padding: 0;
  }
  .post-posts-sections > .wrap {
    border-top: 5px double;
    padding-top: 32px;
  }
}

@media (min-width: 1024px) {
  .post-posts-sections .section-content {
    display: flex;
    align-items: center;
  }
}

.post-posts-sections .section-title {
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .post-posts-sections .section-title {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .post-posts-sections .section-pretitle {
    margin-right: 18px;
    white-space: nowrap;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .post-posts-sections .entry-title {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .post-posts-sections .more-link-container {
    top: 36px;
  }
}

/*@import './post-sections__home-latest.scss';*/
.block-side-by-side {
  position: relative;
  padding: 25px 0;
  background-color: #f2fcfc;
}
@media (min-width: 1024px) {
  .block-side-by-side {
    padding: 40px 0;
  }
}

.block-side-by-side > .wrap {
  position: relative;
}
@media (min-width: 1024px) {
  .block-side-by-side > .wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
    grid-template-columns: 6fr 4fr;
  }
}

.block-side-by-side > .wrap > .section-content {
  grid-column: 1/-1;
  text-align: center;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .block-side-by-side > .wrap > .section-content {
    padding-right: 220px;
    display: flex;
    align-items: center;
    text-align: left;
    margin-bottom: 0;
  }
}

.block-side-by-side > .wrap > .section-content .section-pretitle {
  margin-right: 8px;
  white-space: nowrap;
}

.block-side-by-side > .wrap > .section-content .section-title {
  font-family: "Jost", sans-serif;
  text-align: center;
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .block-side-by-side > .wrap > .section-content .section-title {
    text-align: left;
    font-size: 32px;
  }
}
/* Large */
.block-side-by-side-large {
  margin-top: 0 !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .block-side-by-side-large {
    border-radius: 0;
  }
}
.block-side-by-side-large > .wrap {
  position: relative;
  height: 100%;
}
.block-side-by-side-large > .wrap::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: -8px;
  z-index: 1;
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/large-block-icons.svg);
  width: 38px;
  height: 39px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .block-side-by-side-large > .wrap::before {
    bottom: -20px;
    left: -28px;
  }
}
.block-side-by-side-large .section-image {
  height: 100%;
}
.block-side-by-side-large .section-image img {
  border-radius: 5px 5px 0 0;
}
@media (min-width: 768px) {
  .block-side-by-side-large .section-image img {
    top: 0;
    left: 0;
    border-radius: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
@media (min-width: 1024px) {
  .block-side-by-side-large .section-image img {
    position: absolute;
  }
}
.block-side-by-side-large .section-content,
.block-side-by-side-large .section-title {
  text-align: center;
}
.block-side-by-side-large .section-content {
  padding: 16px 12px 24px;
}
@media (min-width: 768px) {
  .block-side-by-side-large .section-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    max-width: 300px;
    padding: 16px 16px 0 0;
    background: #fff;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .block-side-by-side-large {
    margin-top: 0 !important;
    position: relative;
    border: 16px solid #fff;
    border-radius: 0;
  }
  .block-side-by-side-large .section-title {
    text-align: left;
    text-transform: capitalize;
  }
  .block-side-by-side-large .more-link {
    --color-secondary: #fff;
    --color-primary: #1a1a1a;
  }
  .block-side-by-side-large .more-link .icon-font {
    color: #fdd958;
    margin-left: 8px;
  }
}

/* Small */
.block-side-by-side .entries-container {
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .block-side-by-side .entries-container {
    margin-top: 0;
    --column-gap: 10;
  }
}

.block-side-by-side .entries-container .entry {
  display: flex;
  flex-direction: row;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 3px;
  overflow: hidden;
  background-color: #fff;
}
.block-side-by-side .entries-container .entry .entry-image-link {
  flex: 0 0 125px;
  height: 100%;
}
.block-side-by-side .entries-container .entry .entry-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .block-side-by-side .entries-container .entry .entry-image-link {
    height: 100%;
  }
}
.block-side-by-side .entries-container .entry .entry-content {
  flex-grow: 1;
  padding: 15px;
}
.block-side-by-side .entries-container .entry .entry-pretitle {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0;
}
.block-side-by-side .entries-container .entry .entry-title {
  text-align: left;
  font-size: 22px;
  margin-top: 4px;
}

.block-side-by-side > .wrap > .more-link-container {
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .block-side-by-side > .wrap > .more-link-container {
    margin-top: 0;
    position: absolute;
    top: 4px;
    right: 0;
  }
}
.block-side-by-side > .wrap > .more-link-container .more-link {
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
  --color-primary: #1a1a1a;
  --color-secondary: #fff;
  justify-content: space-between;
  display: flex;
}
@media (min-width: 414px) {
  .block-side-by-side > .wrap > .more-link-container .more-link {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .block-side-by-side > .wrap > .more-link-container .more-link:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}
@media (min-width: 1024px) {
  .block-side-by-side > .wrap > .more-link-container .more-link {
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
    color: #1a1a1a !important;
    min-height: initial;
    display: inline-flex;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
  }
}
@media (min-width: 1024px) and (hover: hover) {
  .block-side-by-side > .wrap > .more-link-container .more-link:hover {
    transform: none;
    background-color: transparent;
    color: #1a1a1a !important;
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: currentColor;
  }
}

/* On Category Archive */
.category .block-side-by-side {
  padding: 12px 0;
}
@media (min-width: 1024px) {
  .category .block-side-by-side {
    padding: 40px 0;
  }
}

/* ---------- [ Block: Circle Features ] ---------- */
.block-features-circles {
  text-align: center;
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .block-features-circles {
    margin-top: 40px;
  }
}
.block-features-circles .entries-container {
  --column-gap: 8;
}

.block-features-circles * + .entries-container {
  margin-top: 16px;
}

.block-features-circles .entry {
  position: relative;
}

.block-features-circles .entry-content {
  margin-top: 8px;
}

.block-features-circles .entry-pretitle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  height: 58px;
  width: 58px;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: lowercase;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(10deg);
  padding: 4px;
}

.block-features-circles .entry-title {
  margin-top: 3px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .block-features-circles .entry-title {
    font-size: 17px;
  }
}
@media (min-width: 1024px) {
  .block-features-circles .entry-title {
    font-size: 20px;
  }
}

.block-features-circles .entry-title-link {
  font-size: inherit;
  font-weight: inherit;
  text-align: center;
  display: block;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
}

.block-features-circles .entry-image {
  border-radius: 50%;
  padding: 7px;
  border: 4px solid #fdd958;
}

@media (hover: hover) {
  .block-features-circles .entry-image-link:hover {
    transform: scale(0.95);
  }
}
.block-features-circles .entry:first-child .entry-image {
  border-color: #cd4260;
}

.block-features-circles .entry:nth-child(3) .entry-image {
  border-color: #9be3e5;
}

.block-features-circles .entry:nth-child(4) .entry-image {
  border-color: #8c5a79;
}

.block-features-circles .entry:nth-child(5) .entry-image {
  border-color: #fad0d2;
}

.block-features-circles .entry:nth-child(6) .entry-image {
  border-color: #c5ecef;
}

/* Category Archive Variant */
.category .block-features-circles .section-title {
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
}

/* ---------- [ Block: Main Feature ] ---------- */
.block-main-feature {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media (min-width: 1024px) {
  .block-main-feature {
    margin-top: 40px;
    box-shadow: none;
    border-bottom: none;
  }

  .block-main-feature.home-feature {
    margin-top: 5px;
  }

  .block-main-feature > .wrap {
    display: flex;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }

  .block-main-feature > .wrap > * {
    flex: 1;
  }
}
.block-main-feature .section-image {
  object-fit: cover;
  width: calc(100% + 20px);
  margin: 0 -10px;
}

@media (min-width: 768px) {
  .block-main-feature .section-image {
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
}
@media (min-width: 1024px) {
  .block-main-feature .section-image {
    width: auto;
    margin: 0;
  }
}
.block-main-feature .section-image img {
  object-fit: cover;
}

@media (min-width: 1024px) {
  .block-main-feature .section-image img {
    height: 100%;
    width: 100%;
  }
}
.block-main-feature .section-content {
  padding: 18px 0 20px;
  background-color: #fff;
}

@media (min-width: 1024px) {
  .block-main-feature .section-content {
    padding: 24px 32px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.block-main-feature .section-description {
  margin-top: 8px;
}

/* ---------- [ Block: Video ] ---------- */
.block-video {
  text-align: center;
}

@media (min-width: 1024px) {
  .block-video {
    text-align: left;
  }
}
.block-video > .wrap {
  display: flex;
  flex-direction: column-reverse;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media (min-width: 1024px) {
  .block-video > .wrap {
    flex-direction: row-reverse;
    align-items: center;
    background-color: #fff;
  }
}
.block-video .section-content {
  background-color: #fff;
  padding: 18px 24px 24px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .block-video .section-content {
    padding: 24px;
  }

  .block-video .section-content::before {
    content: "";
    width: 132px;
    height: 117px;
    background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/embellishment-video.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -3px;
    right: 28px;
    transform: rotate(15deg);
    opacity: 0.03;
  }
}
.block-video .section-description {
  order: -1;
  margin: 8px;
}

@media (min-width: 1024px) {
  .block-video .section-description {
    margin: 12px 0 0;
  }
}
.block-video .section-title {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
}

.block-video .section-pretitle + .section-title {
  margin-top: 4px;
}

.block-video iframe {
  width: 100%;
}

.block-video .more-link-container {
  margin-top: 12px;
}

.block-video .more-link {
  display: inline-flex;
}

@media (max-width: 1023px) {
  .block-video .more-link {
    --color-secondary-hover: #fff;
    border-color: var(--color-secondary);
    background-color: transparent;
  }
}
@media (max-width: 1023px) and (hover: hover) {
  .block-video .more-link:hover {
    background-color: var(--color-secondary);
  }
}
.block-video .entries-container {
  margin: 0;
}

@media (min-width: 1024px) {
  .block-video .entries-container {
    flex: 0 0 538px;
    padding: 24px 0 24px 24px;
  }
}
.block-video .entry {
  margin: 0;
  padding: 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .video-and-manual .side-by-side-posts {
    margin-top: 24px;
  }
}
/* ---------- [ Block: Posts Top Ten ] ---------- */
.posts-top-ten {
  margin-top: 20px;
  text-align: center;
}

@media (min-width: 1024px) {
  .posts-top-ten {
    margin-top: 40px;
    text-align: left;
  }
}
.posts-top-ten .section-pretitle {
  font-style: italic;
  text-transform: lowercase;
  font-weight: 700;
  font-size: 24px;
}

.posts-top-ten .section-title {
  font-size: 36px;
  margin-top: 6px;
}

.posts-top-ten .entry {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  text-align: center;
}

.posts-top-ten .entry-content {
  position: relative;
  flex: 1;
}

.posts-top-ten .entry .entry-title-link {
  z-index: 1;
  font-size: 20px;
  display: block;
  padding: 14px 8px 12px;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
  position: relative;
}

.posts-top-ten .entry-pretitle,
.posts-top-ten .entry-title-link::before {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  font-family: "Jost", sans-serif;
  font-size: 24px;
  font-weight: 800;
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
}

.posts-top-ten .entry-description {
  text-align: center;
}

.posts-top-ten .entries-container {
  margin-top: 14px;
}

@media (min-width: 1024px) {
  .posts-top-ten .entries-container {
    position: relative;
    margin-top: 8px;
  }
}
/* Auto Pretitles */
.posts-top-ten__auto {
  counter-reset: top-ten;
}

.posts-top-ten__auto .entry {
  counter-increment: top-ten;
}

.posts-top-ten__auto .entry-title-link {
  position: relative;
}

.posts-top-ten__auto .entry-title-link::before {
  content: counter(top-ten);
  z-index: -1;
}

/* Index Page Variation */
.index-posts-top-ten {
  text-align: center;
}

/* Home Page Variation */
.home-posts-top-ten {
  background-color: #fdd958;
  padding: 24px 0;
}

@media (min-width: 1024px) {
  .home-posts-top-ten {
    padding: 40px 0 40px;
  }
}
.home-posts-top-ten .entry-image-link {
  padding: 16px 16px 0;
}

/* Last Entry */
.home-posts-top-ten .entry:last-of-type {
  background-color: #0ca2a7;
  color: #fff;
}

@media (min-width: 1024px) {
  .home-posts-top-ten .entry:last-of-type {
    background-color: transparent;
    color: #1a1a1a;
    position: absolute;
    right: 0;
    top: -38px;
    width: auto;
    margin: 0;
    box-shadow: none;
  }
}
.home-posts-top-ten .entry:last-of-type .entry-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

@media (min-width: 1024px) {
  .home-posts-top-ten .entry:last-of-type .entry-content {
    flex-direction: row;
    padding: 0;
    align-items: center;
  }
}
.home-posts-top-ten .entry:last-of-type .entry-pretitle {
  height: 62px;
  width: 62px;
  font-size: 36px;
  position: static;
  transform: none;
  color: #0ca2a7;
}

@media (min-width: 1024px) {
  .home-posts-top-ten .entry:last-of-type .entry-pretitle {
    height: 32px;
    width: 32px;
    font-size: 20px;
    color: #fff;
    background-color: #0ca2a7;
    margin-right: 8px;
  }
}
.home-posts-top-ten .entry:last-of-type .entry-title-link {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.45;
  padding: 0;
  margin-top: 12px;
}

@media (min-width: 1024px) {
  .home-posts-top-ten .entry:last-of-type .entry-title-link {
    font-size: 22px;
    margin: 0;
  }
}
/* ---------- [ Block: Products ] ---------- */
.block-products {
  margin-top: 20px;
  background-color: #e2e2e2;
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/bg-swirls.svg);
  background-size: 1000px;
  text-align: center;
}

.block-products > .wrap {
  padding: 32px 0;
}

@media (min-width: 1024px) {
  .block-products > .wrap {
    padding: 44px 0;
    display: flex;
    flex-direction: column;
  }
}
.block-products .section-title::before {
  content: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/flourish-black.svg);
  display: block;
  margin: 0 auto 10px;
  width: 44px;
  height: 24px;
}

.block-products > .wrap > .more-link-container {
  margin-top: 16px;
}

@media (min-width: 1024px) {
  .block-products > .wrap > .more-link-container {
    margin-top: 8px;
  }
}
.block-products > .wrap > .more-link-container .more-link {
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
  --color-primary: #1a1a1a;
  --color-secondary: #fff;
  font-size: 20px;
}

@media (min-width: 1024px) {
  .block-products > .wrap > .more-link-container .more-link {
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
    color: #1a1a1a !important;
    min-height: initial;
    display: inline-flex;
  }
}
@media (min-width: 1024px) and (hover: hover) {
  .block-products > .wrap > .more-link-container .more-link:hover {
    transform: none;
    background-color: transparent;
    color: #1a1a1a !important;
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: currentColor;
  }
}
.block-products .entries-container {
  margin-top: 16px;
}

@media (min-width: 1024px) {
  .block-products .entries-container {
    order: 1;
  }
}
.block-products .entry {
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  padding: 32px;
  flex-direction: row;
  align-items: center;
}

@media (min-width: 1024px) {
  .block-products .entry {
    text-align: left;
    overflow: hidden;
  }
}
.block-products .entry-image-link {
  flex: 0 0 132px;
  margin-right: 24px;
}

@media (min-width: 1024px) {
  .block-products .entry-image-link {
    flex: 0 0 206px;
    margin-bottom: -64px;
    transform: rotate(-5deg);
  }
}
.block-products .entry-pretitle img {
  height: 20px;
  display: inline-block;
}

.block-products .entry-title {
  font-size: 32px;
  font-weight: 800;
}

@media (min-width: 768px) {
  .block-products .entry-title {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  .block-products .entry-title {
    font-size: 32px;
    margin-top: 2px;
  }

  .block-products .entry .more-link-container {
    margin-top: 10px;
  }
}
.block-products .entry .more-link {
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
  display: inline-flex;
}

/* ---------- [ Block: Dual Button Feature ] ---------- */
.block-dual-button-feature {
  margin-top: 20px;
  text-align: center;
}

@media (min-width: 1024px) {
  .block-dual-button-feature {
    margin-top: 40px;
    text-align: left;
  }
}
.block-dual-button-feature > .wrap {
  padding: 42px 16px 0;
  position: relative;
}

.block-youtube-button {
  position: absolute;
  top: 0;
  left: 10px;
  transform: rotate(-9deg);
  z-index: 1;
}

.block-youtube-button .more-link-container {
  margin: 0;
}

.block-youtube-button .more-link {
  border: none;
  border-radius: 50%;
  width: 136px;
  height: 136px;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 16px;
  flex-direction: column;
}

@media (hover: hover) {
  .block-youtube-button .more-link:hover {
    background-color: #1a1a1a;
    color: #fff;
  }
}
.block-youtube-button .more-link .icon-font-social {
  font-size: 32px;
  margin: 0 0 6px;
}

.block-youtube-button .more-link .icon-font:not(.icon-font-social) {
  color: #fdd958;
  margin: 6px 0 0;
}

@media (min-width: 1024px) {
  .block-youtube-feature > .wrap {
    display: flex;
    align-items: center;
  }
}
.block-youtube-feature .section-image {
  position: relative;
}

@media (min-width: 1024px) {
  .block-youtube-feature .section-image {
    width: 564px;
    flex-shrink: 0;
  }
}
.block-youtube-feature .section-image::before {
  content: "";
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/bg-dots.svg);
  background-size: contain;
  display: block;
  height: 105px;
  width: 80px;
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: -1;
}

.block-youtube-feature .section-content {
  margin-top: 16px;
}

@media (min-width: 1024px) {
  .block-youtube-feature .section-content {
    margin: 20px 44px;
  }
}
.block-youtube-feature .section-pretitle {
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
}

.block-youtube-feature .section-title {
  margin-top: 8px;
}

.block-youtube-feature .more-link {
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
  font-size: 20px;
  --color-primary: #0ca2a7;
  --color-secondary: #fff;
  display: inline-flex;
}

/* Index Variation */
.index-dual-button-feature {
  position: relative;
}

.index-dual-button-feature::before {
  content: "";
  background-color: #e2e2e2;
  position: absolute;
  height: 100%;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.index-dual-button-feature > .wrap {
  padding-top: 32px;
  padding-bottom: 32px;
}

@media (min-width: 1024px) {
  .index-dual-button-feature > .wrap {
    padding: 64px 0;
  }
}
.index-dual-button-feature .block-youtube-button {
  top: -8px;
}

@media (min-width: 1024px) {
  .index-dual-button-feature .block-youtube-button {
    top: 24px;
    left: -48px;
  }
}
.index-dual-button-feature .block-youtube-feature {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.index-dual-button-feature .block-youtube-feature .section-content {
  margin-top: 0;
  padding: 16px 16px 24px;
}

@media (min-width: 1024px) {
  .index-dual-button-feature .block-youtube-feature .section-content {
    padding: 0;
  }
}
/* ---------- [ Block: Index Links ] ---------- */
.search-links {
  position: relative;
  padding-bottom: 20px;
}

@media (min-width: 1024px) {
  .search-links {
    padding: 40px 0;
  }
}
.search-links::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100vw;
  height: calc(100% - 88px);
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

@media (min-width: 1024px) {
  .search-links::before {
    height: 100%;
  }
}
.search-links > .wrap {
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  padding: 20px;
  background-color: #fff;
  position: relative;
}

@media (min-width: 1024px) {
  .search-links > .wrap {
    padding: 32px 90px;
  }

  .search-links > .wrap > .flexbox {
    align-items: center;
  }
}
.index-search-title .section-title {
  font-size: 28px;
}

@media (min-width: 1024px) {
  .index-search-title .section-title {
    font-size: 32px;
    font-weight: 400;
  }
}
@media (max-width: 1023px) {
  .search-links .search-form-wrapper {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .search-links .search-form-wrapper {
    padding-right: 84px;
  }
}
.search-links .search-form {
  border: 3px solid;
  height: 62px;
  margin-top: 12px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .search-links .search-form {
    height: 52px;
    margin-top: 16px;
  }
}
.search-links .search-form input {
  font-size: 24px;
}

@media (min-width: 1024px) {
  .index-links {
    text-align: left;
  }
}
.index-links .section-title {
  display: none;
}

@media (min-width: 1024px) {
  .index-links .section-title {
    display: block;
    font-size: 22px;
  }
}
.index-links .entry-content,
.index-links .entry-title {
  height: 100%;
}

.index-links .entry-title-link {
  font-weight: 600;
  padding: 8px;
  background-color: #fdd958;
  border-radius: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

@media (min-width: 1024px) {
  .index-links .entry-title-link {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    display: block;
  }
}
@media (min-width: 1024px) {
  .block-links .entries-container {
    --column-gap: 8;
  }

  .block-links .entry {
    box-shadow: none !important;
  }
}
/* Home Links */
.home-links .entries-container {
  margin-top: 16px;
}
.home-links .entry {
  box-shadow: none;
}
@media (max-width: 413px) {
  .home-links .entry {
    width: calc(100% - (var(--column-gap) * 2px));
  }
}
.home-links .entry-content {
  padding: 0;
  height: 100%;
}
.home-links .entry-title {
  height: 100%;
}
.home-links .entry-title-link {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #fdd958;
  color: #1a1a1a;
  border-radius: 5px;
  min-height: 46px;
  padding: 8px 60px 8px 12px;
  overflow: hidden;
  text-decoration: none;
  text-align: left;
  font-size: 22px;
}
.home-links .entry-title-link::after {
  content: "";
  font-family: "Icons" !important;
  position: absolute;
  right: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
  width: 54px;
  height: 100%;
  background-color: #efce15;
  transition: all 200ms;
}
@media (hover: hover) {
  .home-links .entry-title-link:hover {
    background-color: #1a1a1a !important;
    color: #fff !important;
  }
  .home-links .entry-title-link:hover::after {
    background-color: #1a1a1a !important;
  }
}
.home-links .entry:first-child .entry-title-link {
  background-color: #cd4260;
  color: #fff;
}
.home-links .entry:first-child .entry-title-link::after {
  background-color: #b52d4b;
}
.home-links .entry:nth-child(3) .entry-title-link {
  background-color: #9be3e5;
}
.home-links .entry:nth-child(3) .entry-title-link::after {
  background-color: #77d4d6;
}
.home-links .entry:nth-child(4) .entry-title-link {
  background-color: #0ca2a7;
  color: #fff;
}
.home-links .entry:nth-child(4) .entry-title-link::after {
  background-color: #048b90;
}

/* ---------- [ Block: Post Highlights ] ---------- */
@media (min-width: 1024px) {
  .block-highlights {
    margin-top: 24px !important;
  }
}

.block-highlights .entry {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
}

.block-highlights .entry-content {
  padding: 12px;
  text-align: center;
}

.block-highlights .entry-pretitle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  height: 58px;
  width: 58px;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: lowercase;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(10deg);
  padding: 4px;
  top: 12px;
  right: 12px;
}

.block-highlights .entry-title {
  font-weight: 700;
}
@media (min-width: 414px) {
  .block-highlights .entry-title {
    font-size: 22px;
  }
}

.popular-and-latest .home-popular {
  margin-bottom: 25px;
}

@media (min-width: 1024px) {
  .popular-and-latest {
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
  }

  .popular-and-latest .home-popular {
    margin-bottom: 16px;
  }

  .popular-and-latest .block-posts-sections > .wrap {
    display: flex;
    flex-direction: column;
  }

  .popular-and-latest .section-content {
    display: contents;
  }

  .popular-and-latest .section-title {
    order: -1;
    text-align: center;
  }

  .popular-and-latest .home-popular {
    padding-right: 24px;
    position: relative;
  }

  .popular-and-latest .home-popular::after {
    content: "";
    position: absolute;
    right: -12px;
    bottom: -40px;
    border-right: 1px solid #f0f0f0;
    height: 100%;
  }

  .popular-and-latest .home-latest {
    padding-left: 24px;
  }

  .popular-and-latest .block-posts-sections .more-link-container {
    order: -1;
    margin-top: 3px;
    position: static;
  }

  .popular-and-latest .block-posts-sections .more-link {
    display: inline-flex;
    border-bottom: 4px solid #0ca2a7;
    padding-bottom: 8px;
  }
}
@media (min-width: 1024px) and (hover: hover) {
  .popular-and-latest .block-posts-sections .more-link:hover {
    text-decoration: none;
    border-color: #1a1a1a;
  }
}
.block-feature-two-buttons-feature {
  background-color: #0ca2a7;
  text-align: center;
}

.block-feature-two-buttons-feature > .wrap {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  padding-top: 38px;
}

@media (min-width: 768px) {
  .block-feature-two-buttons-feature > .wrap {
    flex-direction: row;
    justify-content: center;
    padding-top: 44px;
    padding-bottom: 48px;
  }
}
.block-feature-two-buttons-feature > .wrap > .section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}

@media (min-width: 768px) {
  .block-feature-two-buttons-feature > .wrap > .section-content {
    max-width: 320px;
  }
}
.block-feature-two-buttons-feature .section-content > * {
  grid-column: span 2;
}

.block-feature-two-buttons-feature .embellishment-asterisk {
  display: block;
  margin: 0 auto 10px;
}

.block-feature-two-buttons-feature .section-pretitle {
  letter-spacing: normal;
  margin-bottom: 8px;
  text-transform: capitalize;
  font-size: 22px;
}

.block-feature-two-buttons-feature .section-title {
  font-size: 44px;
  text-transform: uppercase;
  letter-spacing: 0.05;
}

.block-feature-two-buttons-feature .section-image {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .block-feature-two-buttons-feature .section-image {
    flex: 0 0 40%;
    margin-top: auto;
    margin-bottom: -48px;
    margin-right: 16px;
  }
}
.block-feature-two-buttons-feature .more-link-container,
.block-feature-two-buttons-feature .block-feature-two-buttons-button {
  grid-column: span 1;
}

.block-feature-two-buttons-feature .more-link-container {
  margin-top: 12px;
}

.block-feature-two-buttons-feature > .wrap > .section-content > .more-link-container .more-link {
  --color-secondary-hover: #fff;
  border-color: var(--color-secondary);
  background-color: transparent;
  --color-secondary: #1a1a1a;
}
@media (hover: hover) {
  .block-feature-two-buttons-feature > .wrap > .section-content > .more-link-container .more-link:hover {
    background-color: var(--color-secondary);
  }
}

.block-feature-two-buttons-button .more-link {
  --color-primary: #1a1a1a;
  --color-secondary: #fff;
}

.video-and-manual .side-by-side-posts .entry {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: 0;
  border-radius: 0;
}

/* ---------- [ Testimonials ] ---------- */
.testimonials__small-circle .entry-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonials__small-circle .section-content {
  text-align: center;
}

.testimonials__small-circle .section-content + .entries-container {
  margin-top: 15px;
}

.testimonials__small-circle .entry {
  position: relative;
  padding: 20px 16px 20px 88px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-left: 24px;
}

@media (min-width: 768px) {
  .testimonials__small-circle .entry {
    padding: 30px 16px 30px 118px;
    width: calc(1 / 2 * 100% - 36px);
  }
}
.testimonials__small-circle .entry-image-link {
  display: block;
  height: 88px;
  width: 88px;
  position: absolute;
  top: 14px;
  left: -16px;
  border: 6px solid #fff;
  border-radius: 50%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .testimonials__small-circle .entry-image-link {
    height: 115px;
    width: 115px;
    left: -20px;
    top: 24px;
  }
}
.testimonials__small-circle .entry-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.testimonials__small-circle .entry-pretitle {
  font-size: 16px;
  line-height: 1;
}

.testimonials__small-circle .entry-pretitle .icon-font {
  margin-right: 4px;
}

.testimonials__small-circle .entry .entry-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 8px;
  padding: 0;
}

@media (min-width: 1024px) {
  .testimonials__small-circle .entry .entry-title {
    font-size: 26px;
  }
}
.testimonials__small-circle .entry .entry-description {
  font-size: 20px;
  margin-top: 8px;
}

.testimonials__small-circle .entry .entry-description p {
  margin: 0;
}

.testimonials__small-circle .entry .more-link-container {
  margin-top: 4px;
}

.testimonials__small-circle .entry .more-link {
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: #1a1a1a !important;
  min-height: initial;
  display: inline-flex;
  margin-top: 0;
}
@media (hover: hover) {
  .testimonials__small-circle .entry .more-link:hover {
    transform: none;
    background-color: transparent;
    color: #1a1a1a !important;
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: currentColor;
  }
}

/* ---------- [ Block: Search ] ---------- */
.home-search {
  text-align: center;
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-right: -10px;
  padding-left: 10px;
  padding-right: 10px;
  color: #fff;
  background-color: #fdd958;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .home-search {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1024px) {
  .home-search {
    width: initial;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 1024px) {
  .home-search {
    flex: 1;
    padding: 0;
    background-color: transparent;
    color: #1a1a1a;
    margin-right: 40px;
  }
}
.home-search .section-pretitle {
  font-size: 18px;
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
}

.home-search .section-title {
  font-size: 32px;
  margin-top: 8px;
}

@media (min-width: 1024px) {
  .home-search .section-title {
    font-size: 26px;
    line-height: 1.3;
  }
}
.home-search .search-form {
  font-size: 22px;
  margin-top: 16px;
  height: 55px;
  border-radius: 5px;
  color: #1a1a1a;
}

@media (min-width: 1024px) {
  .home-search .search-form {
    font-size: 20px;
    margin-top: 12px;
    border: 2px solid;
    border-radius: 29px;
    flex: 1;
  }
}
.home-search .search-submit-icon {
  font-size: 24px;
}

/* ---------- [ Block: Text and Nav ] ---------- */
.home-text-and-nav {
  background-color: #fbf5f1;
  padding: 20px 0 34px;
  text-align: center;
}

@media (min-width: 1024px) {
  .home-text-and-nav {
    padding: 40px 0;
  }
}
.home-text-and-nav .section-title {
  font-family: "Jost", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .home-text-and-nav .section-title {
    font-size: 36px;
  }
}
.index-nav .archive-menu-title {
  text-align: center;
  line-height: 1;
  font-family: "Jost", sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: lowercase;
  max-width: 144px;
}

.index-nav .menu {
  --menu-level-1-border-width: 1px;
  font-weight: 600;
  display: grid;
  gap: 12px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .index-nav .menu {
    --menu-level-2-bg-color: #fff;
    --menu-level-2-border-color: #fff;
    --menu-level-2-txt-color: #1a1a1a;
  }
}
@media (max-width: 1023px) {
  .index-nav .menu {
    display: block;
    gap: initial;
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .index-nav .menu {
    --menu-padding-x: 20px;
    grid-auto-columns: minmax(min-content, 300px);
    grid-auto-flow: column;
  }
}
.index-nav .menu .sub-menu {
  font-size: 18px;
}

@media (min-width: 1024px) {
  .index-nav .menu > .menu-item {
    border-radius: 5px;
    overflow: visible;
    box-shadow: none;
  }
}
@media (min-width: 1024px) {
  .index-nav .menu > .menu-item > button {
    border-radius: 5px;
    border: 2px solid #1a1a1a;
    padding: 8px 12px 8px 20px;
    min-height: 48px;
    font-weight: 800;
  }

  .index-nav .menu > .menu-item.sfHover > button {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-color: #1a1a1a;
    border-bottom: none;
  }
}
@media (min-width: 1024px) {
  .index-nav .menu > .menu-item > .sub-menu {
    transform: none;
    left: 0;
    top: 100%;
    bottom: auto;
    width: 100%;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 2px solid #1a1a1a;
    border-top: none;
    overflow: hidden;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
  }
}
.block-icons .link-icon {
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/icons/crafts.svg);
}
.block-icons .link-icon.icon-crafts {
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/icons/crafts.svg);
}
.block-icons .link-icon.icon-family {
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/icons/family.svg);
}
.block-icons .link-icon.icon-holidays {
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/icons/holidays.svg);
}
.block-icons .link-icon.icon-photography {
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/icons/photography.svg);
}
.block-icons .link-icon.icon-recipes {
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/icons/recipes.svg);
}
.block-icons .link-icon.icon-sewing {
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/icons/sewing.svg);
}

/* ---------- [ Block: Icon Links ] ---------- */
.block-icons,
.home .block-icons {
  text-align: center;
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .block-icons,
.home .block-icons {
    margin-top: 20px;
  }
}

.block-icons .entries-container {
  justify-content: center;
  --column-gap: 8;
}

.block-icons .link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .block-icons .link-item {
    position: relative;
    justify-content: center;
  }

  .block-icons .link-item::after {
    content: "";
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 1px;
    background-color: #dedad0;
  }

  .block-icons .link-item:last-child:after {
    display: none;
  }
}
@media (hover: hover) {
  .block-icons .link-item:hover {
    text-decoration-color: currentColor;
    text-decoration-thickness: 2px;
  }
}
.block-icons .link-icon {
  background-color: #fff;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  height: 48px;
  width: 48px;
  display: block;
  transition: all 200ms;
}

.block-icons .link-text {
  font-family: "Jost", sans-serif;
  display: block;
  margin-top: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  font-size: 18px;
}

@media (hover: hover) {
  .block-icons .link-item:hover .link-icon {
    transform: rotate(5deg);
  }
}
/* ---------- [ Block: Search and Icons ] ---------- */
.search-and-icons > .wrap {
  background-color: #fff;
  padding: 20px 12px;
}

@media (min-width: 1024px) {
  .search-and-icons > .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    position: relative;
  }
}
.search-and-icons .search-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .search-and-icons .search-form-wrapper {
    min-width: 70%;
    width: 70%;
    margin: 0 auto 20px;
  }

  .search-and-icons .search-form-wrapper .search-form {
    flex-grow: 1;
  }
}
@media (min-width: 1024px) {
  .search-and-icons .search-form-wrapper {
    flex-direction: column;
    margin: 0 24px 0 0;
    min-width: 255px;
    width: auto;
  }
}
.search-and-icons .search-form-wrapper .search-form-input {
  height: 50px;
  font-size: 20px;
}

.search-and-icons .embellishment-asterisk {
  margin-right: 16px;
}

@media (min-width: 1024px) {
  .search-and-icons .embellishment-asterisk {
    margin: 0 0 16px;
  }
}
@media (min-width: 1024px) {
  .search-and-icons .entries-container {
    margin-top: 0;
  }
}
/* ---------- [ Block: Text and Icons ] ---------- */
.text-and-icons {
  background-color: #0a7c80;
  text-align: center;
}

.text-and-icons > .wrap {
  padding: 20px 0;
}

@media (min-width: 1024px) {
  .text-and-icons > .wrap {
    padding: 28px 0;
    display: flex;
    align-items: center;
  }
}
.text-and-icons .section-title {
  text-transform: lowercase;
  font-size: 28px;
}

@media (min-width: 1024px) {
  .text-and-icons .section-title {
    max-width: 206px;
  }
}
.text-and-icons .block-icon-links {
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .text-and-icons .block-icon-links {
    flex: 1;
  }
}
.text-and-icons .entries-container {
  margin-top: 10px;
  flex: 1;
}

@media (min-width: 1024px) {
  .text-and-icons .entries-container {
    justify-content: space-between;
    margin-top: 0;
  }
}
.text-and-icons .link-item {
  background-color: rgba(255, 255, 255, 0.27);
  border-radius: 5px;
  padding: 20px 16px;
  justify-content: center;
}

@media (min-width: 1024px) {
  .text-and-icons .link-item {
    background-color: transparent;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .text-and-icons .link-item {
    flex-direction: row;
    width: auto;
  }
}
.text-and-icons .link-icon {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: none;
  width: 64px;
  height: 64px;
}

@media (min-width: 1200px) {
  .text-and-icons .link-icon {
    flex-shrink: 0;
    margin-right: 16px;
  }
}
.text-and-icons .link-text {
  font-size: 22px;
}

@media (min-width: 768px) {
  .text-and-icons .link-text {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .text-and-icons .link-text {
    margin-top: 0;
    text-align: left;
  }
}
.text-and-icons .icon-font {
  font-size: 14px;
}

/* Recipe index variant */
.index-text-and-icons {
  margin-top: 20px;
  background-color: #0a7c80;
  color: #fff;
}

@media (min-width: 1024px) {
  .index-text-and-icons {
    margin-top: 40px;
  }
}
@media (max-width: 1023px) {
  .index-text-and-icons .link-item {
    background-color: #406467;
  }
}
.index-text-and-icons .icon-font {
  color: #0a7c80;
}

.index-text-and-icons .block-icon-links {
  --color-text-underline: currentColor;
}

@media (min-width: 1024px) {
  .index-text-and-icons .section-title {
    font-size: 24px;
  }
}
/* ---------- [ Block: Category Links ] ---------- */
.category-links {
  text-align: center;
  margin-top: 20px;
  background-color: #0a7c80;
  color: #fff;
}

@media (min-width: 1024px) {
  .category-links {
    margin-top: 40px;
  }
}
.category-links > .wrap {
  padding: 24px 0 32px;
}

@media (min-width: 1024px) {
  .category-links > .wrap {
    padding: 32px 0;
    display: flex;
    align-items: center;
  }
}
.category-links .section-title {
  font-size: 28px;
  text-transform: lowercase;
}

@media (min-width: 1024px) {
  .category-links .section-title {
    font-size: 24px;
    max-width: 140px;
  }
}
.category-links .entries-container {
  margin: 14px -6px -12px;
  justify-content: center;
}

@media (min-width: 1024px) {
  .category-links .entries-container {
    margin-top: 0;
    flex: 1;
  }
}
.category-links .entry {
  width: auto;
  margin: 0 6px 12px;
}

@media (min-width: 1024px) {
  .category-links .entry {
    flex: 1 1 auto;
  }
}
.category-links .entry-title-link {
  border: 2px solid #0a7c80;
  border-radius: 5px;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  display: block;
}

@media (hover: hover) {
  .category-links .entry-title-link:hover {
    background-color: #fff;
    color: #1a1a1a;
    border-color: #fff;
    transform: scale(1.05);
  }
}
/* Home Bio */
@media (min-width: 768px) {
  .home-bio > .wrap {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .home-bio {
    display: flex;
    justify-content: center;
  }

  .home-bio > .wrap {
    max-width: 900px;
  }
}
.home-bio .section-image {
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}
.home-bio .section-image img {
  --clip-path-distance: 65px;
  clip-path: polygon(50% 0%, 100% var(--clip-path-distance), 100% calc(100% - var(--clip-path-distance)), 50% 100%, 0% calc(100% - var(--clip-path-distance)), 0% var(--clip-path-distance));
}

@media (min-width: 768px) {
  .home-bio .section-image {
    flex-shrink: 0;
    width: auto;
    max-width: 360px;
    padding: 0;
  }
}
.home-bio .section-image::before {
  content: "";
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/about-emblem.svg);
  height: 88px;
  width: 88px;
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 5px;
  left: 0;
  z-index: 1;
}
@media (min-width: 414px) {
  .home-bio .section-image::before {
    height: 114px;
    width: 114px;
  }
}
@media (min-width: 1024px) {
  .home-bio .section-image::before {
    top: 34px;
    left: -43px;
  }
}

.home-bio .section-content {
  padding: 10px 0 0;
  text-align: left;
}

@media (min-width: 768px) {
  .home-bio .section-content {
    padding: 0;
    flex-grow: 1;
    padding: 0 0 0 50px;
    max-width: 620px;
  }
}
.home-bio .section-title {
  margin-top: 4px;
  font-size: 32px;
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
}
@media (min-width: 414px) {
  .home-bio .section-title {
    font-size: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .home-bio .section-title {
    font-size: 36px;
  }
}

.home-bio .section-description {
  margin-top: 6px;
}

.home-bio .more-link {
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
}
@media (min-width: 414px) {
  .home-bio .more-link {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .home-bio .more-link:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}
@media (min-width: 768px) {
  .home-bio .more-link {
    color: #fff;
    --color-secondary: #fff;
    --color-primary: #1a1a1a;
  }
  .home-bio .more-link:not(:hover) .icon-font {
    color: #fdd958;
  }
}

/* ---------- [ Block: Feature Icons ] ---------- */
.feature-icons {
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .feature-icons {
    margin-top: 40px;
    position: relative;
  }

  .feature-icons::before {
    content: "";
    position: absolute;
    background-color: #e2e2e2;
    height: 100%;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
@media (min-width: 1024px) {
  .feature-icons > .wrap {
    display: flex;
    padding: 40px 0;
  }
}
@media (min-width: 1024px) {
  .bio-and-key > .wrap {
    display: flex;
    position: relative;
  }

  .bio-and-key > .wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/submark-gray.svg);
    height: 304px;
    width: 288px;
    background-size: 100% 100%;
    transform: translate(64%, 58%);
    z-index: -1;
  }

  .home-key {
    flex: 1 0 380px;
  }
}
/* ---------- [ Block: Home Subscribe ] ---------- */
.home-subscribe {
  background-color: #0ca2a7;
  margin-top: 20px;
  text-align: center;
}
@media (min-width: 1024px) {
  .home-subscribe {
    margin-top: 40px;
    text-align: left;
  }
}

.home-subscribe > .wrap {
  padding: 24px 0 28px;
}

@media (min-width: 1024px) {
  .home-subscribe > .wrap {
    padding: 35px 0;
  }
}
.home-subscribe .section-content {
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .home-subscribe .section-content {
    max-width: initial;
    display: grid;
    grid-template-columns: 420px 1fr;
    grid-template-rows: min-content auto;
  }
}

.home-subscribe .section-pretitle {
  margin-top: 0;
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .home-subscribe .section-pretitle {
    margin-top: 0;
    grid-column: 1/2;
    grid-row: 1/1;
    align-self: end;
  }
}
.home-subscribe .section-pretitle .icon-font {
  margin-right: 8px;
}

.home-subscribe .section-title {
  margin-top: 4px;
  color: #fff;
  font-size: 32px;
  text-align: center;
}
@media (min-width: 1024px) {
  .home-subscribe .section-title {
    grid-column: 1/2;
    grid-row: 2/2;
    align-self: start;
  }
}

.home-subscribe .section-description,
.footer-subscribe .section-description {
  color: #fff;
}
.home-subscribe .section-description p,
.footer-subscribe .section-description p {
  font-family: "Jost", sans-serif;
}

@media (min-width: 1024px) {
  .home-subscribe .section-description {
    max-width: 660px;
  }
}

.home-subscribe .section-description > p:first-child,
.footer-subscribe .section-description > p:first-child {
  margin-bottom: 12px;
}

.home-subscribe .section-description .wpforms-form,
.footer-subscribe .section-description .wpforms-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px 0;
}

.home-subscribe .section-description .wpforms-field-container,
.footer-subscribe .section-description .wpforms-field-container {
  display: contents;
}

.home-subscribe .section-description .wpforms-container .wpforms-submit-container,
.footer-subscribe .section-description .wpforms-container .wpforms-submit-container {
  margin-top: 0;
}

@media (min-width: 768px) {
  .home-subscribe .section-description .wpforms-form,
.footer-subscribe .section-description .wpforms-form {
    grid-template-columns: 1fr 1fr auto;
  }

  .home-subscribe .section-description .wpforms-form {
    grid-template-columns: 224px 224px auto;
  }

  .home-subscribe .section-description .wpforms-container .wpforms-submit-container,
.footer-subscribe .section-description .wpforms-container .wpforms-submit-container {
    grid-column: 3;
    grid-row: 1;
  }

  .home-subscribe .section-description .wpforms-field-container .wpforms-field,
.footer-subscribe .section-description .wpforms-field-container .wpforms-field {
    grid-column: span 1;
  }

  .home-subscribe .section-description .wpforms-field-gdpr-checkbox,
.footer-subscribe .section-description .wpforms-field-gdpr-checkbox {
    grid-column: 1/-1 !important;
  }
}
@media (min-width: 1024px) {
  .home-subscribe .section-description,
.footer-subscribe .section-description {
    text-align: center;
    grid-row: 1/-1;
    padding-left: 40px;
  }
}
.home-subscribe .section-description input[type=text],
.home-subscribe .section-description input[type=email],
.footer-subscribe .section-description input[type=text],
.footer-subscribe .section-description input[type=email] {
  background-color: #fff;
  color: #1a1a1a;
  border-radius: 5px;
  border: 3px solid #1a1a1a;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 20px;
  padding: 8px;
  max-width: 100%;
  --field-border-width: 3px;
  text-align: center;
}

.home-subscribe .section-description input[type=text]:focus,
.home-subscribe .section-description input[type=email]:focus,
.footer-subscribe .section-description input[type=text]:focus,
.footer-subscribe .section-description input[type=email]:focus {
  background-color: #fff;
  color: #1a1a1a;
}

@media (min-width: 768px) {
  .home-subscribe .section-description input[type=text],
.footer-subscribe .section-description input[type=text] {
    border-radius: 5px 0 0 5px;
    text-align: left;
  }

  .home-subscribe .section-description input[type=email],
.footer-subscribe .section-description input[type=email] {
    border-radius: 0;
    text-align: left;
  }

  .home-subscribe .section-description input[type=text],
.home-subscribe .section-description input[type=email],
.footer-subscribe .section-description input[type=text],
.footer-subscribe .section-description input[type=email] {
    font-size: 18px;
    border-right: none;
    text-align: left !important;
  }
}
.home-subscribe .section-description .wpforms-submit,
.footer-subscribe .section-description .wpforms-submit {
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
  border: 3px solid #1a1a1a;
  display: block;
  width: 100%;
}
@media (min-width: 414px) {
  .home-subscribe .section-description .wpforms-submit,
.footer-subscribe .section-description .wpforms-submit {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .home-subscribe .section-description .wpforms-submit:hover,
.footer-subscribe .section-description .wpforms-submit:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}
@media (min-width: 768px) {
  .home-subscribe .section-description .wpforms-submit,
.footer-subscribe .section-description .wpforms-submit {
    border-radius: 0 5px 5px 0;
  }
}
@media (hover: hover) {
  .home-subscribe .section-description .wpforms-submit:hover,
.footer-subscribe .section-description .wpforms-submit:hover {
    background-color: #1a1a1a;
    color: #fff !important;
    transform: unset;
  }
}

.home-subscribe .section-description .wpforms-container .wpforms-field-gdpr-checkbox,
.footer-subscribe .section-description .wpforms-container .wpforms-field-gdpr-checkbox {
  order: 3;
}

.home-subscribe .section-description .wpforms-container .wpforms-field-gdpr-checkbox input,
.footer-subscribe .section-description .wpforms-container .wpforms-field-gdpr-checkbox input {
  height: 34px !important;
  width: 34px !important;
  background: transparent;
  border: 3px solid #fff;
}
@media (min-width: 1024px) {
  .home-subscribe .section-description .wpforms-container .wpforms-field-gdpr-checkbox input,
.footer-subscribe .section-description .wpforms-container .wpforms-field-gdpr-checkbox input {
    height: 16px !important;
    width: 16px !important;
    background: #fff;
    border: 2px solid #1a1a1a;
  }
  .home-subscribe .section-description .wpforms-container .wpforms-field-gdpr-checkbox input::after,
.footer-subscribe .section-description .wpforms-container .wpforms-field-gdpr-checkbox input::after {
    color: #1a1a1a;
    border-right: 2px solid;
    border-bottom: 2px solid;
    left: 0.24rem;
  }
}

.home-subscribe .section-description .wpforms-container .wpforms-field-gdpr-checkbox li,
.footer-subscribe .section-description .wpforms-container .wpforms-field-gdpr-checkbox li {
  align-items: center;
}

.home-subscribe .section-description .wpforms-container .wpforms-field-gdpr-checkbox .wpforms-required-label,
.footer-subscribe .section-description .wpforms-container .wpforms-field-gdpr-checkbox .wpforms-required-label {
  display: none;
}

.home-subscribe .section-description .wpforms-field-gdpr-checkbox label,
.footer-subscribe .section-description .wpforms-field-gdpr-checkbox label {
  color: #fff;
  font-size: 16px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-style: normal !important;
}

.home-subscribe .section-description .wpforms-container label.wpforms-error,
.footer-subscribe .section-description .wpforms-container label.wpforms-error {
  color: #fff;
  font-size: 16px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-style: normal !important;
  text-align: left;
  margin-top: 4px;
}

/* ---------- [ Block: Footer CTA ] ---------- */
.footer-cta {
  text-align: center;
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .footer-cta {
    text-align: left;
    margin-top: 0;
    background-color: #e2e2e2;
  }
}
.footer-cta > .wrap {
  padding: 20px 0;
}

@media (min-width: 768px) {
  .footer-cta > .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
  }
}
@media (min-width: 768px) {
  .footer-cta .section-image {
    width: 360px;
  }
}
.footer-cta .section-content {
  text-align: center;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .footer-cta .section-content {
    flex: 1;
    margin-left: 28px;
    margin-top: 0;
    text-align: left;
    max-width: 600px;
  }
}
.footer-cta .section-description {
  margin-top: 8px;
}

.footer-cta .section-pretitle {
  font-size: 24px;
}

.footer-cta .section-title {
  font-size: 36px;
}

@media (min-width: 1024px) {
  .footer-cta .section-title {
    font-size: 44px;
    max-width: 538px;
  }
}
.footer-cta .section-pretitle + .section-title {
  margin-top: 10px;
}

.footer-cta .nf-form-content {
  --text-transform: lowercase;
}

.footer-cta .nf-form-layout {
  margin-top: 12px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .footer-cta nf-fields-wrap {
    text-align: left;
    grid-template-columns: 1fr 1fr max-content;
    gap: 16px 0;
  }

  .footer-cta nf-fields-wrap nf-field:last-of-type {
    grid-column: 1/-1;
  }
}
.footer-cta input[type=text],
.footer-cta input[type=email],
.footer-cta input[type=button] {
  border: 3px solid #1a1a1a;
  border-radius: 6px;
}

@media (min-width: 1024px) {
  .footer-cta input[type=text] {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
  }

  .footer-cta input[type=email] {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}
.footer-cta input[type=text],
.footer-cta input[type=email] {
  font-style: italic;
  font-weight: 400 !important;
}

.footer-cta input[type=button] {
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
  background-color: #fdd958;
  color: #1a1a1a;
  font-weight: 800;
  font-family: "Jost", sans-serif;
  font-size: 18px !important;
  display: flex;
  width: 100% !important;
  padding-top: 9px;
}

@media (min-width: 1024px) {
  .footer-cta input[type=button] {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
}
@media (hover: hover) {
  .footer-cta input[type=button]:hover {
    transform: none;
    background-color: #1a1a1a;
    color: #fff;
  }
}
.footer-cta .nf-form-content .checkbox-wrap .nf-field-label label {
  font-size: 16px;
  font-weight: 400;
}

.footer-cta .label-right .checkbox-wrap .nf-field-element {
  border: 2px solid #fff;
}

@media (min-width: 768px) {
  .footer-cta .label-right .checkbox-wrap .nf-field-element {
    border: 2px solid;
  }
}
.oc-theme .footer-cta .label-right .checkbox-wrap input::after {
  background-color: #0a7c80;
  color: #fff;
  z-index: 1;
}

@media (min-width: 768px) {
  .oc-theme .footer-cta .label-right .checkbox-wrap input::after {
    background-color: #f2fcfc;
    color: #1a1a1a;
  }
}
/* ---------- [ Block: Footer CTA ] ---------- */
.inline-cta {
  background-color: #0ca2a7;
  color: #fff;
  text-align: center;
}

.inline-cta > .wrap {
  padding: 25px 0;
}

@media (min-width: 1024px) {
  .inline-cta > .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
  }
}
@media (min-width: 1024px) {
  .inline-cta .section-content {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.inline-cta .entry-image {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 50%;
}
@media (min-width: 1024px) {
  .inline-cta .entry-image {
    margin-right: 20px;
  }
}

.inline-cta .section-title {
  margin-top: 8px;
}
@media (min-width: 1024px) {
  .inline-cta .section-title {
    margin-top: 0;
    margin-right: 20px;
  }
}

@media (min-width: 1024px) {
  .inline-cta .more-link-container {
    margin-top: 0;
  }
}

.inline-cta .more-link {
  font-size: 20px;
  display: inline-flex;
}
@media (min-width: 1024px) {
  .inline-cta .more-link {
    font-size: 18px;
  }
}

/* ---------- [ Block: CTA Bar ] ---------- */
.home-cta-bar {
  background-color: #fdd958;
  text-align: center;
}

@media (min-width: 1024px) {
  .home-cta-bar {
    overflow: hidden;
  }
}
.home-cta-bar > .wrap {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .home-cta-bar > .wrap {
    padding: 40px 0;
  }

  .home-cta-bar .section-content {
    display: flex;
    align-items: center;
  }

  .home-cta-bar .section-description {
    margin: 0 23px 0 0;
  }
}
.home-cta-bar .section-image {
  width: 110px;
  min-width: 110px;
  margin-right: 16px;
}

.home-cta-bar .section-image .entry-image {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media (min-width: 1024px) {
  .home-cta-bar .section-image {
    width: 102px;
    min-width: 102px;
    margin: -17px 0 0;
    transform: rotate(-10deg);
  }

  .home-cta-bar .section-image .entry-image {
    margin-bottom: -86px;
  }
}
.home-cta-bar .section-title {
  margin-top: 8px;
  text-transform: lowercase;
  font-weight: 400;
}

@media (min-width: 1024px) {
  .home-cta-bar .section-title {
    margin: 0 28px 0;
  }
}
@media (min-width: 1024px) {
  .home-cta-bar .more-link-container {
    margin-top: 0;
  }
}
.home-cta-bar .more-link {
  --color-primary: #1a1a1a;
  --color-secondary: #fff;
  display: inline-flex;
}

/* ---------- [ Block: Index CTA ] ---------- */
.index-cta {
  margin-top: 20px;
  background-color: #fdd958;
  text-align: center;
  border-radius: 13px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 32px 22px 22px;
}

@media (min-width: 1024px) {
  .index-cta {
    position: relative;
    box-shadow: none;
  }

  .index-cta::before {
    content: "";
    background-color: #fdd958;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .index-cta > .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .block-dual-button-feature + .index-cta {
    margin-top: 0;
  }
}
.index-cta .section-image img {
  height: 66px;
  width: auto;
}

@media (min-width: 1024px) {
  .index-cta .section-image img {
    margin-right: 16px;
  }
}
.index-cta .more-link-container {
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .index-cta .more-link-container {
    margin-top: 0;
  }
}
.index-cta .more-link {
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: #1a1a1a !important;
  min-height: initial;
  display: inline-flex;
  font-size: 32px;
}
@media (hover: hover) {
  .index-cta .more-link:hover {
    transform: none;
    background-color: transparent;
    color: #1a1a1a !important;
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: currentColor;
  }
}

.index-cta .more-link .icon-font {
  display: block;
  margin: 0 0 0 8px;
}

.block-intro {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/home-banner.jpg);
  background-size: cover;
  padding: 30px 0;
  text-align: center;
  margin-top: 0 !important;
  background-position: center;
}
@media (min-width: 1024px) {
  .block-intro {
    padding: 40px 0 35px;
  }
}
.block-intro .section-pretitle,
.block-intro .section-title {
  color: #fff;
}
.block-intro .section-pretitle {
  letter-spacing: var(--letter-spacing, 0.1em);
  text-transform: uppercase;
  --letter-spacing: 0.15em;
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 600;
}
.block-intro .section-title {
  font-weight: 800;
  font-size: 30px;
}
@media (min-width: 1024px) {
  .block-intro .section-title {
    font-size: 32px;
  }
}
.block-intro .more-link-container {
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .block-intro .more-link-container {
    margin-top: 18px;
  }
}
.block-intro .more-link {
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
  border: 0;
}
@media (min-width: 414px) {
  .block-intro .more-link {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .block-intro .more-link:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}

/* Post variant */
.post-intro {
  padding: 20px 0;
}

.post-intro .section-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-intro .section-title {
  font-weight: 600;
  font-size: 26px;
}

.post-intro .more-link-container {
  margin-top: 0;
  margin-left: 24px;
}

/*@import './nav-secondary_recipe-index-sticky.scss';*/
.index-nav-subcategories {
  background-color: #fff;
  color: #1a1a1a;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 12px;
}
@media (max-width: 1023px) {
  .index-nav-subcategories {
    position: static;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .index-nav-subcategories > .wrap {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .index-nav-subcategories {
    margin-top: 20px;
    margin-bottom: -36px;
    padding-top: 28px;
  }
}

.index-nav-subcategories .archive-menu-button {
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
  border-radius: 0;
  width: 100%;
  justify-content: space-between;
  border: 0;
}
@media (min-width: 414px) {
  .index-nav-subcategories .archive-menu-button {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .index-nav-subcategories .archive-menu-button:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}
@media (hover: hover) {
  .index-nav-subcategories .archive-menu-button:hover {
    transform: none;
  }
}
@media (min-width: 1024px) {
  .index-nav-subcategories .archive-menu-button {
    display: none;
  }
}
.index-nav-subcategories .archive-menu-button.activated .icon-font {
  transform: rotate(180deg);
}

.index-nav-subcategories .archive-menu-container {
  display: none;
}
@media (min-width: 1024px) {
  .index-nav-subcategories .archive-menu-container {
    display: block !important;
  }
}

.index-nav-subcategories .entries-container {
  --column-gap: 0;
}
@media (min-width: 1024px) {
  .index-nav-subcategories .entries-container {
    --column-gap: 6;
  }
}

@media (min-width: 1024px) {
  .index-nav-subcategories .entry {
    width: auto;
  }
}

.index-nav-subcategories .entry-title-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  text-decoration: none;
  border-top: 1px solid #e2e2e2;
  padding: 8px 16px;
}
@media (min-width: 1024px) {
  .index-nav-subcategories .entry-title-link {
    --color-secondary: #1a1a1a;
    --color-primary: #fdd958;
    font-family: "Jost", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    min-height: 48px;
    color: var(--color-secondary, #1a1a1a) !important;
    background-color: var(--color-primary, #fdd958);
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: capitalize;
    text-decoration: none;
    border-radius: 5px;
    border: 3px solid var(--color-primary);
    --color-secondary-hover: #fff;
    border-color: var(--color-secondary);
    background-color: transparent;
  }
}
@media (min-width: 1024px) and (min-width: 414px) {
  .index-nav-subcategories .entry-title-link {
    font-size: 20px;
  }
}
@media (min-width: 1024px) and (hover: hover) {
  .index-nav-subcategories .entry-title-link:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}
@media (min-width: 1024px) and (hover: hover) {
  .index-nav-subcategories .entry-title-link:hover {
    background-color: var(--color-secondary);
  }
}

.nav-and-jump {
  margin-top: -58px;
  padding: 0 20px 12px;
}

@media (min-width: 1024px) {
  .nav-and-jump {
    padding: 20px 0;
    margin-top: 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
}
.nav-and-jump .index-nav {
  display: none;
}

@media (min-width: 1024px) {
  .nav-and-jump .index-nav {
    display: block;
  }

  .nav-and-jump > .wrap {
    display: flex;
  }
}
.nav-and-jump .index-latest {
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
  justify-content: space-between;
  min-width: max-content;
}
@media (min-width: 414px) {
  .nav-and-jump .index-latest {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .nav-and-jump .index-latest:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}

@media (max-width: 1023px) {
  .nav-and-jump .index-latest {
    --color-secondary-hover: #fff;
    border-color: var(--color-secondary);
    background-color: transparent;
  }
}
@media (max-width: 1023px) and (hover: hover) {
  .nav-and-jump .index-latest:hover {
    background-color: var(--color-secondary);
  }
}
@media (hover: hover) {
  .nav-and-jump .index-latest:hover {
    background-color: #1a1a1a;
    color: #fff;
  }
}
.nav-and-jump .index-latest .icon-font {
  margin-left: 8px;
}

.nav-secondary {
  display: none;
  border-bottom: 1px solid #e2e2e2;
  border-top: 1px solid #e2e2e2;
}
@media (min-width: 1024px) {
  .nav-secondary {
    display: block;
  }
}

@media (min-width: 1024px) {
  .nav-secondary > .wrap {
    padding-right: 144px;
  }
}

.nav-secondary .menu {
  --menu-level-1-txt-color: #1a1a1a;
  --menu-level-1-txt-color_hover: #1a1a1a;
  --menu-level-1-bg-color: #fff;
  --menu-level-1-bg-color_hover: #fff;
  --sub-menu-border-radius: 5px;
  --menu-padding-x: 10px;
  font-weight: 600;
  font-size: 18px;
  font-family: "Jost", sans-serif;
  text-transform: lowercase;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .nav-secondary .menu {
    align-items: initial;
    font-weight: 400;
    min-height: 56px;
    /* For CLS */
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .nav-secondary .menu {
    font-size: 16px;
  }
}

.nav-secondary .sub-menu {
  text-transform: lowercase;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  min-width: 150px;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.16);
}
@media (min-width: 1024px) {
  .nav-secondary .sub-menu {
    background-color: #fff;
    border-radius: 0 0 5px 5px;
  }
}

.nav-secondary .menu > .menu-item > .sub-menu {
  transform: translateY(100%);
  left: 0;
}

.nav-secondary .menu > .menu-item {
  flex: 1 1 auto;
  position: relative;
}

@media (min-width: 1024px) {
  .nav-secondary .menu > .menu-item {
    position: relative;
  }

  .nav-secondary .menu > .menu-item::before {
    content: "";
    width: 100%;
    height: 3px;
    border-top: 3px solid #1a1a1a;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    z-index: 1;
    opacity: 0;
    transition: opacity 400ms;
  }

  .nav-secondary .menu > .menu-item:hover::before {
    opacity: 1;
  }

  .nav-secondary .menu > .menu-item:first-of-type {
    font-weight: 800;
    border-right: 1px solid #e2e2e2;
  }
}
.nav-secondary .menu > .menu-item > a,
.nav-secondary .menu > .menu-item > button {
  padding-top: 16px;
  padding-bottom: 16px;
  justify-content: flex-start;
}
@media (min-width: 1024px) {
  .nav-secondary .menu > .menu-item > a,
.nav-secondary .menu > .menu-item > button {
    height: 100%;
  }
}

.nav-secondary .menu > .menu-item.menu-item-has-children > a {
  padding-right: calc(var(--menu-padding-x) + 28px);
}

@media (min-width: 1024px) {
  .nav-secondary .menu > .menu-item > button > span,
.nav-secondary .menu > .menu-item > a > span,
.nav-secondary .menu > .menu-item .sub-menu a > span,
.nav-secondary .menu > .menu-item .sub-menu button > span {
    text-transform: capitalize;
  }
}

.nav-secondary .menu > .menu-item > button > span {
  display: flex;
  align-items: center;
}

.nav-secondary .menu > .menu-item > button > span .icon-font {
  margin: 0 8px 0 0;
}

.nav-secondary .menu > .menu-item > button .icon-font {
  height: 22px;
  width: 22px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 8px;
}

.nav-secondary .menu .menu-item.featured-category a::before,
.nav-secondary .menu .menu-item.featured-category a::after {
  content: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/flourish-menu.svg);
  height: 20px;
  width: 11px;
  margin-right: 8px;
}

.nav-secondary .menu .menu-item.featured-category a::after {
  transform: scaleX(-1);
  margin: 0 0 0 8px;
}

.callout__default {
  padding: 12px;
  margin-top: 28px;
  position: relative;
  border-radius: 10px;
  border: 4px solid;
  overflow: hidden;
}
.callout__default::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  border-bottom: 14px solid;
  border-image-source: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/pattern-diagonal.svg);
  border-image-repeat: repeat;
  border-image-slice: 14 8;
  border-image-outset: 8px 0;
}

.callout--icon__default {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fdd958;
  position: absolute;
  left: 34px;
  top: 23px;
  width: 38px;
  height: 38px;
  font-size: 14px;
}

.callout--icon__default .embellishment-tip-block {
  width: 100%;
  height: 120%;
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/embellishment-tip.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.callout--content__default {
  background-color: #fff;
  padding: 16px 24px;
}

.oc-gutenberg-block .callout--title__default {
  margin: 0;
  padding-left: 46px;
}

.callout--text__default {
  margin-top: 16px;
}

.callout--text__default p,
.callout--text__default ul {
  line-height: 1.3;
}

.callout--text__default p {
  margin: 8px 0 0;
}

.callout--text__default > p:first-child,
.callout--text__default > ol:first-child,
.callout--text__default > ul:first-child {
  margin-top: 0;
}

.callout--text__default > p:last-child,
.callout--text__default > ol:last-child,
.callout--text__default > ul:last-child {
  margin-bottom: 0;
}

.replace-text-with-image {
  color: transparent;
}

.text-tip {
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/text-tip.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 88px;
  height: 40px;
  display: block;
  position: relative;
  z-index: 1;
}

/* Callout Button Image */
.callout-button-image__default {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px;
  background-color: #f2fcfc;
  border-radius: 10px;
  margin: 20px 0;
}

@media (min-width: 768px) {
  .callout-button-image__default {
    display: grid;
    grid-template-columns: 135px 1fr;
    align-items: start;
    text-align: left;
    grid-gap: 18px;
    padding: 28px 35px;
  }
}
.callout-button-image__default .entry-image {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .callout-button-image__default .entry-image {
    height: 135px;
    width: 135px;
  }
}
.callout-button-image__default .callout-button-image--title__default {
  font-size: 28px;
  margin-bottom: 4px;
  margin-top: 14px;
}

@media (min-width: 768px) {
  .callout-button-image__default .callout-button-image--title__default {
    margin-top: 0;
    font-size: 32px;
  }
}
.callout-button-image--content__default {
  text-align: center;
}

@media (min-width: 768px) {
  .callout-button-image--content__default {
    text-align: left;
  }
}
.callout-button-image--text__default {
  font-size: 20px;
  line-height: 26px;
}

.callout-button-image--text__default p:first-child {
  margin-top: 0;
}

.callout-button-image--text__default p:last-child {
  margin-bottom: 0;
}

.callout-button-image__default .callout-button-image--link__default {
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
  display: inline-flex;
  text-decoration: none;
  margin-top: 12px;
}
@media (min-width: 414px) {
  .callout-button-image__default .callout-button-image--link__default {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .callout-button-image__default .callout-button-image--link__default:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}
.callout-button-image__default .callout-button-image--link__default::after {
  content: "";
  font-family: "Icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 8px;
  position: relative;
  margin-top: -2px;
}

.callout-button-image__default .callout-button-image--link__default .icon-font {
  margin-left: 8px;
}

.oc-gutenberg-block.icon-button__default {
  background-color: #cd4260;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-decoration: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  margin-top: 12px;
}
@media (min-width: 414px) {
  .oc-gutenberg-block.icon-button__default {
    text-transform: uppercase;
    letter-spacing: 0.075em;
  }
}
@media (hover: hover) {
  .oc-gutenberg-block.icon-button__default:hover {
    transform: scale(0.95);
    background-color: #b73652;
  }
  .oc-gutenberg-block.icon-button__default:hover .icon-font {
    background-color: #fdd958;
    color: #1a1a1a;
  }
}
.oc-gutenberg-block.icon-button__default::after {
  content: "";
  font-family: "Icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 8px;
  position: relative;
  margin-top: -2px;
}

.oc-gutenberg-block.icon-button__default + p {
  margin-top: 8px;
}

.icon-button--icon__default .icon-font {
  color: #1a1a1a;
  background-color: #fdd958;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: 400ms;
}

.posts-button__default {
  margin: 20px 0;
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .posts-button__default {
    padding: 28px;
  }
}

.oc-gutenberg-block .posts-button--title__default {
  margin: 0;
  font-size: 26px;
}
@media (min-width: 768px) {
  .oc-gutenberg-block .posts-button--title__default {
    font-size: 32px;
  }
}

@media (min-width: 768px) {
  .posts-button--content__default {
    display: grid;
    grid-template-columns: 1fr max-content;
    gap: 12px;
  }
}

.posts-button--posts__default {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .posts-button--posts__default {
    margin-top: 0;
    grid-column: 1/-1;
    grid-template-columns: repeat(4, 1fr);
  }
}

.oc-gutenberg-block .posts-button--post__default {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin: 0;
  text-decoration: none;
  background-color: #fff;
}

.oc-gutenberg-block .posts-button--post-title__default {
  margin: 0;
  line-height: 1.1;
  color: #1a1a1a;
  font-family: "Jost", sans-serif;
  padding: 7px 10px;
  font-weight: 600;
  font-size: 20px;
  text-transform: capitalize;
  font-style: normal;
}

@media (min-width: 768px) {
  .oc-gutenberg-block .posts-button--post-title__default {
    font-size: 16px;
  }
}
@media (hover: hover) {
  .posts-button--post__default:hover .posts-button--post-title__default {
    text-decoration: underline;
  }
}
.posts-button__default .posts-button--link__default {
  --color-secondary: #1a1a1a;
  --color-primary: #fdd958;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  min-height: 48px;
  color: var(--color-secondary, #1a1a1a) !important;
  background-color: var(--color-primary, #fdd958);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 5px;
  border: 3px solid var(--color-primary);
  --color-secondary: #fff;
  --color-primary: #1a1a1a;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 414px) {
  .posts-button__default .posts-button--link__default {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .posts-button__default .posts-button--link__default:hover {
    transform: scale(0.95);
    color: var(--color-secondary-hover, #1a1a1a) !important;
    background-color: var(--color-primary-hover, #fff);
    border-color: var(--color-secondary-hover, #1a1a1a);
    text-decoration: none;
  }
}
@media (min-width: 768px) {
  .posts-button__default .posts-button--link__default {
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
    color: #1a1a1a !important;
    min-height: initial;
    display: inline-flex;
    margin-top: 0;
    grid-column: 2;
    grid-row: 1;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .posts-button__default .posts-button--link__default:hover {
    transform: none;
    background-color: transparent;
    color: #1a1a1a !important;
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: currentColor;
  }
}
.posts-button__default .posts-button--link__default .icon-font {
  margin-left: 8px;
}
.posts-button__default .posts-button--link__default::after {
  content: "";
  font-family: "Icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 8px;
  position: relative;
  margin-top: -2px;
}

.entry-content {
  counter-reset: header-step;
}

.icon-header__default {
  display: flex !important;
}

.icon-header__default .icon-header--icon__default + .icon-header--title__default {
  font-size: 28px;
}

.icon-header__default .icon-header--icon__default {
  margin-right: 12px;
  display: inline-block;
  flex-shrink: 0;
  margin-top: -4px;
}

.icon-header__default .icon-header--icon__default span {
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 50%;
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.icon-header__default .icon-header--icon__default span.counter-step {
  counter-increment: header-step;
}
.icon-header__default .icon-header--icon__default span.counter-step::before {
  content: counter(header-step);
}

.icon-header__default .icon-header--icon__default span.counter-reset {
  counter-reset: header-step;
}

.icon-header__default .icon-header--icon__default .icon-font.icon-snowflake {
  background-color: #0ca2a7;
}

.icon-header__default .icon-header--icon__default .icon-font.icon-sync {
  background-color: #053b85;
  color: #fff;
}

.icon-header__default .icon-header--icon__default .icon-font.icon-check {
  background-color: #fab93b;
}

.icon-header__default .icon-header--icon__default .icon-font.icon-question {
  background-color: #fdd958;
}

.icon-text__default {
  display: flex !important;
  line-height: 1.3;
}

.icon-text__default .icon-text--icon__default {
  margin-right: 12px;
  display: block;
  flex-shrink: 0;
}

.icon-text__default .icon-text--icon__default .embellishment {
  background-color: #1a1a1a;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-text__default .icon-text--icon__default .embellishment.embellishment-video {
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/embellishment-video.svg);
  background-color: #fdd958;
}

.icon-text__default .icon-text--icon__default .embellishment.embellishment-scissors {
  background-image: url(/wp-content/themes/once-coupled-its-always-autumn/assets/images/embellishment-scissors.svg);
  background-color: #0ca2a7;
}

.icon-text__default .icon-text--text__default {
  margin-top: 6px;
}

.icon-text__default .icon-text--text__default > *:first-child {
  margin-top: 0;
}
