@font-face {
  font-family: 'Damion';
  src: url("../fonts/Damion-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }
.back-to-recipes {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px; }
  .back-to-recipes img {
    transform: rotate(180deg); }

.recepie-heading {
  padding: 32px;
  background-color: #F2F6FB; }
  .recepie-heading h2 {
    font-size: 40px;
    font-weight: 800; }
  .recepie-heading .categories {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    gap: 8px;
    padding: 0;
    margin-top: 32px; }
    .recepie-heading .categories .item {
      min-width: 100px;
      text-decoration: none;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px 15px;
      border-radius: 24px;
      border: 1px solid black; }
      .recepie-heading .categories .item .name {
        font-size: 14px;
        font-weight: 600; }
      .recepie-heading .categories .item:hover {
        background-color: #183a68;
        border-color: #183a68; }
        .recepie-heading .categories .item:hover .name {
          color: white; }
        .recepie-heading .categories .item:hover .img {
          filter: invert(1); }
  @media (max-width: 768px) {
    .recepie-heading {
      padding: 16px; }
      .recepie-heading h2 {
        font-size: 24px; }
      .recepie-heading .categories {
        flex-direction: row;
        flex-wrap: unset;
        overflow-x: scroll;
        padding-bottom: 20px; }
        .recepie-heading .categories .item {
          min-width: 120px;
          white-space: pre; } }

.search {
  display: flex;
  gap: 12px;
  margin-top: 32px; }
  .search .input {
    border: 1px solid white;
    padding: 10px;
    width: 100%;
    max-width: 400px;
    border-radius: 8px; }
  .search .button {
    padding: 11px 31px;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    background-color: #F18747; }

.recipe-count {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  margin-top: 48px; }

.account-pages .recipes, .single-weekly-menu-content .recipes {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  list-style-type: none;
  width: 100%;
  padding: 0; }
  .account-pages .recipes:not(.recipe-list), .single-weekly-menu-content .recipes:not(.recipe-list) {
    gap: 24px; }
  .account-pages .recipes .recipe, .single-weekly-menu-content .recipes .recipe {
    position: relative;
    overflow: hidden;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 10px; }
    .account-pages .recipes .recipe .heart-container, .single-weekly-menu-content .recipes .recipe .heart-container {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      appearance: none;
      border: none;
      background: rgba(255, 255, 255, 0.8);
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer; }
    .account-pages .recipes .recipe a, .single-weekly-menu-content .recipes .recipe a {
      text-decoration: none;
      display: flex;
      flex-direction: column;
      gap: 8px; }
    .account-pages .recipes .recipe .favorite, .single-weekly-menu-content .recipes .recipe .favorite {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      appearance: none;
      border: none;
      background-color: rgba(255, 255, 255, 0.8);
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer; }
      .account-pages .recipes .recipe .favorite.is-favorite svg, .single-weekly-menu-content .recipes .recipe .favorite.is-favorite svg {
        fill: #f18747; }
    .account-pages .recipes .recipe .image, .single-weekly-menu-content .recipes .recipe .image {
      border-radius: 4px;
      overflow: hidden;
      width: 100%;
      height: auto;
      aspect-ratio: 16/9;
      object-fit: cover; }
    .account-pages .recipes .recipe .calories, .single-weekly-menu-content .recipes .recipe .calories {
      font-size: 12px;
      font-style: normal;
      font-weight: 400;
      margin: 0;
      color: #0D2345; }
    .account-pages .recipes .recipe .name, .single-weekly-menu-content .recipes .recipe .name {
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      margin: 0; }
  @media (max-width: 768px) {
    .account-pages .recipes, .single-weekly-menu-content .recipes {
      grid-template-columns: 1fr 1fr; } }

.filter-search {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0; }
  .filter-search .filter {
    list-style-type: none;
    display: flex;
    gap: 16px;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; }
    .filter-search .filter li {
      position: relative; }
    .filter-search .filter .item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 120px;
      background: #F2F6FB;
      padding: 8px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 12px;
      font-style: normal;
      font-weight: 400; }
      .filter-search .filter .item span {
        display: flex;
        gap: 4px; }
    .filter-search .filter .sub-menu {
      position: absolute;
      left: 0;
      top: calc(100% + 15px);
      border-radius: 4px;
      z-index: 500;
      background-color: white;
      list-style-type: none;
      max-height: 0;
      overflow: hidden;
      padding: 0 8px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: 200px; }
      .filter-search .filter .sub-menu li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer; }
        .filter-search .filter .sub-menu li label::selection {
          background: none; }
      .filter-search .filter .sub-menu .filter-title {
        display: none;
        cursor: pointer; }
      @media (max-width: 768px) {
        .filter-search .filter .sub-menu {
          position: fixed;
          bottom: 0;
          left: 0;
          top: unset;
          background: white;
          width: 100%;
          padding: 0 20px; }
          .filter-search .filter .sub-menu .filter-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
            font-size: 18px;
            font-style: normal;
            font-weight: 600; } }
    .filter-search .filter li.open .sub-menu {
      padding: 8px;
      max-height: fit-content;
      box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); }
    @media (max-width: 768px) {
      .filter-search .filter li.open::before {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        z-index: 500;
        content: ""; }
      .filter-search .filter li.open .sub-menu {
        padding: 16px 20px;
        z-index: 501; } }
  .filter-search .search {
    margin-left: auto;
    margin-top: 0;
    align-items: center; }
    .filter-search .search .input {
      max-width: 200px;
      width: 100%;
      background: #F2F6FB; }
  @media screen and (max-width: 992px) {
    .filter-search {
      display: flex;
      flex-direction: column; }
      .filter-search .filter {
        display: flex; }
      .filter-search .search {
        margin-left: 0; } }

.active-filters {
  display: flex;
  gap: 16px;
  margin-top: 20px; }
  .active-filters .clear-all {
    cursor: pointer;
    border: none;
    background: none;
    appearance: none;
    text-decoration: underline;
    font-weight: 600;
    font-size: 12px; }
  .active-filters .active-filter span {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 24px;
    padding: 10px 15px;
    border: 1px solid #0D2345; }

.recipes-pagination {
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px; }
  .recipes-pagination span, .recipes-pagination button {
    padding: 6px 11px;
    border-radius: 4px;
    background: #F2F6FB;
    appearance: none;
    border: none;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    cursor: pointer; }
    .recipes-pagination span:nth-last-child(2), .recipes-pagination button:nth-last-child(2) {
      cursor: default; }
    .recipes-pagination span.active, .recipes-pagination button.active {
      background: #0D2345;
      color: white; }
  @media (max-width: 768px) {
    .recipes-pagination {
      gap: 8px; } }

.category-slider {
  margin: 48px 0; }
  .category-slider .cat-header {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .category-slider .cat-header .left {
      display: flex;
      gap: 16px;
      color: #0D2345; }
      .category-slider .cat-header .left h2 {
        font-size: 18px;
        font-weight: 700;
        align-items: center; }
      .category-slider .cat-header .left a {
        text-decoration: underline; }
    .category-slider .cat-header .right {
      display: flex;
      gap: 13px; }
      .category-slider .cat-header .right .button {
        background-color: #B0C3E0;
        border: none;
        padding: 10px;
        cursor: pointer; }
        .category-slider .cat-header .right .button.right {
          transform: rotate(180deg); }
  .category-slider .slider {
    display: flex;
    gap: 24px;
    overflow: scroll;
    padding: 20px;
    padding-left: 0;
    margin-top: 0;
    scroll-behavior: smooth; }
    .category-slider .slider .recipe {
      min-width: 250px; }

.page-template-default .single-kunskapsbank-hero .main:has(.main-content) {
  padding-top: 50px; }
@media screen and (min-width: 992px) {
  .page-template-default .single-kunskapsbank-hero .main {
    padding-top: 0; }
  .page-template-default .single-kunskapsbank-hero .main:has(.title-image) {
    height: 400px; }
  .page-template-default .single-kunskapsbank-hero .main:has(.main-content) {
    -webkit-transform: translateY(-150px);
    transform: translateY(-150px); } }

.print-page {
  position: absolute;
  top: 16px;
  right: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  line-height: 1;
  border: none;
  margin: 0;
  margin-bottom: 1rem; }

.weekly-menu-chip-link {
  background: #F18747;
  border-color: #F18747 !important; }
  .weekly-menu-chip-link span {
    color: white; }
  .weekly-menu-chip-link:hover {
    background-color: #F18747 !important;
    border-color: #F18747 !important; }
  .weekly-menu-chip-link:hover .img {
    filter: inherit !important; }

.highlighted-courses .qte-custom-swiper-container + .kick-button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: max-content; }

.recipes.more-posts .pagination-wrapper:has(#wp_pagination) {
  width: 100%; }

.pagebreak {
  -webkit-column-break-inside: avoid !important;
  -moz-column-break-inside: avoid !important;
  break-inside: avoid !important;
  page-break-before: always !important;
  -webkit-column-break-before: always !important;
  -moz-column-break-before: always !important;
  break-before: always !important; }

.buy-button-reco {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse; }
  @media screen and (max-width: 768px) {
    .buy-button-reco {
      flex-direction: column-reverse;
      align-items: center; } }

/**
 * Styles for Hero 2026 (section-hero-2026).
 */
.section-hero-2026 {
  position: relative;
  min-height: 100vh;
  overflow: hidden; }
  .section-hero-2026__media {
    position: absolute;
    inset: 0;
    background-color: #2f2f2f;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden; }
  .section-hero-2026--separate-mobile .section-hero-2026__media--desktop {
    display: none; }
    @media screen and (min-width: 1025px) {
      .section-hero-2026--separate-mobile .section-hero-2026__media--desktop {
        display: block; } }
  .section-hero-2026--separate-mobile .section-hero-2026__media--mobile {
    display: block; }
    @media screen and (min-width: 1025px) {
      .section-hero-2026--separate-mobile .section-hero-2026__media--mobile {
        display: none; } }
  .section-hero-2026__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .section-hero-2026__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 8%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.82) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.05) 62%);
    z-index: 1; }
  .section-hero-2026__inner {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    gap: 18px;
    padding: 0 144px; }
  .section-hero-2026__title {
    margin: 0;
    color: inherit;
    font-size: 46px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: normal; }
  .section-hero-2026__content {
    margin-top: 14px;
    color: inherit;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 1.02;
    font-weight: 400; }
    .section-hero-2026__content p {
      margin: 0; }
    .section-hero-2026__content p + p {
      margin-top: 10px; }
  .section-hero-2026__title, .section-hero-2026__content, .section-hero-2026__content p {
    color: #fff; }
  .section-hero-2026--custom-color .section-hero-2026__inner, .section-hero-2026--custom-color .section-hero-2026__text, .section-hero-2026--custom-color .section-hero-2026__text * {
    color: inherit; }
  .section-hero-2026__cta {
    width: min(100%, 460px);
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 2px 12px;
    align-items: center;
    text-decoration: none;
    padding: 24px;
    border-radius: 8px;
    background: rgba(241, 135, 71, 0.85);
    transition: filter 0.2s ease, transform 0.2s ease; }
    .section-hero-2026__cta:hover {
      color: #fff;
      text-decoration: none;
      filter: brightness(1.06);
      transform: translateY(-1px); }
  .section-hero-2026__cta--static {
    cursor: default; }
  .section-hero-2026__cta-primary {
    grid-column: 1;
    grid-row: 1;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    color: white; }
  .section-hero-2026__cta-secondary {
    grid-column: 1;
    grid-row: 2;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 400;
    opacity: 0.95;
    color: white; }
  .section-hero-2026__cta-arrow {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700; }
  @media screen and (min-width: 1025px) {
    .section-hero-2026__title {
      font-size: 85px; }
    .section-hero-2026__content {
      font-size: 20px; }
    .section-hero-2026__cta-primary {
      font-size: 18px; }
    .section-hero-2026__cta-secondary {
      font-size: 16px; } }
  @media screen and (max-width: 1024px) {
    .section-hero-2026 {
      min-height: clamp(560px, 82vh, 860px); }
      .section-hero-2026__inner, .section-hero-2026__media {
        min-height: clamp(560px, 82vh, 860px); }
      .section-hero-2026__inner {
        padding: 0 40px; } }
  @media screen and (max-width: 768px) {
    .section-hero-2026__inner {
      margin-top: 203px;
      justify-content: unset;
      padding: 0 24px; }
    .section-hero-2026__cta {
      margin-top: 24px; } }

/**
 * Styles for Puffar 2026 (section-highlighted-links-2026).
 */
.section-highlighted-links-2026 {
  /* Block styles go here */
  background: #F2F6FB;
  padding: 40px 16px; }
  .section-highlighted-links-2026__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    align-items: stretch;
    max-width: 14400px;
    margin: 0 auto; }
    @media screen and (min-width: 768px) {
      .section-highlighted-links-2026__inner {
        display: flex;
        gap: 16px; } }
  .section-highlighted-links-2026__link {
    position: relative;
    padding: 16px;
    background-color: #366361;
    color: white;
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: 4px;
    min-width: 0;
    width: 100%;
    min-height: 118px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden; }
    .section-highlighted-links-2026__link:hover {
      filter: brightness(0.85);
      text-decoration: underline;
      text-decoration-color: currentColor; }
    .section-highlighted-links-2026__link--has-bg::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 0; }
    .section-highlighted-links-2026__link-text {
      color: inherit;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.32px;
      hyphens: auto;
      overflow-wrap: break-word;
      z-index: 1; }
  @media screen and (min-width: 768px) {
    .section-highlighted-links-2026 {
      padding: 64px 40px; }
      .section-highlighted-links-2026__link {
        padding: 40px 24px; }
        .section-highlighted-links-2026__link-text {
          font-size: 24px; } }
  @media screen and (min-width: 1024px) {
    .section-highlighted-links-2026 {
      padding: 64px 144px; }
      .section-highlighted-links-2026__link {
        min-height: 150px; } }

/**
 * Styles for Medlemskap 2026 (section-membership-2026).
 */
.section-membership-2026 {
  background: #F2F6FB;
  padding: 20px 16px 28px; }
  .section-membership-2026__inner {
    max-width: 1460px;
    margin: 0 auto; }
  .section-membership-2026__card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    border: 5px solid #1F3A64;
    border-radius: 6px;
    background: var(--Blue, #1F3A64);
    box-shadow: inset 0 0 0 2px #dbe4ef;
    overflow: hidden;
    padding-top: 24px; }
  .section-membership-2026__main {
    order: 1; }
  .section-membership-2026__title {
    padding: 8px 16px;
    background: white;
    color: #1F3A64;
    text-align: center;
    text-transform: capitalize;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; }
  .section-membership-2026__title-script {
    display: inline-block;
    margin-right: 10px;
    font-family: "Damion" !important;
    color: #1F3A64;
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    font-weight: 400; }
  .section-membership-2026__title-main {
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    color: #1F3A64; }
  .section-membership-2026__benefits {
    margin: 0;
    padding: 24px;
    padding-bottom: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px; }
  .section-membership-2026__benefit {
    position: relative;
    margin: 0 0 10px;
    list-style-type: none;
    display: flex;
    gap: 16px;
    align-items: center; }
    .section-membership-2026__benefit-text {
      color: #FFFFFF;
      font-size: 16px;
      letter-spacing: 0.64px;
      line-height: 1.5;
      font-weight: 400; }
    .section-membership-2026__benefit svg {
      width: 24px;
      height: 24px;
      min-width: 24px; }
      .section-membership-2026__benefit svg path {
        stroke: white; }
  .section-membership-2026__benefit:last-child {
    margin-bottom: 0; }
  .section-membership-2026__media {
    order: 2;
    overflow: hidden;
    margin: 0 2px; }
  .section-membership-2026__media-window {
    overflow: hidden;
    margin: 0 -2px;
    max-height: 450px; }
  .section-membership-2026__media-track {
    display: flex;
    width: max-content;
    gap: 8px;
    animation: section-membership-2026-marquee-x 15s linear infinite;
    will-change: transform; }
    @media screen and (min-width: 1025px) {
      .section-membership-2026__media-track {
        gap: 16px; } }
  .section-membership-2026__media-item {
    width: 130px;
    height: 130px;
    margin: 0 !important;
    overflow: hidden;
    border-radius: 3px; }
  .section-membership-2026__media-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1 / 1; }
  .section-membership-2026__cta {
    order: 3;
    display: grid;
    gap: 10px;
    padding: 24px;
    padding-top: 0; }
  .section-membership-2026__button {
    width: 100%;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase; }
  .section-membership-2026__button--primary {
    border-radius: 4px;
    background: var(--Orange, #F18747);
    padding: 16px 8px;
    text-transform: uppercase;
    color: #FFFFFF;
    line-height: 1;
    /* KS/Button */
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.64px;
    text-transform: uppercase; }
  .section-membership-2026__button--secondary {
    font-weight: 600;
    font-size: 16px;
    text-transform: none;
    background: transparent;
    color: #ecf2f9; }
  .section-membership-2026__small-text {
    margin: 2px 0 0;
    text-align: center;
    color: #FFF;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: none; }
  @media screen and (min-width: 768px) {
    .section-membership-2026 {
      padding: 20px 40px 28px; } }
  @media screen and (min-width: 1024px) {
    .section-membership-2026 {
      background: #1F3A64;
      padding: 0 80px; }
      .section-membership-2026 svg path {
        stroke: #ec8444; }
      .section-membership-2026__card {
        grid-template-columns: minmax(220px, 340px) minmax(0, 1fr) minmax(250px, 360px);
        max-width: 1240px;
        align-items: center;
        padding: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        margin: 0 auto; }
      .section-membership-2026__card::before {
        display: none; }
      .section-membership-2026__media {
        order: 1;
        align-self: center; }
      .section-membership-2026__media-window {
        width: min(19.5vw, 340px);
        height: 100%;
        margin: 0; }
      .section-membership-2026__media-track {
        flex-direction: column;
        animation: section-membership-2026-marquee-y 34s linear infinite; }
      .section-membership-2026__media-item {
        width: min(19.5vw, 340px);
        height: 246px;
        margin-right: 0;
        margin-bottom: 14px;
        border-radius: 16px; }
      .section-membership-2026__main {
        order: 2;
        display: flex;
        flex-direction: column;
        height: 100%;
        align-items: center;
        justify-content: center;
        align-self: start; }
      .section-membership-2026__title {
        margin: 0 0 34px;
        padding: 0;
        background: none;
        color: #f3f7fc;
        text-align: center; }
      .section-membership-2026__title-script {
        margin-right: 14px;
        font-size: 68px;
        color: white; }
      .section-membership-2026__title-main {
        color: white;
        font-size: 48px;
        font-weight: 600; }
      .section-membership-2026__benefits {
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 16px; }
      .section-membership-2026__benefit {
        display: flex;
        align-items: center;
        gap: 16px; }
        .section-membership-2026__benefit > svg {
          width: 24px;
          height: 24px;
          display: block; }
        .section-membership-2026__benefit-text {
          font-size: 18px; }
        .section-membership-2026__benefit::before {
          display: none; }
      .section-membership-2026__cta {
        order: 3;
        align-self: center;
        gap: 18px; }
      .section-membership-2026__button {
        min-height: 56px;
        font-size: 16px;
        padding: 16px 8px; }
      .section-membership-2026__button--primary {
        border-color: #ec8444;
        background: #ec8444;
        color: #ffffff; }
      .section-membership-2026__button--secondary {
        min-height: unset;
        padding: 0;
        border: none;
        text-transform: none;
        letter-spacing: 0;
        font-size: 16px;
        text-align: center;
        font-weight: 600;
        color: #ecf2fa;
        text-align: center; }
      .section-membership-2026__button--secondary:hover {
        text-decoration: underline; }
      .section-membership-2026__small-text {
        display: block; } }
  @media (prefers-reduced-motion: reduce) {
    .section-membership-2026__media-track {
      animation: none;
      transform: none; } }

@keyframes section-membership-2026-marquee-x {
  from {
    transform: translate3d(-50%, 0, 0); }
  to {
    transform: translate3d(0, 0, 0); } }
@keyframes section-membership-2026-marquee-y {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    transform: translate3d(0, -50%, 0); } }
/**
 * Styles for Slider 2026 (section-slider-2026).
 */
.section-slider-2026 {
  background: #F2F6FB;
  padding: 88px 144px; }
  .section-slider-2026__inner {
    max-width: 1440px;
    margin: 0 auto; }
  .section-slider-2026__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px; }
  .section-slider-2026__title {
    margin: 0;
    color: #111111;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: none; }
  .section-slider-2026__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid rgba(241, 135, 71, 0.4);
    background: #FDF0E8;
    color: #F18747;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap; }
  .section-slider-2026__slider {
    position: relative; }
  .section-slider-2026__swiper {
    overflow: hidden;
    width: 100%;
    padding: 2px 0 8px; }
  .section-slider-2026__swiper .swiper-wrapper {
    align-items: stretch; }
  .section-slider-2026__card.swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 3px;
    border: 1px solid #E2E6E8;
    background: #FFFFFF;
    box-shadow: 0 2px 6px rgba(17, 17, 17, 0.08);
    text-decoration: none; }
  .section-slider-2026__image-wrap {
    position: relative;
    height: 230px;
    overflow: hidden; }
  .section-slider-2026__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block; }
  .section-slider-2026__image-label {
    position: absolute;
    top: 8px;
    left: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 2px 8px;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    background: rgba(113, 37, 78, 0.78);
    backdrop-filter: blur(7.5px); }
  .section-slider-2026__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 24px 16px;
    margin-bottom: 0px; }
  .section-slider-2026__card-title {
    margin: 0 0 16px;
    color: #111111;
    font-size: 18px;
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: 0.005em;
    text-transform: uppercase; }
  .section-slider-2026__usp-list {
    margin-bottom: 18px; }
  .section-slider-2026__usp-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 6px; }
  .section-slider-2026__usp-row:last-child {
    margin-bottom: 0; }
  .section-slider-2026__usp-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    object-position: center;
    flex: 0 0 auto; }
  .section-slider-2026__usp-text {
    margin: 0; }
    .section-slider-2026__usp-text span {
      color: #5c5c5c;
      font-size: 14px;
      line-height: 1.4;
      font-weight: 400; }
  .section-slider-2026__usp-highlight {
    margin-left: 3px;
    color: #F18747 !important;
    font-weight: 700 !important; }
  .section-slider-2026__description {
    margin: 0;
    color: #5c5c5c;
    font-size: 14px;
    line-height: 1.4;
    min-height: 58px;
    font-weight: 400;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis; }
  .section-slider-2026__button {
    margin: 24px 16px;
    padding: 8px 16px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: #F18747;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background-color 0.2s ease; }
  .section-slider-2026__card:hover .section-slider-2026__button {
    background: #DD7437; }
  .section-slider-2026__pagination {
    position: relative;
    width: 288px;
    max-width: 100%;
    margin: 12px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-radius: 999px;
    overflow: hidden; }
  .section-slider-2026__pagination .swiper-pagination-bullet {
    flex: 1;
    height: 4px;
    border-radius: 0;
    background: rgba(54, 99, 97, 0.25);
    opacity: 1;
    margin: 0 !important;
    transition: background-color 0.3s ease; }
  .section-slider-2026__pagination .swiper-pagination-bullet-active {
    background: #366361;
    border-radius: 999px; }
  @media screen and (max-width: 1024px) {
    .section-slider-2026 {
      padding: 56px 40px; } }
  @media screen and (max-width: 768px) {
    .section-slider-2026 {
      padding: 56px 16px; } }
  @media screen and (max-width: 600px) {
    .section-slider-2026 {
      padding: 56px 16px; }
      .section-slider-2026__title {
        font-size: 20px; }
      .section-slider-2026__image-wrap {
        min-height: 210px; }
      .section-slider-2026__usp-text {
        font-size: 13px; }
      .section-slider-2026__description {
        font-size: 13px;
        min-height: 52px; }
      .section-slider-2026__button {
        font-size: 13px; } }

/**
 * Styles for Course Slider 2026 (section-course-slider-2026).
 */
.section-course-slider-2026 {
  background: #F2F6FB;
  padding: 88px 144px; }
  .section-course-slider-2026__inner {
    max-width: 1440px;
    margin: 0 auto; }
  .section-course-slider-2026__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px; }
  .section-course-slider-2026__title {
    margin: 0;
    color: #111111;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: none; }
  .section-course-slider-2026__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid rgba(241, 135, 71, 0.4);
    background: #FDF0E8;
    color: #F18747;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap; }
  .section-course-slider-2026__slider {
    position: relative; }
  .section-course-slider-2026__swiper {
    overflow: hidden;
    width: 100%;
    padding: 2px 0 8px; }
  .section-course-slider-2026__swiper .swiper-wrapper {
    align-items: stretch; }
  .section-course-slider-2026__card.swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 3px;
    border: 1px solid #E2E6E8;
    background: #FFFFFF;
    box-shadow: 0 2px 6px rgba(17, 17, 17, 0.08);
    text-decoration: none; }
  .section-course-slider-2026__image-wrap {
    position: relative;
    height: 230px;
    overflow: hidden; }
  .section-course-slider-2026__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block; }
  .section-course-slider-2026__image-label {
    position: absolute;
    top: 8px;
    left: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 2px 8px;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    background: rgba(113, 37, 78, 0.78);
    backdrop-filter: blur(7.5px); }
  .section-course-slider-2026__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 24px 16px;
    margin-bottom: 0px; }
  .section-course-slider-2026__card-title {
    margin: 0 0 16px;
    color: #111111;
    font-size: 18px;
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: 0.005em;
    text-transform: uppercase; }
  .section-course-slider-2026__usp-list {
    margin-bottom: 18px; }
  .section-course-slider-2026__usp-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 6px; }
  .section-course-slider-2026__usp-row:last-child {
    margin-bottom: 0; }
  .section-course-slider-2026__usp-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    object-position: center;
    flex: 0 0 auto; }
  .section-course-slider-2026__usp-text {
    margin: 0; }
    .section-course-slider-2026__usp-text span {
      color: #5c5c5c;
      font-size: 14px;
      line-height: 1.4;
      font-weight: 400; }
  .section-course-slider-2026__usp-highlight {
    margin-left: 3px;
    color: #F18747 !important;
    font-weight: 700 !important; }
  .section-course-slider-2026__description {
    margin: 0;
    color: #5c5c5c;
    font-size: 14px;
    line-height: 1.4;
    min-height: 58px;
    font-weight: 400;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis; }
  .section-course-slider-2026__button {
    margin: 24px 16px;
    padding: 8px 16px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: #F18747;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background-color 0.2s ease; }
  .section-course-slider-2026__card:hover .section-course-slider-2026__button {
    background: #DD7437; }
  .section-course-slider-2026__pagination {
    position: relative;
    width: 288px;
    max-width: 100%;
    margin: 12px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-radius: 999px;
    overflow: hidden; }
  .section-course-slider-2026__pagination .swiper-pagination-bullet {
    flex: 1;
    height: 4px;
    border-radius: 0;
    background: rgba(54, 99, 97, 0.25);
    opacity: 1;
    margin: 0 !important;
    transition: background-color 0.3s ease; }
  .section-course-slider-2026__pagination .swiper-pagination-bullet-active {
    background: #366361;
    border-radius: 999px; }
  @media screen and (max-width: 1024px) {
    .section-course-slider-2026 {
      padding: 56px 40px; } }
  @media screen and (max-width: 768px) {
    .section-course-slider-2026 {
      padding: 56px 16px; } }
  @media screen and (max-width: 600px) {
    .section-course-slider-2026 {
      padding: 56px 16px; }
      .section-course-slider-2026__title {
        font-size: 20px; }
      .section-course-slider-2026__image-wrap {
        min-height: 210px; }
      .section-course-slider-2026__usp-text {
        font-size: 13px; }
      .section-course-slider-2026__description {
        font-size: 13px;
        min-height: 52px; }
      .section-course-slider-2026__button {
        font-size: 13px; } }

/**
 * Styles for Slider variant 2026 (section-slider-two-2026).
 *
 * Desktop: two-column layout (text left, image right), 1 slide per view.
 * Mobile: stacked card layout similar to section-slider-2026.
 */
.section-slider-two-2026 {
  background: var(--Purple-light, #E8C0D5);
  padding: 48px 144px; }
  .section-slider-two-2026__inner {
    max-width: 1200px;
    margin: 0 auto; }
  .section-slider-two-2026__slider {
    position: relative; }
  .section-slider-two-2026__swiper {
    overflow: hidden;
    width: 100%;
    display: flex;
    gap: 24px;
    margin: 0 auto;
    max-width: 1200px; }
  .section-slider-two-2026__swiper .swiper-wrapper {
    align-items: stretch; }
  .section-slider-two-2026__slide.swiper-slide {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    gap: 40px;
    align-items: center; }
  .section-slider-two-2026__col-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: auto; }
  .section-slider-two-2026__section-title {
    margin: 0 0 8px;
    color: rgba(151, 54, 107, 0.79);
    font-size: 32px;
    margin-bottom: 1em;
    line-height: 1.2;
    font-weight: 400;
    font-style: italic;
    font-family: 'Damion', Georgia, 'Times New Roman', serif !important; }
    .section-slider-two-2026__section-title--mobile {
      display: none; }
  .section-slider-two-2026__card-title {
    margin: 0 0 12px;
    color: #111111;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em; }
  .section-slider-two-2026__description {
    margin: 0 0 40px;
    color: #5C5C5C;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    max-width: 380px; }
  .section-slider-two-2026__button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #F18747;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
    padding: 16px 24px; }
    .section-slider-two-2026__button:hover {
      background: #DD7437; }
  .section-slider-two-2026__col-image {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.12); }
  .section-slider-two-2026__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center; }
    @media screen and (min-width: 1024px) {
      .section-slider-two-2026__image {
        aspect-ratio: 540/343; } }
  .section-slider-two-2026__pagination {
    position: relative;
    width: 288px;
    max-width: 100%;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-radius: 999px;
    overflow: hidden; }
  .section-slider-two-2026__pagination .swiper-pagination-bullet {
    flex: 1;
    height: 4px;
    border-radius: 0;
    background: rgba(152, 57, 108, 0.23);
    opacity: 1;
    margin: 0 !important;
    transition: background-color 0.3s ease; }
  .section-slider-two-2026__pagination .swiper-pagination-bullet-active {
    background: var(--Purple, #98396C);
    border-radius: 999px; }
  @media screen and (max-width: 1024px) {
    .section-slider-two-2026 {
      padding: 40px 40px; }
      .section-slider-two-2026__slide.swiper-slide {
        gap: 24px; }
      .section-slider-two-2026__card-title {
        font-size: 20px; }
      .section-slider-two-2026__description {
        font-size: 14px; } }
  @media screen and (max-width: 768px) {
    .section-slider-two-2026 {
      padding: 40px 24px; } }
  @media screen and (max-width: 600px) {
    .section-slider-two-2026 {
      padding: 40px 24px; }
      .section-slider-two-2026__slide.swiper-slide {
        display: flex;
        flex-direction: column;
        gap: 0;
        border-radius: 6px;
        overflow: hidden; }
      .section-slider-two-2026__col-text {
        order: 2;
        padding: 20px 0;
        padding-bottom: 24px; }
      .section-slider-two-2026__section-title {
        font-size: 32px;
        margin-bottom: 32px; }
      .section-slider-two-2026__col-image {
        order: 1;
        width: 100%;
        border-radius: 0;
        box-shadow: none; }
      .section-slider-two-2026__pagination {
        margin-top: 0; }
      .section-slider-two-2026__image {
        aspect-ratio: 16 / 10; }
      .section-slider-two-2026__card-title {
        font-size: 24px;
        margin: 0 0 24px; }
      .section-slider-two-2026__description {
        font-size: 16px;
        max-width: none;
        letter-spacing: 0.32px;
        margin: 0 0 24px; }
      .section-slider-two-2026__button {
        width: 100%;
        min-height: 48px;
        font-size: 16px; } }

/**
 * Styles for USP numbers 2026 (section-usp-numbers-2026).
 */
.section-usp-numbers-2026 {
  background: #A6C9BE;
  padding: 32px 144px; }
  @media screen and (max-width: 1024px) {
    .section-usp-numbers-2026 {
      padding: 32px 40px; } }
  @media screen and (max-width: 768px) {
    .section-usp-numbers-2026 {
      padding: 32px 16px; } }
  .section-usp-numbers-2026__inner {
    display: flex;
    gap: 104px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto; }
    @media screen and (max-width: 768px) {
      .section-usp-numbers-2026__inner {
        flex-direction: column;
        gap: 16px; } }
  .section-usp-numbers-2026__number {
    text-align: center; }
    .section-usp-numbers-2026__number-inner {
      display: flex;
      justify-content: center; }
    .section-usp-numbers-2026__number-prefix, .section-usp-numbers-2026__number-suffix, .section-usp-numbers-2026__number-number {
      color: #15363E;
      font-size: 36px;
      font-weight: 700; }
    .section-usp-numbers-2026__number-text {
      font-size: 16px;
      font-weight: 400; }

/**
 * Styles for Nyhetsbrev 2026 (section-newsletter-2026).
 */
.section-newsletter-2026 {
  background: #15363E;
  color: #FFFFFF;
  padding: 40px 16px; }
  .section-newsletter-2026__inner {
    max-width: 1232px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
    align-items: center; }
  .section-newsletter-2026__content {
    max-width: 560px; }
  .section-newsletter-2026__title {
    color: #FFFFFF;
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: none; }
  .section-newsletter-2026__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px; }
  .section-newsletter-2026__item {
    display: flex;
    align-items: flex-start;
    gap: 16px; }
  .section-newsletter-2026__item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-top: 4px;
    color: #FFFFFF; }
  .section-newsletter-2026__item-title {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400; }
  .section-newsletter-2026__form {
    width: 100%;
    max-width: 610px; }
  .section-newsletter-2026__form-wrapper {
    width: 100%; }
  .section-newsletter-2026__form-fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "email submit" "gdpr gdpr";
    gap: 8px;
    align-items: start; }
  .section-newsletter-2026__form-row {
    margin-bottom: 0 !important; }
    .section-newsletter-2026__form-row:nth-of-type(1) {
      grid-area: email; }
    .section-newsletter-2026__form-row:nth-of-type(2) {
      grid-area: gdpr; }
    .section-newsletter-2026__form-row:nth-of-type(3) {
      grid-area: submit;
      width: auto !important; }
  .section-newsletter-2026__email {
    display: block;
    width: 100%;
    min-width: 0;
    height: 54px;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    background: #D9D9D9;
    color: #15363E;
    font-size: 16px;
    line-height: 1;
    padding: 0 22px;
    outline: none; }
    .section-newsletter-2026__email::placeholder {
      color: #8F8F8F;
      opacity: 1; }
    .section-newsletter-2026__email:focus {
      border-color: #F18747; }
  .section-newsletter-2026__submit {
    border: 1px solid #F18747;
    border-radius: 4px;
    background: #F18747;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 16px 8px;
    white-space: nowrap;
    margin-top: 40px; }
  .section-newsletter-2026__gdpr {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 400; }
    .section-newsletter-2026__gdpr input[type="checkbox"] {
      appearance: none;
      width: 22px;
      height: 22px;
      min-width: 22px;
      border: 1px solid #FFFFFF;
      border-radius: 2px;
      margin: 0;
      background: transparent;
      position: relative;
      cursor: pointer; }
      .section-newsletter-2026__gdpr input[type="checkbox"]:checked {
        background: #F18747;
        border-color: #F18747; }
      .section-newsletter-2026__gdpr input[type="checkbox"]:checked::after {
        content: "";
        position: absolute;
        left: 7px;
        top: 1px;
        width: 5px;
        height: 12px;
        border: solid #FFFFFF;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg); }
    .section-newsletter-2026__gdpr div {
      color: white; }
    .section-newsletter-2026__gdpr a {
      color: #FFFFFF;
      text-decoration: underline;
      font-size: inherit;
      font-weight: inherit; }
  .section-newsletter-2026 .qterest-success-messages,
  .section-newsletter-2026 .qterest-error-messages {
    margin-bottom: 12px;
    border-radius: 4px; }
  .section-newsletter-2026 .qterest-success-messages {
    background-color: #2C8C63; }
  .section-newsletter-2026 .qterest-error-messages {
    background-color: #CF4D4D; }
  @media screen and (min-width: 768px) {
    .section-newsletter-2026 {
      padding: 40px 40px; }
      .section-newsletter-2026__submit {
        margin-top: 0; } }
  @media screen and (min-width: 992px) {
    .section-newsletter-2026 {
      padding: 40px 144px; }
      .section-newsletter-2026__inner {
        grid-template-columns: 1fr minmax(430px, 610px);
        gap: 64px; }
      .section-newsletter-2026__submit {
        height: 54px;
        margin-top: 0;
        padding: 8px 40px; } }
  @media screen and (max-width: 991px) {
    .section-newsletter-2026__submit {
      font-size: 18px; } }
  @media screen and (max-width: 700px) {
    .section-newsletter-2026 {
      padding: 40px 24px; }
      .section-newsletter-2026__inner {
        gap: 40px; }
      .section-newsletter-2026__title {
        font-size: 28px; }
      .section-newsletter-2026__form-fields {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas: "email" "gdpr" "submit"; }
      .section-newsletter-2026__form-row:nth-of-type(3) {
        width: 100% !important; }
      .section-newsletter-2026__submit {
        width: 100%;
        min-width: 0; } }

/**
 * Styles for Blog 2026 (section-blog-2026).
 */
.section-blog-2026 {
  /* Block styles go here */
  background: #F2F6FB; }
  .section-blog-2026__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 56px 16px;
    max-width: 1200px;
    margin: 0 auto; }
  .section-blog-2026__header {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .section-blog-2026__title {
    font-size: 20px;
    font-weight: 700; }
  .section-blog-2026__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid rgba(241, 135, 71, 0.4);
    background: #FDF0E8;
    color: #F18747;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap; }
  .section-blog-2026__articles {
    display: flex;
    flex-direction: column;
    gap: 16px; }
  .section-blog-2026__article:hover h3 {
    text-decoration: underline; }
  .section-blog-2026__article-link {
    display: flex;
    gap: 8px;
    text-decoration: none; }
  .section-blog-2026__article-image {
    width: 80px;
    border-radius: 2px;
    overflow: hidden;
    min-width: 80px; }
  .section-blog-2026__article-title {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 600;
    text-transform: none; }
  .section-blog-2026__article-date {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.75;
    text-transform: uppercase; }
  .section-blog-2026__separator {
    height: 1px;
    background: rgba(0, 0, 0, 0.15); }
  @media screen and (min-width: 728px) {
    .section-blog-2026 {
      padding: 88px 40px; }
      .section-blog-2026__inner {
        padding: 0; } }
  @media screen and (min-width: 1024px) {
    .section-blog-2026 {
      padding: 88px 144px; } }

/**
 * Styles for Textblock 2026 (section-textblock-2026).
 */
.section-textblock-2026__inner {
  display: block;
  position: relative;
  max-width: none;
  margin: 0;
  color: inherit;
  background-size: cover;
  background-position: center;
  min-height: 320px; }
  .section-textblock-2026__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0; }
.section-textblock-2026__image-container {
  display: none; }
.section-textblock-2026__image {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover; }
.section-textblock-2026__content-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  padding: 40px 24px; }
  @media screen and (min-width: 768px) {
    .section-textblock-2026__content-container {
      padding: 40px 40px; } }
.section-textblock-2026__title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px; }
.section-textblock-2026__content {
  color: #fff;
  font-size: 16px; }
  .section-textblock-2026__content p, .section-textblock-2026__content a, .section-textblock-2026__content li, .section-textblock-2026__content strong, .section-textblock-2026__content em, .section-textblock-2026__content span {
    color: inherit; }
.section-textblock-2026--custom-color .section-textblock-2026__content-container,
.section-textblock-2026--custom-color .section-textblock-2026__title,
.section-textblock-2026--custom-color .section-textblock-2026__content {
  color: inherit; }
@media screen and (min-width: 1024px) {
  .section-textblock-2026__inner {
    display: grid;
    grid-template-columns: 1fr 3fr;
    max-width: 1200px;
    margin: 0 auto;
    position: static;
    background-image: none !important;
    min-height: 0; }
    .section-textblock-2026__inner::before {
      display: none; }
  .section-textblock-2026__image-container {
    display: block;
    border-radius: 100%;
    overflow: hidden;
    width: 250px;
    height: 250px;
    margin: auto; }
  .section-textblock-2026__content-container {
    position: static;
    color: #000;
    padding: 54px 144px; }
  .section-textblock-2026__title {
    color: #000;
    font-size: 38px; }
  .section-textblock-2026__content {
    color: #000; } }

/**
 * Styles for Product slider 2026 (section-product-slider-2026).
 */
.section-product-slider-2026 {
  background: #F2F6FB;
  padding: 56px 16px; }
  .section-product-slider-2026__inner {
    max-width: 1440px;
    margin: 0 auto; }
  .section-product-slider-2026__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px; }
  .section-product-slider-2026__title {
    margin: 0;
    color: #111111;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: none; }
  .section-product-slider-2026__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid rgba(241, 135, 71, 0.4);
    background: #FDF0E8;
    color: #F18747;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap; }
  .section-product-slider-2026__slider {
    position: relative; }
  .section-product-slider-2026__swiper {
    overflow: hidden;
    width: 100%;
    padding: 2px 0 8px; }
  .section-product-slider-2026__swiper .swiper-wrapper {
    align-items: stretch; }
  .section-product-slider-2026__card.swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 3px;
    border: 1px solid #E2E6E8;
    background: #FFFFFF;
    box-shadow: 0 2px 6px rgba(17, 17, 17, 0.08); }
  .section-product-slider-2026__card-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: #111111;
    text-decoration: none;
    padding: 14px 8px 0; }
  .section-product-slider-2026__image-wrap {
    max-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px; }
  .section-product-slider-2026__image {
    max-width: 100%;
    width: auto;
    max-height: 180px;
    object-fit: contain; }
  .section-product-slider-2026__product-title {
    margin: 0 0 16px;
    color: #111111;
    font-size: 20px;
    line-height: 1.02;
    font-weight: 700;
    text-transform: uppercase; }
    @media screen and (min-width: 1025px) {
      .section-product-slider-2026__product-title {
        font-size: 18px; } }
  .section-product-slider-2026__product-description {
    margin: 0;
    color: #6A6A6A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 156.25% */
    min-height: 78px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis; }
  .section-product-slider-2026__card-bottom {
    display: grid;
    grid-template-columns: 2fr 3fr;
    margin-top: 24px;
    gap: 8px;
    padding: 10px 8px; }
  .section-product-slider-2026__price-wrapper {
    flex: 1;
    padding: 8px;
    min-width: 0;
    background-color: #F6F6F6F6;
    text-align: center; }
  .section-product-slider-2026__price-current {
    color: #111111;
    font-size: 24px;
    line-height: 0.98;
    font-weight: 700;
    white-space: nowrap;
    text-transform: none; }
  .section-product-slider-2026__price-previous {
    min-height: 14px;
    margin-top: 2px;
    color: #707070;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
    text-transform: none; }
  .section-product-slider-2026__button {
    flex: 0 0 102px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 8px;
    border-radius: 4px;
    background: #F18747;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color 0.2s ease; }
  .section-product-slider-2026__button:hover {
    background: #DD7437; }
  .section-product-slider-2026__pagination {
    position: relative;
    width: 288px;
    max-width: 100%;
    height: 4px;
    margin: 12px auto 0;
    background: rgba(54, 99, 97, 0.25);
    border-radius: 999px;
    overflow: hidden; }
  .section-product-slider-2026__pagination.swiper-pagination-progressbar {
    position: relative; }
  .section-product-slider-2026__pagination .swiper-pagination-progressbar-fill {
    background: #366361;
    border-radius: 999px; }
  @media screen and (min-width: 768px) {
    .section-product-slider-2026 {
      padding: 56px 40px; } }
  @media screen and (min-width: 1024px) {
    .section-product-slider-2026 {
      padding: 88px 144px; } }

.section-success-stories-2026 {
  background: #F2F6FB;
  padding: 40px 0;
  overflow: hidden; }
  @media (max-width: 768px) {
    .section-success-stories-2026 {
      padding: 40px 0; } }
  .section-success-stories-2026__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; }
    @media screen and (min-width: 768px) {
      .section-success-stories-2026__inner {
        padding: 0 40px; } }
  .section-success-stories-2026__header {
    justify-content: space-between;
    align-items: center;
    display: flex;
    margin: 0 70px; }
    @media (max-width: 768px) {
      .section-success-stories-2026__header {
        margin: 0; } }
  .section-success-stories-2026__title {
    font-size: 24px;
    margin: 0; }
    @media (max-width: 768px) {
      .section-success-stories-2026__title {
        font-size: 24px; } }
    .section-success-stories-2026__title--mobile {
      display: none; }
      @media (max-width: 768px) {
        .section-success-stories-2026__title--mobile {
          display: block; } }
    @media (max-width: 768px) {
      .section-success-stories-2026__title--desktop {
        display: none; } }
  .section-success-stories-2026__header-link {
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid rgba(241, 135, 71, 0.4);
    background: #FDF0E8;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #F18747; }
    .section-success-stories-2026__header-link--mobile {
      display: none; }
      @media (max-width: 768px) {
        .section-success-stories-2026__header-link--mobile {
          display: inline-block; } }
    @media (max-width: 768px) {
      .section-success-stories-2026__header-link--desktop {
        display: none; } }
  .section-success-stories-2026__swiper {
    overflow: visible;
    padding: 20px 0; }
  .section-success-stories-2026 .swiper-slide {
    opacity: 0;
    transition: opacity 0.3s ease; }
  .section-success-stories-2026 .swiper-slide-prev,
  .section-success-stories-2026 .swiper-slide-next {
    opacity: 0.4; }
  .section-success-stories-2026 .swiper-slide-active {
    opacity: 1; }
  .section-success-stories-2026 .swiper-slide:not(.swiper-slide-active) .section-success-stories-2026__link {
    opacity: 0;
    pointer-events: none; }
  .section-success-stories-2026__card {
    background: #fff;
    border-radius: 4px;
    border: 1px solid #E3E3E3;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column; }
    .section-success-stories-2026__card--clickable {
      text-decoration: none;
      color: inherit;
      cursor: pointer; }
  .section-success-stories-2026__image-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    min-height: 280px; }
  .section-success-stories-2026__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; }
  .section-success-stories-2026__content {
    padding: 24px 16px;
    padding-top: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: opacity 0.4s ease; }
    @media (max-width: 768px) {
      .section-success-stories-2026__card--clickable .section-success-stories-2026__content {
        padding: 16px; } }
  .section-success-stories-2026__name {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 8px;
    letter-spacing: 1; }
  .section-success-stories-2026__quote {
    margin: 0 0 16px;
    flex: 1;
    color: #6A6A6A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px; }
    @media screen and (min-width: 1025px) {
      .section-success-stories-2026__quote {
        font-size: 16px; } }
    .section-success-stories-2026__card--clickable .section-success-stories-2026__quote {
      margin-bottom: 0; }
  .section-success-stories-2026__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F18747;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.4s ease, background-color 0.2s ease;
    align-self: flex-start; }
    .section-success-stories-2026__link:hover {
      background-color: #ee6e21;
      color: #fff; }
    .section-success-stories-2026__link--has-image {
      overflow: hidden; }
  .section-success-stories-2026__link-image {
    width: calc(4 / 12 * 100%);
    flex-shrink: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    margin: -12px 8px -12px -20px; }
  .section-success-stories-2026__link-arrow {
    font-size: 18px;
    line-height: 1;
    color: #fff;
    margin-left: auto; }
  .section-success-stories-2026__progress {
    height: 4px;
    background: var(--Green-light, #A6C9BE);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease; }
  .section-success-stories-2026__progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 0 66px 66px 0;
    background: var(--Green, #366361); }
  .swiper-slide-active .section-success-stories-2026__progress {
    opacity: 1; }

.section-success-stories-slider-2026 {
  background: #F2F6FB;
  padding: 40px 0;
  overflow: hidden; }
  @media (max-width: 768px) {
    .section-success-stories-slider-2026 {
      padding: 40px 0; } }
  .section-success-stories-slider-2026__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; }
    @media screen and (min-width: 768px) {
      .section-success-stories-slider-2026__inner {
        padding: 0 40px; } }
  .section-success-stories-slider-2026__header {
    justify-content: space-between;
    align-items: center;
    display: flex;
    margin: 0 70px; }
    @media (max-width: 768px) {
      .section-success-stories-slider-2026__header {
        margin: 0; } }
  .section-success-stories-slider-2026__title {
    font-size: 24px;
    margin: 0; }
    @media (max-width: 768px) {
      .section-success-stories-slider-2026__title {
        font-size: 24px; } }
    .section-success-stories-slider-2026__title--mobile {
      display: none; }
      @media (max-width: 768px) {
        .section-success-stories-slider-2026__title--mobile {
          display: block; } }
    @media (max-width: 768px) {
      .section-success-stories-slider-2026__title--desktop {
        display: none; } }
  .section-success-stories-slider-2026__header-link {
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid rgba(241, 135, 71, 0.4);
    background: #FDF0E8;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #F18747; }
    .section-success-stories-slider-2026__header-link--mobile {
      display: none; }
      @media (max-width: 768px) {
        .section-success-stories-slider-2026__header-link--mobile {
          display: inline-block; } }
    @media (max-width: 768px) {
      .section-success-stories-slider-2026__header-link--desktop {
        display: none; } }
  .section-success-stories-slider-2026__swiper {
    overflow: visible;
    padding: 20px 0; }
  .section-success-stories-slider-2026 .swiper-slide {
    opacity: 0;
    transition: opacity 0.3s ease; }
  .section-success-stories-slider-2026 .swiper-slide-prev,
  .section-success-stories-slider-2026 .swiper-slide-next {
    opacity: 0.4; }
  .section-success-stories-slider-2026 .swiper-slide-active {
    opacity: 1; }
  .section-success-stories-slider-2026__card {
    background: #fff;
    border-radius: 4px;
    border: 1px solid #E3E3E3;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column; }
    .section-success-stories-slider-2026__card--clickable {
      text-decoration: none;
      color: inherit;
      cursor: pointer; }
  .section-success-stories-slider-2026__image-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    min-height: 280px; }
  .section-success-stories-slider-2026__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; }
  .section-success-stories-slider-2026__content {
    padding: 24px 16px;
    padding-top: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: opacity 0.4s ease; }
    @media (max-width: 768px) {
      .section-success-stories-slider-2026__card--clickable .section-success-stories-slider-2026__content {
        padding: 16px; } }
  .section-success-stories-slider-2026__name {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 8px;
    letter-spacing: 1; }
  .section-success-stories-slider-2026__quote {
    margin: 0 0 16px;
    flex: 1;
    color: #6A6A6A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px; }
    @media screen and (min-width: 1025px) {
      .section-success-stories-slider-2026__quote {
        font-size: 16px; } }
    .section-success-stories-slider-2026__card--clickable .section-success-stories-slider-2026__quote {
      margin-bottom: 0; }
  .section-success-stories-slider-2026__progress {
    height: 4px;
    background: var(--Green-light, #A6C9BE);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease; }
  .section-success-stories-slider-2026__progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 0 66px 66px 0;
    background: var(--Green, #366361); }
  .swiper-slide-active .section-success-stories-slider-2026__progress {
    opacity: 1; }

.section-recipes-slider-2026 {
  background: #F2F6FB;
  padding: 40px 0;
  overflow: hidden; }
  @media (max-width: 768px) {
    .section-recipes-slider-2026 {
      padding: 40px 0; } }
  .section-recipes-slider-2026__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; }
    @media screen and (min-width: 768px) {
      .section-recipes-slider-2026__inner {
        padding: 0 40px; } }
  .section-recipes-slider-2026__header {
    justify-content: space-between;
    align-items: center;
    display: flex;
    margin: 0 70px; }
    @media (max-width: 768px) {
      .section-recipes-slider-2026__header {
        margin: 0; } }
  .section-recipes-slider-2026__title {
    font-size: 24px;
    margin: 0; }
    @media (max-width: 768px) {
      .section-recipes-slider-2026__title {
        font-size: 24px; } }
    .section-recipes-slider-2026__title--mobile {
      display: none; }
      @media (max-width: 768px) {
        .section-recipes-slider-2026__title--mobile {
          display: block; } }
    @media (max-width: 768px) {
      .section-recipes-slider-2026__title--desktop {
        display: none; } }
  .section-recipes-slider-2026__header-link {
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid rgba(241, 135, 71, 0.4);
    background: #FDF0E8;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #F18747; }
    .section-recipes-slider-2026__header-link--mobile {
      display: none; }
      @media (max-width: 768px) {
        .section-recipes-slider-2026__header-link--mobile {
          display: inline-block; } }
    @media (max-width: 768px) {
      .section-recipes-slider-2026__header-link--desktop {
        display: none; } }
  .section-recipes-slider-2026__swiper {
    overflow: visible;
    padding: 20px 0; }
  .section-recipes-slider-2026 .swiper-slide {
    opacity: 0;
    transition: opacity 0.3s ease; }
  .section-recipes-slider-2026 .swiper-slide-prev,
  .section-recipes-slider-2026 .swiper-slide-next {
    opacity: 0.4; }
  .section-recipes-slider-2026 .swiper-slide-active {
    opacity: 1; }
  .section-recipes-slider-2026__card {
    background: #fff;
    border-radius: 4px;
    border: 1px solid #E3E3E3;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer; }
  .section-recipes-slider-2026__image-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    min-height: 280px; }
  .section-recipes-slider-2026__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; }
  .section-recipes-slider-2026__content {
    padding: 24px 16px;
    padding-top: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: opacity 0.4s ease; }
  .section-recipes-slider-2026__name {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 8px;
    letter-spacing: 1; }
  .section-recipes-slider-2026__quote {
    margin: 0 0 16px;
    flex: 1;
    color: #6A6A6A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px; }
    @media screen and (min-width: 1025px) {
      .section-recipes-slider-2026__quote {
        font-size: 16px; } }
  .section-recipes-slider-2026__progress {
    height: 4px;
    background: var(--Green-light, #A6C9BE);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease; }
  .section-recipes-slider-2026__progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 0 66px 66px 0;
    background: var(--Green, #366361); }
  .swiper-slide-active .section-recipes-slider-2026__progress {
    opacity: 1; }

.home header {
  margin-top: 0 !important; }

/*# sourceMappingURL=main_2025.css.map */
