/* scss/settings/_breakpoints.scss */ /* scss/utilities/_functions.scss */
/*
    .cssClass {
        font-size: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(20), rem-calc(50));
        margin-bottom: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(10), rem-calc(20));
    }

*/
/* scss/utilities/_mixins.scss */ /* xsmall = 10 (1 - 11)
small = 13 - (12-14)
default = 16 (15-18)
medium = 20 (18-26)
large = 32 (26-36)
xlarge = 40 (36 <) */
/* ---------- headers ---------- */
.p-productLevel1__header {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 1.3532608696rem + 0.0065217391 * 100vw, 1.875rem);
  font-weight: 300;
  line-height: 1.1;
}
@media only screen and (min-width: 1200px) {
  .p-productLevel1__header {
    font-size: 1.875rem;
  }
}

/* ---------- medium fonts: 20 (18-26) ---------- */
/* ---------- default fonts: 16 (15-18) ---------- */
/* ---------- small fonts: 13 - (12-14) ---------- */
/* ---------- xsmall fonts: 10 (1 - 11) ---------- */
/* ---------- button fonts ---------- */
.frame {
  margin-bottom: 6.25rem;
}

.seoText {
  margin-top: 6.25rem;
}

.frame-space-after-none {
  margin-bottom: 0;
}

.frame-space-after-small {
  margin-bottom: 3.125rem;
}

.frame-space-after-medium {
  margin-bottom: 6.25rem;
}

.frame-space-after-large {
  margin-bottom: 9.375rem;
}

body {
  scroll-behavior: smooth;
}

.no-transitions,
.no-transitions * {
  transition: none !important;
  animation: none !important;
}

/* scss/utilities/_functions.scss */
/*
    .cssClass {
        font-size: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(20), rem-calc(50));
        margin-bottom: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(10), rem-calc(20));
    }

*/
/* scss/utilities/_mixins.scss */ /* xsmall = 10 (1 - 11)
small = 13 - (12-14)
default = 16 (15-18)
medium = 20 (18-26)
large = 32 (26-36)
xlarge = 40 (36 <) */
/* ---------- headers ---------- */
.p-productLevel1__header {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 1.3532608696rem + 0.0065217391 * 100vw, 1.875rem);
  font-weight: 300;
  line-height: 1.1;
}
@media only screen and (min-width: 1200px) {
  .p-productLevel1__header {
    font-size: 1.875rem;
  }
}

/* ---------- medium fonts: 20 (18-26) ---------- */
/* ---------- default fonts: 16 (15-18) ---------- */
/* ---------- small fonts: 13 - (12-14) ---------- */
/* ---------- xsmall fonts: 10 (1 - 11) ---------- */
/* ---------- button fonts ---------- */
.p-level1-list {
  margin-top: -6.25rem;
  padding: 6.25rem 0;
}
.p-level1-list .g-grid {
  gap: 0;
  row-gap: 6.25rem;
}

.p-level__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16.875rem), 16.875rem));
  grid-template-rows: repeat(3, auto);
  row-gap: 2rem;
}
.p-level__grid.-finish-line {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16.875rem), 1fr));
}
.p-level__grid.-finish-line:after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  display: block;
  width: 1px;
  background: #FFF;
}
.-bg-night .p-level__grid.-finish-line:after {
  background: var(--color-bg-night);
}

.p-productLevel1 {
  grid-row: span 3;
  display: grid;
  grid-template-rows: subgrid;
  position: relative;
  padding: 3.75rem 1.75rem 2.5rem;
  cursor: pointer;
  background: var(--color-card-level1-bg);
  border-right: 1px solid var(--color-bg-ocher);
}
.p-productLevel1 > * {
  position: relative;
  z-index: 1;
}
.p-productLevel1__background {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(closest-corner at 40% 60%, var(--card-color-glow-from) 0%, var(--card-color-glow-to) 100%);
  opacity: 0;
  transition: opacity 350ms ease-in-out;
}
.p-productLevel1:hover .p-productLevel1__background {
  opacity: 1;
}
.p-productLevel1__content {
  position: relative;
  z-index: 1;
  grid-row: span 3;
  display: grid;
  grid-template-rows: subgrid;
}
.p-productLevel1__header {
  width: 100%;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}
.p-productLevel1__text {
  flex-grow: 1;
  width: 100%;
  color: #FFF;
  transition: color 0.5s ease-out;
  margin-bottom: 2rem;
}
.p-productLevel1 [class^=lci-] {
  color: var(--color-primary);
}

/*# sourceMappingURL=level1-list.css.map */