/* Lidl @font-face: printed in wp_head via lidlhouse_print_font_faces_in_head() in functions.php */
:root {
  --colorPrimaryBlue: #0050aa;
  --colorPrimaryYellow: #fff103;
  --colorPrimaryGreen: #bef45b;
  --colorPrimaryRed: #e60814;
  --colorSecWhite: #f0f7ff;
  --colorPrimaryWhite: #f0f7ff;
  --colorSecBlue: #002466;

  --filterSecBlue: brightness(0) saturate(100%) invert(7%) sepia(74%)
    saturate(6027%) hue-rotate(216deg) brightness(86%) contrast(102%);
  --filterPrimBlue: brightness(0) saturate(100%) invert(21%) sepia(31%)
    saturate(5880%) hue-rotate(200deg) brightness(94%) contrast(103%);

  --wrapperWidth: 1704px;
  --wrapperWidthXl: 1701px;
  --wrapperWidthLg: 1460px;
  --wrapperWidthSm: 1065px;
  --mobilePadding: 20px;
  --padding: 32px;
  --radius: 10px;

  --leftPadding: max(
    var(--padding),
    calc((100dvw - var(--wrapperWidth) + 2 * var(--padding)) / 2)
  );
}

@media screen and (max-width: 1220px) {
  :root {
    --padding: 26px;
  }
}

@media screen and (max-width: 780px) {
  :root {
    --padding: var(--mobilePadding);
  }
}

body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
blockquote,
figure {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

body {
  position: relative;
  /* Lidl Regular @font-face is 300–400; 400 keeps parity with WP/editor "normal" without faux-bold */
  font-weight: 400;
  max-width: 2500px;
  margin: 0 auto;
  background-color: var(--colorBg);
  color: var(--colorTxt);
  padding-top: 160px;
  font-family: "Lidl";
}
/* LidlFontCondPro = condensed design; “tight” look vs non-condensed fonts is expected */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

ul.flex > li:last-of-type {
  margin-right: 0 !important;
}
ul.flex.col > li:last-of-type {
  margin-bottom: 0 !important;
}
ul.flex.border > li:last-of-type {
  border-right: 0 !important;
}
ul.flex.col.border > li:last-of-type {
  border-bottom: 0 !important;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
}

address {
  font-style: normal;
}

html {
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

[style*="--aspect-ratio"] > :first-child {
  width: 100%;
}
[style*="--aspect-ratio"] > img {
  height: auto;
}
@supports (--custom: property) {
  [style*="--aspect-ratio"] {
    position: relative;
  }
  [style*="--aspect-ratio"]::before {
    content: "";
    display: block;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
  }
  [style*="--aspect-ratio"] > :first-child {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}

article:has(.main-link):focus-within,
:focus-visible {
  outline: none;
}

.js-focus,
article .main-link,
:focus:not(:focus-visible) {
  outline: none;
}

button {
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}

@media screen and (max-width: 1420px) {
  body {
    padding-top: 110px;
  }
}
@media screen and (max-width: 860px) {
  body.menu-open {
    height: 100%;
    overflow: hidden;
  }
}

/*  containers */

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex.col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.flex.centered {
  justify-content: center;
  align-items: center;
}

/*  general */

/*  κλείδωμα του scroll στο background
    σε περίπτωση που έχουμε ένα στοιχείο
    που καλύπτει όλη την οθόνη */
.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

/*  κεντράρισμα εικόνας*/
.img-center {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/*  κρύψιμο οριζόντιας μπάρας κύλισης*/
.scrollbar-hide {
  overflow-x: scroll;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.pntr {
  cursor: pointer;
}

.main-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Honeypot: off-screen, not display:none (some bots ignore display:none). */
.lidlhouse-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  clip: auto;
  overflow: visible;
  background: #fff; /* Ένα στυλ για να ξεχωρίζει */
  color: #000;
  padding: 5px;
  z-index: 10;
}

.skip-link {
  background: #000;
  color: #fff;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

/* wrappers */

.wrapper {
  max-width: var(--wrapperWidth);
  padding-inline: var(--padding) calc(var(--padding) + 4px);
  margin-inline: auto;
}
.wrapper.sm {
  max-width: var(--wrapperWidthSm);
}
.wrapper.xl {
  max-width: var(--wrapperWidthXl);
}

.wrapper.pr-0 {
  padding-right: 0;
}

@media screen and (max-width: 1200px) {
  .tab-pr-0 {
    padding-right: 0;
  }
}

@media screen and (max-width: 620px) {
  .wrapper {
    padding-inline: calc(var(--padding) + 1px) var(--padding);
  }
  .mob-pr-0 {
    padding-right: 0;
  }
  .mob-0 {
    padding-inline: 0;
  }
}

@media screen and (max-width: 620px) {
  .mob-padding {
    padding-inline: calc(var(--padding) + 1px) var(--padding);
  }
}

/* grid */

.grid {
  display: grid;
  grid-template-columns: repeat(var(--columns, 4), minmax(0, 1fr));
  grid-gap: var(--gridGapRow, 32px) var(--gridGap, 24px);
}

.grid.template-grid {
  --columns: 12;
}
@media screen and (max-width: 1120px) {
  .grid.tab-4 {
    --columns: 4;
  }
  .grid.tab-2 {
    --columns: 2;
  }
}

@media screen and (max-width: 620px) {
  .grid {
    --gridGap: 1rem;
  }
  .grid,
  .grid.mob-1 {
    --columns: 1;
  }
  .grid.mob-2 {
    --columns: 2;
  }
  .grid.mob-border {
    --gridGapRow: 28px;
  }
  .grid.mob-border > li:not(:last-of-type),
  .grid.mob-border > article:not(:last-of-type),
  .grid.mob-border > div:not(:last-of-type) {
    padding-bottom: var(--bottomSpace, 23px);
    border-bottom: 1px solid var(--colorPrimaryBlue);
  }
}

@media screen and (max-width: 440px) {
  .grid.sm-1 {
    --columns: 1;
  }
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 71%;
  color: var(--colorSecBlue);
}

.two-col-grid .title {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.18px;
  color: var(--colorPrimaryBlue);
  font-family: "Lidl-Semibold";
  margin-bottom: 21px;
}

@media screen and (max-width: 720px) {
  .two-col-grid {
    display: block;
  }
}

/* event date badge */

.event-date {
  width: 60px;
  height: 60px;
  background-color: var(--colorPrimaryYellow);
  color: var(--colorSecBlue);
  display: grid;
  place-content: center;
  text-align: center;
  transform: rotate(45deg);
  position: absolute;
  right: 30px;
  top: 28px;
}

.event-date .info {
  transform: rotate(-45deg);
  font-family: "Lidl-Semibold";
}

.event-date .info .month {
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.23px;
  color: var(--colorPrimaryRed);
}
.event-date .info .date {
  font-size: 26px;
  line-height: 32px;
  letter-spacing: 0.39px;
  color: var(--colorPrimaryRed);
}

/* cards */

/* card general */

.card {
  position: relative;
}

.card.row {
  display: flex;
}
.card.row > div {
  width: 50%;
}
.card.row.img-sm > div {
  flex-grow: 1;
}

.card.cover {
  display: grid;
}
.card.cover > div {
  grid-column: 1/-1;
  grid-row: 1/-1;
}

/* card-image */

.card-image {
  margin-bottom: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1.392;
}
.card-image.squarish {
  aspect-ratio: 1.182;
  margin-bottom: 25px;
}
.card-image.wide {
  aspect-ratio: 1.674;
  margin-bottom: 14px;
}
.card.row .card-image {
  margin-bottom: 0;
  height: fit-content;
}
.card.row.img-r .card-image {
  order: 2;
}
.card.row.img-sm .card-image {
  width: 120px;
  flex-grow: 0;
}
.card.cover .card-image {
  z-index: -1;
  margin-bottom: 0;
}

.card-image:has(.video-icon) {
  position: relative;
}

/* hover scale on card images (all cards) */
.card-image img {
  transition: transform 0.35s ease;
}
.card:hover .card-image img,
.card-image:hover img {
  transform: scale(1.05);
}

@media screen and (max-width: 1080px) {
  .card-image.squarish {
    aspect-ratio: 1.17;
    margin-bottom: 27px;
  }
}
/* card info general */
.card-info {
  display: flex;
  flex-direction: column;
}

.card-info > *:last-child {
  margin-bottom: 0 !important;
}
.card.row .card-info {
  padding-inline: 42px 2rem;
}
.card.row.img-r .card-info {
  padding-inline: 0 1rem;
}

.card.cover .card-info {
  display: flex;
}
.card.cover.center .card-info {
  align-items: center;
  justify-content: center;
}
.card.cover.bottom .card-info {
  justify-content: flex-end;
}

@media screen and (max-width: 1180px) {
  .card.row .card-info {
    padding-left: 2rem;
  }
}

/* card info category */

.card .category {
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.21px;
  color: #fff;
  margin-bottom: 13px;
}

/* card tags */

.card:has(.card-tags) {
  container-name: card-tag;
  container-type: inline-size;
}

.card .card-tags {
  position: absolute;
  top: 20px;
  left: 20px;
  text-align: center;
  display: flex;
  gap: 6px;
  width: calc(100% - 120px);
  flex-wrap: wrap;
}

@container card-tag (width < 280px) {
  .card .card-tags {
    top: 10px;
    left: 10px;
  }
}

/* card info title */

.card .title {
  margin-bottom: 11px;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0.36px;
  color: var(--colorPrimaryBlue);
  font-family: "Lidl-Semibold";
}

.card .title span {
  display: block;
  color: var(--colorPrimaryYellow);
}

/* card info lead */

.card .lead {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.27px;
  color: var(--colorSecBlue);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.card .lead > p:not(:last-of-type) {
  margin-bottom: 0.5rem;
}

/* card absolute elements */

.card:has(.video-icon) .card-image {
  position: relative;
}

.card .video-icon {
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 32px;
  line-height: 27px;
  padding: 9px 11px 9px 13px;
  border-radius: 25px;
}

.card .tag-list {
  position: absolute;
  left: 19px;
  top: 18px;
  z-index: 20;
  font-family: "Lidl-Semibold";
}

/* small dimensions */

@media screen and (max-width: 860px) {
  .card.tab-bl {
    display: block;
  }
  .card.row.tab-bl > div {
    width: 100%;
  }
  .card.row.tab-bl .card-info {
    padding: 30px 24px 42px;
    min-height: 200px;
  }
}

/* team card */

a.teamCard {
  display: block;
  text-decoration: none;
  color: inherit;
}

.teamCard {
  aspect-ratio: 1.175;
  border-radius: var(--radius);
  overflow: hidden;
  container-name: card-team;
  container-type: inline-size;
}
.teamCard::before {
  content: "";
  inset: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 1);
}

.teamCard .card-image {
  position: absolute;
  inset: 0;
  aspect-ratio: unset;
  opacity: 0.7;
  margin-bottom: 0;
  /* z-index: -1; */
}
.teamCard .card-info {
  padding: 19px 37px 25px 22px;
  position: relative;
  height: 100%;
}

.teamCard .name {
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0.36px;
  margin-bottom: 2px;
  color: #fff;
}
.teamCard .prof {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.18px;
  color: var(--colorPrimaryYellow);
}
.teamCard .quote {
  margin-block: auto 0;
  color: #fff;
  padding-top: 40px;
  position: relative;
}
.teamCard .quote::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 36px;
  height: 40px;
  background-image: url("../assets/icons/quote.svg");
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0) saturate(100%) invert(90%) sepia(57%) saturate(2731%)
    hue-rotate(347deg) brightness(99%) contrast(106%);
}

@container card-team (width < 330px) {
  .teamCard .card-info {
    padding: 16px 30px 20px 15px;
  }

  .teamCard .quote,
  .teamCard .name {
    font-size: 22px;
    letter-spacing: 0.33px;
  }
  .teamCard .quote {
    line-height: 24px;
    padding-top: 30px;
  }

  .teamCard .quote::before {
    width: 30px;
    height: 30px;
  }
}
@container card-team (width < 290px) {
  .teamCard {
    aspect-ratio: 1.075;
  }
  .teamCard .card-info {
    padding: 14px 20px 16px 10px;
  }

  .teamCard .quote,
  .teamCard .name {
    font-size: 20px;
    letter-spacing: 0.3px;
  }
  .teamCard .quote {
    line-height: 22px;
    padding-top: 25px;
  }
  .teamCard .quote::before {
    width: 25px;
    height: 25px;
  }
}
@container card-team (width < 250px) {
  .teamCard .card-info {
    padding: 11px 12px 6px;
  }

  .teamCard .name {
    font-size: 18px;
    line-height: 14px;
    letter-spacing: 0.27px;
  }
  .teamCard .quote {
    padding-top: 20px;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }
  .teamCard .quote::before {
    top: 2px;
    left: 0;
    width: 20px;
    height: 30px;
  }
}

/* Team archive header: same style as page (blue bar, title, lead, then image/video) */
.team-archive-header.page-header {
  display: block;
}
.team-archive-header .archive-above.category {
  margin-bottom: 21px;
}
.team-archive-header .archive-text.lead {
  margin-top: 11px;
}
.team-archive-header .archive-media.header-image {
  margin-top: 27px;
  border-radius: 10px;
  overflow: hidden;
}
.team-archive-header .archive-media.archive-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.team-archive-header .archive-media.archive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.team-archive-header .archive-media.archive-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Team archive: 4 cols like homepage, then 2, then 1; same card style as homepage, click opens modal */
.team-archive .team-archive-grid {
  --columns: 4;
  --gridGap: 24px;
  --gridGapRow: 32px;
}

@media screen and (max-width: 1120px) {
  .team-archive .team-archive-grid {
    --columns: 2;
  }
}

/* Team archive grid section: same look as homepage team (padding, 4-col grid). Page-team keeps yellow. */
.category-list.team-archive {
  padding-block: clamp(37px, 5vw, 69px) clamp(37px, 6vw, 92px);
  background-color: var(--colorPrimaryYellow);
}

/* Team archive block: full-width breakout (same as image-carousel), white background, pagination */
 .article-body .team-archive.team-archive-block {
  margin-top: clamp(24px, 4vw, 52px);
  width: 100dvw;
  margin-left: calc(-1 * var(--leftSpace));
  padding-left: clamp(70px, 8vw, 140px);
  padding-right: clamp(70px, 8vw, 140px);
  margin-bottom: 37px;
  padding-top: 16px;
  background: #fff;
  cursor: pointer;
  .card-image {
    width: 100%;
  }
}
.team-archive-block .team-archive-pagination {
  margin-top: clamp(24px, 4vw, 48px);
}
.team-archive-block .team-archive-pagination .pagination {
  justify-content: center;
}
/* Card overlay (image + text): text block full width */
.team-archive-block .teamCard .card-info {
  width: 100%;
  box-sizing: border-box;
}

@media screen and (max-width: 860px) {
  .team-archive-block {
    padding-left: var(--padding);
    padding-right: var(--padding);
    margin-left: calc(-1 * var(--padding));
    margin-bottom: 24px;
    padding-top: 0;
  }
}

/* Horizontal archive cards only (blue left block); overlay/shortcode cards keep default .teamCard style */
.team-archive .chefCard.teamCard-horizontal .card-info {
  color: #fff;
  background-color: var(--colorPrimaryBlue);
}
.team-archive .chefCard.teamCard-horizontal .name {
  color: #fff;
}
.team-archive .chefCard.teamCard-horizontal .prof {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 10px;
  border-radius: 4px;
  background-color: var(--colorPrimaryYellow);
  color: var(--colorPrimaryBlue);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  width: fit-content;
}
.team-archive .chefCard.teamCard-horizontal .quote {
  color: rgba(255, 255, 255, 0.95);
}
.team-archive .chefCard.teamCard-horizontal .quote::before {
  filter: brightness(0) saturate(100%) invert(90%) sepia(57%) saturate(2731%)
    hue-rotate(347deg) brightness(99%) contrast(106%);
}
.team-archive .chefCard.teamCard-horizontal .card-info .card-more {
  color: #fff;
}

/* Horizontal team card (archive + page-team): left = blue block (name, role, quote), right = image */
.teamCard-horizontal {
  display: flex;
  flex-direction: row;
  aspect-ratio: unset;
  min-height: 220px;
}
.teamCard-horizontal::before {
  display: none;
}
.teamCard-horizontal .card-info {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.teamCard-horizontal .card-image {
  position: relative;
  inset: unset;
  flex: 0 0 50%;
  opacity: 1;
  margin-bottom: 0;
  overflow: hidden;
}
.teamCard-horizontal .card-image img,
.teamCard-horizontal .card-image-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.teamCard-horizontal .card-image-video,
.teamCard-horizontal .card-image {
  aspect-ratio: 1;
  min-height: 220px;
}

@media screen and (max-width: 620px) {
  .teamCard-horizontal {
    flex-direction: column;
    min-height: 0;
  }
  .teamCard-horizontal .card-info {
    flex: 0 0 auto;
    order: 1;
  }
  .teamCard-horizontal .card-image,
  .teamCard-horizontal .card-image-video {
    flex: 0 0 auto;
    order: 0;
    min-height: 200px;
    aspect-ratio: 1.2;
  }
}

@media screen and (max-width: 440px) {
  .team-archive .team-archive-grid {
    --columns: 1;
  }
}

/* event card */

.eventCard {
  position: relative;
  container-name: card-event;
  container-type: inline-size;
  border-radius: 10px;
  overflow: hidden;
}

.eventCard::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1);
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  border-radius: 10px;
}

.eventCard .card-image {
  aspect-ratio: 0.867;
  opacity: 0.7;
  margin-bottom: 0;
}
.eventCard .card-info {
  --left: 22px;
  position: absolute;
  bottom: 35px;
  left: var(--left);
  max-width: calc(100% - var(--left));
  padding-right: 1rem;
}
.eventCard .card-info .category {
  order: -1;
  color: #fff;
}
.eventCard .card-info .title {
  margin-block: 13px 0;
}
.eventCard .card-info .title a,
.eventCard .card-info .title .main-link {
  color: var(--colorPrimaryYellow);
}
.eventCard .card-info .title span:first-of-type {
  color: #fff;
}

.eventCard .completed {
  position: absolute;
  left: 28px;
  top: 30px;
}
.eventCard-past .completed.tag {
  color: #000;
}
.eventCard-past .completed.tag .icon img {
  filter: brightness(0);
}

@container card-event (width < 300px) {
  .eventCard .card-image {
    aspect-ratio: 0.75;
  }
  .eventCard .card-info {
    bottom: 1rem;
    --left: 16px;
  }
  .eventCard .card-info .title {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.26px;
  }
  .eventCard .completed {
    left: 16px;
    top: 20px;
  }
}
@container card-event (width < 250px) {
  .eventCard .card-image {
    aspect-ratio: 0.86;
  }
  .eventCard .card-info {
    --left: 12px;
  }
  .eventCard .card-info .category {
    font-size: 8px;
    letter-spacing: 0.12px;
  }
  .eventCard .card-info .title {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.24px;
    margin-top: 4px;
  }
  .event-date {
    width: 48px;
    height: 48px;
    right: 22px;
    top: 21px;
  }
  .event-date .info .month {
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.17px;
  }
  .event-date .info .date {
    font-size: 19px;
    line-height: 23px;
    letter-spacing: 0.28px;
  }
  .eventCard .completed {
    left: 12px;
    top: 10px;
  }
}

/* upcoming card */

.card.upcomingCard {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--colorPrimaryBlue);
  height: 438px;
}

.card.upcomingCard.mini {
  height: 220px;
  border: 1px solid var(--colorSecBlue);
}

.card.upcomingCard > div {
  width: 50%;
  flex-shrink: 0;
}

.card.upcomingCard .card-image {
  border-radius: 0;
  aspect-ratio: unset;
  height: 100%;
}
.card.upcomingCard .card-info {
  padding: 25% 26px 30px 28px;
  color: #fff;
  box-sizing: border-box;
}
.card.upcomingCard .count-down {
  left: 23px;
  top: 25px;
  width: fit-content;
  min-width: unset;
  align-items: center;
}
.card.upcomingCard.mini .completed {
  left: 22px;
  top: 22px;
  position: absolute;
  width: fit-content;
}
.card.upcomingCard .category {
  order: -1;
  margin-bottom: 4px;
  font-family: "Lidl-Semibold";
}
.card.upcomingCard .category {
  color: #fff;
}
.card.upcomingCard .card-info .title a,
.card.upcomingCard .card-info .title .main-link {
  color: var(--colorPrimaryYellow);
}
.card.upcomingCard .title {
  color: var(--colorSecBlue);
}
.card.upcomingCard .lead {
  padding-right: 20px;
  margin-bottom: 10px;
}
.card.upcomingCard .lead p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.card.upcomingCard .card-details {
  gap: 24px;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.24px;
  margin-top: auto;
  align-items: center;
  flex-wrap: wrap;
}
.card.upcomingCard .card-details-item {
  gap: 11px;
  align-items: center;
  font-family: "Lidl-Semibold";
}

.card.upcomingCard.mini .card-info {
  padding: 25px 15px 25px 19px;
  justify-content: flex-end;
}
.card.upcomingCard.mini .card-details {
  margin-top: 0;
}

.card.upcomingCard.mini .title {
  color: #fff;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: 0.33px;
  margin-bottom: 17px;
}
.card.upcomingCard .event-date .info .month {
  color: #fff;
}
.card.upcomingCard .event-date .info .date {
  color: var(--colorPrimaryRed);
}

@media screen and (max-width: 620px) {
  .card.upcomingCard {
    height: 287px;
  }
  .card.upcomingCard .card-info {
    padding: 80px 13px 15px 14px;
  }
  .card.upcomingCard .lead {
    padding-right: 0;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 18px;
  }
  .card.upcomingCard .title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 3px;
  }
  .card.upcomingCard .category {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.18px;
    margin-top: auto;
  }
  .card.upcomingCard .card-details {
    gap: 4px 16px;
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.17px;
  }
  .card.upcomingCard .card-details-item {
    gap: 8px;
  }
  .card.upcomingCard .card-details-item .icon {
    width: 13px;
  }
  .card.upcomingCard .event-date {
    width: 48px;
    height: 48px;
    right: 22px;
    top: 21px;
  }
  .card.upcomingCard .event-date .info .month {
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.17px;
  }
  .card.upcomingCard .event-date .info .date {
    font-size: 19px;
    line-height: 23px;
    letter-spacing: 0.28px;
  }
  .card.upcomingCard .count-down {
    left: 20px;
    top: 22px;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.21px;
    padding: 5px 9px 6px;
  }
}

@media screen and (max-width: 450px) {
  .card.upcomingCard .card-info {
    padding-top: 2rem;
  }
  .card.upcomingCard .event-date {
    width: 38px;
    height: 38px;
    right: 12px;
    top: 11px;
  }
  .card.upcomingCard .event-date .info .month {
    font-size: 10px;
    line-height: 13px;
    letter-spacing: 0.15px;
  }
  .card.upcomingCard .event-date .info .date {
    font-size: 17px;
    line-height: 20px;
    letter-spacing: 0.23px;
  }
}

/* chef card */

.chefCard {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  color: var(--colorSecBlue);
}

.chefCard .card-image {
  border-radius: 0;
  width: 39%;
  aspect-ratio: 0.867;
  margin-bottom: 0;
}
.chefCard .card-info {
  width: 61%;
  padding: 28px 25px 32px 28px;
  overflow: auto;
}
.chefCard .card-content {
  margin-top: auto;
  font-size: 18px;
  letter-spacing: 0.27px;
  line-height: 23px;
}
.chefCard .title {
  margin-bottom: 5px;
}
.chefCard .subtitle {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.18px;
  font-family: "Lidl-Semibold";
  margin-bottom: 15px;
}
.chefCard .card-more {
  width: fit-content;
  margin-top: 23px;
  color: var(--colorSecBlue);
  padding: 0;
  font-family: "Lidl-Semibold";
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.21px;
}

@media screen and (max-width: 920px) {
  .chefCard .card-image {
    width: 30%;
  }
  .chefCard .card-info {
    width: 70%;
  }
}
@media screen and (max-width: 820px) {
  .chefCard .card-info {
    padding: 20px 25px 18px 16px;
  }
}
@media screen and (max-width: 620px) {
  .chefCard {
    flex-direction: column;
  }
  .chefCard .card-image {
    width: 100%;
    aspect-ratio: unset;
    height: clamp(193px, 40vw, 280px);
  }
  .chefCard .card-info {
    width: 100%;
    padding: 15px 23px 24px 16px;
  }
  .chefCard .card-more {
    margin-top: 9px;
  }
}

/* major card */

.major-card .card-image {
  aspect-ratio: 1.628;
  position: relative;
  overflow: hidden;
}
.major-card .card-image .card-image-link {
  display: block;
  width: 100%;
  height: 100%;
}
.major-card .card-image .card-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.major-card .featured-video-tag {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  background-color: var(--colorPrimaryBlue);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.21px;
  font-family: "Lidl-Semibold";
}
.major-card .featured-video-view-btn {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: block;
  line-height: 0;
  text-decoration: none;
}
.major-card .featured-video-view-btn:hover {
  opacity: 0.9;
}
.major-card .featured-video-view-btn img {
  display: block;
  width: clamp(80px, 10vw, 129px);
  height: auto;
}
.major-card .card-info {
  background-color: var(--colorPrimaryBlue);
  display: grid;
  place-content: center start;
  padding: clamp(24px, 4vw, 48px);
}
.major-card .featured-video-category {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.21px;
  font-family: "Lidl-Semibold";
  margin: 0 0 10px 0;
  text-transform: uppercase;
}
.major-card .card > div {
  border-radius: 10px;
}

.major-card .title {
  color: var(--colorPrimaryYellow);
  font-size: 32px;
  line-height: 26px;
  letter-spacing: 0.48px;
  margin-bottom: 14px;
}

.major-card .lead {
  color: #fff;
  max-width: 539px;
  font-size: 21px;
  line-height: 25px;
  letter-spacing: 0.32px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

@media screen and (max-width: 620px) {
  .major-card .card-image {
    aspect-ratio: 1.603;
  }
  .major-card .lead {
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.27px;
  }
}

/* section headers */

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border-bottom: 1px solid #fff; */
  margin-bottom: 36px;
  position: relative;
}
.section-header h2 {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.3px;
  color: var(--colorSecBlue);
  font-family: "Lidl-Semibold";
}

/* Text in {braces} becomes .highlight – set color per context (e.g. .hero .highlight, .section-header h2 .highlight) */
.highlight {
  color: var(--colorPrimaryYellow);
}

.section-header.multi-line {
  flex-wrap: wrap;
  border-bottom: none;
  justify-content: space-between;
  align-items: center;
}

.section-header.multi-line > div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-header.multi-line > .top-row {
  margin-bottom: 0.5rem;
}
.section-header.multi-line > .top-row.border {
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 620px) {
  .section-header {
    margin-bottom: 20px;
  }
}

/* tag */

.tag {
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.21px;
  background-color: var(--colorSecBlue);
  padding: 5px 16px 6px 18px;
  color: #fff;
  border-radius: 4px;
}

.tag.completed {
  color: var(--colorPrimaryBlue);
  background-color: var(--colorPrimaryYellow);
  font-family: "Lidl-Semibold";
  align-items: center;
  padding-inline: 11px 12px;
  gap: 5px;
}

.tag.completed .icon {
  width: 13px;
  filter: var(--filterPrimBlue);
}

/*  socials */

.social ul {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.social li {
  width: 30px;
  height: 30px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  /* background-size: 50%; */
}

.social.border li {
  border: 1px solid #000;
}
.social.border.rnd li {
  border-radius: 50%;
}
.social.white li {
  filter: invert(1);
}

.social.round li {
  background-color: #fff;
  border-radius: 50%;
}

.social ul li:last-of-type {
  margin-right: 0;
}
.social ul li.pin {
  background-image: url(../assets/icons/pin.svg);
}
.social ul li.fb {
  background-image: url(../assets/icons/fb.svg);
  background-size: 30%;
}
.social ul li.tw {
  background-image: url(../assets/icons/tw.svg);
  /* background-size:5px 10px; */
}
.social ul li.yt {
  background-image: url(../assets/icons/yt.svg);
}
.social ul li.ig {
  background-image: url(../assets/icons/ig.svg);
  background-size: 60%;
}
.social ul li.ln {
  background-image: url(../assets/icons/ln.svg);
}
.social ul li.tt {
  background-image: url(../assets/icons/tt.svg);
  background-size: 55%;
}
.social ul li.sf {
  background-image: url(../assets/icons/sf.svg);
}
.social ul li.ap {
  background-image: url(../assets/icons/ap.svg);
}
.social ul li.rss {
  background-image: url(../assets/icons/rss.svg);
  /* background-size:20px 20px; */
}
.social ul li.wup {
  background-image: url(../assets/icons/wup.svg);
  background-size: contain;
  background-color: transparent;
  border-radius: 0;
}

.social ul li.lg {
  width: 2.25rem;
  height: 1.85rem;
  margin-right: 3rem;
}

.social ul li > a {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.social.md ul li {
  width: 36px;
  height: 36px;
  margin-right: 32px;
}

.social.md ul li.fb {
  background-image: url(../images/icons/fb.svg);
  background-size: 10px 20px;
}
.social.md ul li.tw {
  background-image: url(../images/icons/tw.svg);
  background-size: 19px 15px;
}

.darkmode .social ul li {
  filter: invert(1);
}

/* video icon */

.video-icon {
  background-color: #fff;
  width: 32px;
  height: 27px;
  display: grid;
  place-content: center;
}

.video-icon > img {
  width: 8px;
}

/* date icon */

.date-icon {
  width: 68px;
  border-radius: 50%;
  background-color: var(--colorPrimaryYellow);
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--colorSecBlue);
}

.date-icon .month {
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.23px;
}
.date-icon .day {
  font-size: 26px;
  line-height: 32px;
  letter-spacing: 0.39px;
}

/* pill */

.pill {
  color: var(--colorSecBlue);
  border-radius: 25px;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.23px;
  border: 1px solid;
  padding: 5px 16px 6px;
}

.pill:hover {
  background-color: var(--colorSecBlue);
  color: #fff;
}
.pill:hover img {
  filter: brightness(0) invert(1);
}

/* search */
.search-header-wrapper {
  position: relative;
}

.page-search .page-header .article-meta {
  order: 4;
}

.search-icon {
  width: 1rem;
  height: 1rem;
  background-image: url(../assets/icons/search.svg);
  background-size: 50%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

.search-icon.white {
  filter: invert(1);
}
.search-inner-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  width: 0;
  position: absolute;
  background-color: #000;
  transition: width 0.3s;
}
.search-form {
  width: 200px;
  display: flex;
  align-items: center;
}
.search-inner-wrapper.on {
  width: 200px;
}

.search-form input {
  background: transparent;
  color: #fff;
  /* border-bottom: 1px solid #fff; */
}

.search-close.btn-container {
  width: 25px;
  height: 25px;
}
.search-close .line {
  transform-origin: center;
  top: 50% !important;
}
.search-close .line:first-of-type {
  transform: rotate(-45deg);
}
.search-close .line:last-of-type {
  transform: rotate(45deg);
}

/* main header and menus */

.fixed-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding-block: 1rem;
  background-color: var(--colorBg);
  z-index: 100;
}

/* buttons */

.btn-container {
  width: 3rem;
  height: 2rem;
  padding: 0.5rem;
}

.btn-container > div {
  height: 100%;
  width: 100%;
  position: relative;
  cursor: pointer;
}

.btn-container .line {
  width: 100%;
  border-top: 1px solid #fff;
  position: absolute;
  left: 0;
  top: 50%;
}

.btn-container .line:first-of-type {
  top: 0;
}
.btn-container .line:last-of-type {
  top: 100%;
}

/* form inputs */

.input-box {
  position: relative;
}

.input-box input:focus,
.input-box textarea:focus {
  outline: none;
}

.input-box > label {
  position: absolute;
  left: 19px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in;
  background-color: #fff;
  width: fit-content;
  padding-inline: 2px;
  font-family: "Lidl-Semibold";
}

.input-box:has(textarea) > label {
  top: 19px;
}

.input-box:has(textarea:-webkit-autofill) > label,
.input-box:has(textarea:not(:placeholder-shown)) > label,
.input-box:has(textarea:focus) > label,
.input-box:has(input:-webkit-autofill) > label,
.input-box:has(input:not(:placeholder-shown)) > label,
.input-box:has(input:focus) > label {
  top: 0;
  left: 5px;
  font-size: 12px;
}

.input-box > label,
.input-box :is(input, textarea) {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.27px;
  color: var(--colorSecBlue);
}

.input-box :is(input, textarea) {
  width: 100%;
  padding: 19px;
  border: 1px solid var(--colorSecBlue);
  border-radius: 4px;
  font-family: "Lidl-Book";
}

.input-box textarea {
  min-height: 220px;
}

/* custom checkbox */

.custom-checkbox {
  position: relative;
}
.custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkbox label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 13px;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.27px;
  color: var(--colorSecBlue);
}

.custom-checkbox label a {
  display: inline;
}

.custom-checkbox .box {
  width: 30px;
  height: 30px;
  border: 1px solid var(--colorSecBlue);
  border-radius: 4px;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.custom-checkbox input:focus-visible + label .box {
  outline: none;
}

/* .custom-checkbox input:checked + label .box {
  background-color: #0056b3;
  border-color: #0056b3;
} */

.custom-checkbox input:checked + label .box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  width: 8px;
  height: 14px;
  border: solid var(--colorSecBlue);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* form general rules */

.general-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  container-name: input-form;
  container-type: inline-size;
}

.general-form .terms-wrapper,
.general-form .checkbox-group,
.general-form .input-submit,
.general-form .input-box:has(textarea) {
  grid-column: span 2;
}

.general-form .checkbox-group {
  gap: 11px;
  margin-block: -4px 9px;
}

.checkbox-group .custom-checkbox label a {
  text-decoration: underline;
}

/* Required checkbox invalid after submit (e.g. #contact-terms, #event-terms) — .box is visible */
form .lidlhouse-checkbox-invalid + label .box {
  border-color: #c62828 !important;
  box-shadow: 0 0 0 1px #c62828;
}

form .lidlhouse-checkbox-invalid + label {
  color: #c62828;
}

.lidlhouse-input-invalid :is(input, textarea) {
  border-color: #c62828 !important;
  box-shadow: 0 0 0 1px #c62828;
}

.lidlhouse-input-invalid > label {
  color: #c62828;
}

.lidlhouse-input-invalid.custom-checkbox label {
  color: #c62828;
}

.lidlhouse-input-invalid.custom-checkbox label .box {
  border-color: #c62828 !important;
  box-shadow: 0 0 0 1px #c62828;
}

.lidlhouse-form-feedback {
  grid-column: 1 / -1;
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 8px;
  padding: 10px 12px;
  border-radius: 4px;
}

.lidlhouse-form-feedback[hidden] {
  display: none !important;
}

.lidlhouse-form-feedback--error {
  background: #fde8e8;
  color: #9b1c1c;
  border: 1px solid #f5c2c2;
}

.lidlhouse-form-feedback--success {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}

.newsletter .lidlhouse-form-feedback {
  margin-top: 6px;
  margin-bottom: 0;
}

/* 404 — white block, full viewport minus header; no blue-bar curve */
.page-404 .article-header {
  background-color: #fff;
  min-height: calc(100dvh - 140px);
}

.page-404 .article-header::after {
  display: none;
}

.page-404 .article-header .wrapper.sm {
  text-align: center;
}

@container input-form (width < 600px) {
  .general-form > * {
    grid-column: 1 / -1;
  }
}

/* count down */

.count-down {
  background-color: var(--colorPrimaryRed);
  border-radius: 4px;
  color: #fff;
  font-size: 21px;
  line-height: 25px;
  letter-spacing: 0.32px;
  padding: 4px 21px;
  position: absolute;
  font-family: "Lidl-Semibold";
  min-width: 130px;
  text-align: center;
  justify-content: center;
  z-index: 2;
}

.count-down span:not(:last-of-type)::after {
  content: ":";
}

/* section filters */

.section-filters {
  --columns: 3;
  margin-bottom: 40px;
}

.section-filters .filter-block {
  margin-bottom: 0;
}
.section-filters .filter-block summary {
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.27px;
  padding: 19px 23px 19px 27px;
}
.section-filters .filter-search-block {
  display: flex;
  gap: 26px;
  width: 100%;
}
.section-filters .filter-search-block .search-input {
  border: 1px solid var(--colorSecBlue);
  border-radius: 4px;
  padding: 19px 18px 19px 30px;
  height: 60px;
  flex-grow: 1;
  position: relative;
}
.section-filters .filter-search-block button {
  display: grid;
  place-content: center;
  background-color: var(--colorSecBlue);
  border-radius: 30px;
  width: 78px;
  height: 60px;
}

.section-filters .filter-search-block .search-input label,
.section-filters .filter-search-block .search-input input {
  font-size: 18px;
  letter-spacing: 0.27px;
  color: var(--colorSecBlue);
  font-family: "Lidl-Semibold";
}

.section-filters .filter-search-block .search-input input {
  width: 100%;
}

.section-filters .filter-search-block .search-input label {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}

.section-filters .filter-search-block .search-input input:focus {
  outline: none;
}

.section-filters .filter-search-block:has(input:-webkit-autofill) label,
.section-filters .filter-search-block:has(input:not(:placeholder-shown)) label,
.section-filters .filter-search-block:has(input:focus) label {
  display: none;
}

.section-filters .filter-search-block button img {
  filter: brightness(0) invert(1);
}

.filters-list-wrapper {
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}

.section-filters + .filters-list-wrapper > h3 {
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.21px;
  font-family: "Lidl-Semibold";
  color: var(--colorSecBlue);
}

.section-filters + .filters-list-wrapper .filters-list {
  flex-wrap: wrap;
  gap: 8px;
}

.section-filters + .filters-list-wrapper .filter-reset,
.event-filters-form + .filters-list-wrapper .filter-reset {
  position: relative;
  transform: translate(0);
}

.event-filters-form + .filters-list-wrapper .filters-list .filter-reset,
#videoFilterForm + .filters-list-wrapper .filters-list .filter-reset,
#ecohackFilterForm + .filters-list-wrapper .filters-list .filter-reset,
#wellnessFilterForm + .filters-list-wrapper .filters-list .filter-reset {
  position: static;
  transform: none;
}

.event-filters-form + .filters-list-wrapper .filters-list .selected-filter,
#videoFilterForm + .filters-list-wrapper .filters-list .selected-filter,
#ecohackFilterForm + .filters-list-wrapper .filters-list .selected-filter,
#wellnessFilterForm + .filters-list-wrapper .filters-list .selected-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.event-filters-form + .filters-list-wrapper .filters-list .selected-filter img,
#videoFilterForm + .filters-list-wrapper .filters-list .selected-filter img,
#ecohackFilterForm + .filters-list-wrapper .filters-list .selected-filter img,
#wellnessFilterForm + .filters-list-wrapper .filters-list .selected-filter img {
  width: 14px;
  height: 14px;
}

@media screen and (max-width: 1120px) {
  .section-filters {
    --columns: 2;
    --gridGapRow: 10px;
  }
  .section-filters .filter-search-block {
    grid-column: 1/3;
  }
}
@media screen and (max-width: 620px) {
  .section-filters {
    padding-inline: var(--padding);
  }
}
@media screen and (max-width: 520px) {
  .section-filters {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
  .section-filters .filters-block {
    grid-column: 1 / 2;
  }
  .section-filters .filter-search-block {
    flex-direction: column;
    gap: 10px;
  }
  .section-filters .filter-search-block button {
    margin-left: auto;
  }
  .section-filters + .filters-list-wrapper {
    margin-block: -50px 70px;
  }
}

/*
 * Swiper: prev/next — assets/icons/angle-left-solid-full-white.svg & angle-right-solid-full-white.svg
 */
.swiper {
  --lidlhouse-swiper-icon-prev: url("../assets/icons/angle-left-solid-full-white.svg");
  --lidlhouse-swiper-icon-next: url("../assets/icons/angle-right-solid-full-white.svg");
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "" !important;
  font-family: inherit !important;
  font-size: 0 !important;
  line-height: 0 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-variant: normal !important;
  display: block;
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  border: none;
  margin: 0;
  transform: none;
  background-color: currentColor;
  -webkit-mask-image: var(--lidlhouse-swiper-icon-prev);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: var(--lidlhouse-swiper-icon-prev);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "" !important;
  font-family: inherit !important;
  font-size: 0 !important;
  line-height: 0 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-variant: normal !important;
  display: block;
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  border: none;
  margin: 0;
  transform: none;
  background-color: currentColor;
  -webkit-mask-image: var(--lidlhouse-swiper-icon-next);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: var(--lidlhouse-swiper-icon-next);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

/* general home swiper */

.home-swiper {
  padding-left: var(--leftPadding);
  padding-bottom: 44px;
}
.home-swiper .swiper-pagination {
  bottom: 0;
}

.home-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--colorSecBlue);
  opacity: 0.5;
}
.home-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.home-swiper :is(.swiper-button-next, .swiper-button-prev) {
  width: 59px;
  height: 59px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.52);
  color: #fff;
  top: 100px;
}

.home-swiper .swiper-button-prev {
  left: max(var(--padding), var(--leftPadding));
  transform: translate(-50%, -50%);
}
.home-swiper .swiper-button-next {
  right: max(var(--padding), var(--leftPadding));
  transform: translate(50%, -50%);
}

.home-swiper .swiper-button-prev:after,
.home-swiper .swiper-button-next:after,
.home-swiper .swiper-rtl .swiper-button-next:after,
.home-swiper .swiper-rtl .swiper-button-prev:after {
  width: 16px;
  height: 16px;
}

@media screen and (max-width: 1720px) {
  .home-swiper .swiper-button-prev {
    transform: translate(-25%, -50%);
  }
  .home-swiper .swiper-button-next {
    transform: translate(25%, -50%);
  }
}

@media screen and (max-width: 980px) {
  .home-swiper :is(.swiper-button-next, .swiper-button-prev) {
    width: 49px;
    height: 49px;
  }
  .home-swiper .swiper-button-prev:after,
  .home-swiper .swiper-button-next:after,
  .home-swiper .swiper-rtl .swiper-button-next:after,
  .home-swiper .swiper-rtl .swiper-button-prev:after {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 520px) {
  .home-swiper .swiper-pagination,
  .home-swiper :is(.swiper-button-next, .swiper-button-prev) {
    display: none;
  }
}

.archive .card-info .title .highlight{
  color: var(--colorPrimaryBlue)!important;
  
}

.main-nav .highlight{
  color: #fff!important;
}
.submenu .highlight{
  color: var(--colorPrimaryBlue)!important;
}

.date-events .card{
  background-color: #fff!important;
  .title{
    a{
      color: var(--colorPrimaryBlue)!important;
    }
  }
  .category{
    a{
      color: var(--colorSecBlue)!important;
    }
  }
  .card-details{
    .icon{
      display: none;
    }
    span{
      color: var(--colorSecBlue)!important;
    }
  }
}