.breakdance .breakdance-menu .breakdance-dropdown-item--active a span.breakdance-dropdown-link__text {
  color: var(--link-color);
}

.breakdance-woocommerce a.button.move_to_editor_button {
  background: var(--bde-button-secondary-background-color);
  color: var(--bde-button-secondary-text-color);
  border-color: var(--bde-button-secondary-border-color);
  border-radius: var(--bde-button-border-radius);
  border-width: var(--bde-button-border-width);
  font-size: var(--bde-button-font-size);
  line-height: var(--bde-button-line-height);
  font-weight: var(--bde-button-font-weight);
  transition: var(--bde-woo-base-transition);
  transition-duration: var(--bde-transition-duration);
  display: inline-flex;
  border-style: solid;
  text-transform: capitalize;
  padding: var(--bde-button-padding-base);
  text-decoration: none;
  text-align: center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: -moz-max-content;
  width: max-content;
}
.breakdance-woocommerce a.button.move_to_editor_button:hover {
  background-color: var(--bde-button-secondary-background-color-hover);
  color: var(--bde-button-secondary-text-color-hover);
  border-color: var(--bde-button-secondary-border-color-hover);
}

.breakdance .bde-wooshoppage.breakdance-woocommerce ul.products li.product .price del {
  text-decoration-line: none;
}

.did-you-know, .is-style-did-you-know {
  display: block;
  background: url(../images/did-you-know.png) no-repeat;
  color: #004b9c;
  font-style: italic;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  margin: auto;
  padding-top: 65px;
  background-size: 240px;
  border-left: none;
  margin-block-start: 40px !important;
  margin-block-end: 40px !important;
}
@media only screen and (min-width: 922px) {
  .did-you-know, .is-style-did-you-know {
    font-size: 20px;
    margin: 40px auto;
    background-size: auto;
    padding-top: 90px;
  }
}

.bee, .is-style-bee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #004b9c;
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  margin: 1.5em auto;
  max-width: 90%;
  padding-top: 20px;
  padding-bottom: 20px;
}
.bee::before, .is-style-bee::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  background: url(../images/bee.png) no-repeat center/contain;
}
@media only screen and (min-width: 922px) {
  .bee, .is-style-bee {
    font-size: 20px;
    gap: 20px;
  }
  .bee::before, .is-style-bee::before {
    width: 60px;
    height: 60px;
  }
}

.wp-block-button.is-style-primary-button .wp-block-button__link {
  background: var(--bde-button-primary-background-color, #004b9c);
  color: var(--bde-button-primary-text-color, #fff);
  border-color: var(--bde-button-primary-border-color, transparent);
  border-radius: 10px;
  border-width: var(--bde-button-border-width, 2px);
  border-style: solid;
  font-size: var(--bde-button-font-size);
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: var(--bde-button-padding-base);
  transition-property: all;
  transition-timing-function: ease-in-out;
  transition-duration: var(--bde-transition-duration, 300ms);
}

.wp-block-button.is-style-primary-button .wp-block-button__link:hover {
  background: var(--bde-links-color-hover, #003a7a);
  color: var(--bde-button-primary-text-color-hover, #fff);
  border-color: var(--bde-button-primary-border-color-hover, transparent);
}

.wp-block-button.is-style-custom-button .wp-block-button__link {
  border-radius: 0;
  text-transform: none;
}

.breakdance .wp-block-image {
  padding-top: 20px;
}
.breakdance .wp-block-image .aligncenter,
.breakdance .wp-block-image .aligncenter img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.breakdance .wp-block-image .wp-element-caption {
  font-size: 14px;
  padding: 10px 15px;
  top: -30px;
  position: relative;
  border-left: 4px solid #004b9c;
  width: 90%;
  margin: auto;
  background-color: #ffffff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  text-align: center;
}
@media only screen and (min-width: 922px) {
  .breakdance .wp-block-image .wp-element-caption {
    font-size: 16px;
  }
}
.breakdance .wp-block-embed {
  padding-top: 20px;
}

.custom-grid {
  --grid-gap: 30px;
  --grid-gap-tight: 20px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
  text-align: center;
}
@media only screen and (min-width: 545px) {
  .custom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 922px) {
  .custom-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.custom-grid.hunaja-lifts-section, .custom-grid.custom-recipe-list {
  gap: var(--grid-gap-tight);
}
@media only screen and (min-width: 545px) {
  .custom-grid.hunaja-lifts-section, .custom-grid.custom-recipe-list {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 922px) {
  .custom-grid.hunaja-lifts-section, .custom-grid.custom-recipe-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.custom-grid.hunaja-lifts-section .custom-recipe, .custom-grid.custom-recipe-list .custom-recipe {
  position: relative;
  overflow: hidden;
}
.custom-grid.hunaja-lifts-section .custom-recipe a, .custom-grid.custom-recipe-list .custom-recipe a {
  display: block;
  width: 100%;
  overflow: hidden;
}
.custom-grid.hunaja-lifts-section .custom-recipe .image, .custom-grid.custom-recipe-list .custom-recipe .image {
  display: block;
  width: 100%;
  transition: transform 0.35s ease-out;
  transform-origin: center;
}
@media (hover: hover) {
  .custom-grid.hunaja-lifts-section .custom-recipe:hover .image, .custom-grid.custom-recipe-list .custom-recipe:hover .image {
    transform: scale(1.015);
  }
}
.custom-grid.hunaja-lifts-section .custom-recipe::after, .custom-grid.custom-recipe-list .custom-recipe::after {
  content: "";
  position: absolute;
  top: 2%;
  right: 6%;
  width: clamp(52px, 20%, 96px);
  aspect-ratio: 1;
  background: url(../images/hunaja-logo.svg) center/contain no-repeat;
  pointer-events: none;
}
.custom-grid.custom-grid-nogutter {
  gap: 0;
}
.custom-grid.custom-grid-nogutter > .custom-col,
.custom-grid.custom-grid-nogutter > .col {
  padding: 0;
}

.custom-col {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.custom-col.custom-lift, .custom-col.custom-recipe {
  justify-content: flex-start;
  margin-bottom: 20px;
}
.custom-col.custom-lift .custom-button-wrap, .custom-col.custom-recipe .custom-button-wrap {
  margin-top: 10px;
}
.custom-col.custom-lift .custom-button-wrap a, .custom-col.custom-recipe .custom-button-wrap a {
  display: block;
  border-radius: 0;
  padding: 20px;
  text-transform: none;
}
@media only screen and (max-width: 921px) {
  .custom-col.custom-lift .custom-button-wrap a, .custom-col.custom-recipe .custom-button-wrap a {
    font-size: clamp(16px, 1.6vw + 12px, 22px);
  }
}
@media only screen and (min-width: 1200px) {
  .custom-col.custom-lift .custom-button-wrap a, .custom-col.custom-recipe .custom-button-wrap a {
    font-size: 24px;
  }
}
.custom-col.custom-recipe {
  flex-grow: 0;
  height: 100%;
  border-radius: 10px;
  overflow: clip;
  box-shadow: 0 4px 14px rgba(63, 44, 28, 0.07);
  transition: box-shadow 0.24s ease;
}
@media (hover: hover) {
  .custom-col.custom-recipe:hover {
    box-shadow: 0 8px 18px rgba(63, 44, 28, 0.11);
  }
}
.custom-col.custom-recipe > a {
  display: block;
  line-height: 0;
}
.custom-col.custom-recipe .image {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.custom-col.custom-recipe .text {
  padding: clamp(16px, 2.2vw, 28px);
  text-align: left;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.custom-col.custom-recipe .text > a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.custom-col.custom-recipe .text h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1rem + 0.7vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.custom-col.custom-recipe .text p {
  margin: 0.85rem 0 0;
}
.custom-col.custom-recipe .text .recipe-cta {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 0.9rem;
}
.custom-col.custom-recipe .text .recipe-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
.custom-col.custom-recipe .text .recipe-link .recipe-link-arrow {
  display: inline-block;
  width: 0.55em;
  height: 0.55em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.custom-col.custom-recipe .text .recipe-link .fa {
  display: none;
}
.custom-col.custom-recipe .text .recipe-link:hover .recipe-link-arrow {
  transform: translateX(1px) rotate(45deg);
}
@media (prefers-reduced-motion: reduce) {
  .custom-col.custom-recipe .text .recipe-link,
  .custom-col.custom-recipe .text .recipe-link .recipe-link-arrow,
  .custom-col.custom-recipe .text .image {
    transition: none;
  }
}
.custom-col.custom-item {
  margin-bottom: 20px;
}
@media only screen and (min-width: 922px) {
  .custom-col.custom-item {
    margin-bottom: 30px;
  }
}
.custom-col.custom-item h3 {
  margin-bottom: 0.5em;
  font-size: 1em;
}
@media only screen and (min-width: 922px) {
  .custom-col.custom-item h3 {
    font-size: 1.3em;
  }
}
.custom-col.custom-item img {
  max-width: 200px;
  margin-inline: auto;
  margin-top: auto;
  padding-top: 20px;
  padding-bottom: 30px;
}
@media only screen and (min-width: 922px) {
  .custom-col.custom-item img {
    padding-bottom: 40px;
  }
}
.custom-col.custom-item .custom-button-wrap {
  margin-top: auto;
}
.custom-col.custom-item .custom-button-wrap a {
  display: inline-block;
}

.custom-recipe-content > *:first-child > a {
  position: relative;
}
.custom-recipe-content > *:first-child > a::after {
  content: "";
  display: block;
  background-image: url(../images/hunaja-logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: clamp(75px, 5vw, 100px);
  aspect-ratio: 1;
  position: absolute;
  top: 2%;
  right: 2%;
}

.h-page-menu-back ul,
.h-page-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.h-page-menu-back li,
.h-page-menu li {
  margin: 0;
}
.h-page-menu-back li + li,
.h-page-menu li + li {
  margin-top: 0.4rem;
}
.h-page-menu-back ul li a,
.h-page-menu ul li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #004b9c;
  transition: color 0.2s ease;
}
.h-page-menu-back ul li a::after,
.h-page-menu ul li a::after {
  content: "";
  display: inline-block;
  width: 0.48em;
  height: 0.48em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
@media (hover: hover) {
  .h-page-menu-back ul li a:hover,
  .h-page-menu ul li a:hover {
    color: #001b3b;
  }
  .h-page-menu-back ul li a:hover::after,
  .h-page-menu ul li a:hover::after {
    transform: translateX(1px) rotate(45deg);
  }
}

.h-page-menu-back ul li a::after {
  display: none;
}
.h-page-menu-back ul li a::before {
  content: "";
  display: inline-block;
  width: 0.48em;
  height: 0.48em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(-135deg);
  transition: transform 0.2s ease;
}
@media (hover: hover) {
  .h-page-menu-back ul li a:hover::before {
    transform: translateX(-1px) rotate(-135deg);
  }
}