/* ============================================
   Process – 
   ============================================ */

#process-2410 {
  background-color: var(--primary);
  padding-bottom: 8rem;
  padding-top: 4rem;
}

#process-2410 .cs-topper {
  color: var(--bodyTextColorWhite);
}
#process-2410 .cs-title {
  color: var(--bodyTextColorWhite);
}

#process-2410 .cs-text {
  color: var(--bodyTextColorWhite);
}

/* Enskilda steg */
#process-2410 .cs-step {
  background: var(--secondaryLight);
  border: 1px solid var(--bodyTextColorWhite);
  box-shadow: inset 0 0px 8px var(--bodyTextColorWhite),
    0 0px 12px var(--bodyTextColorWhite);
}

#process-2410 .cs-step:hover {
  box-shadow: inset 0 3px 12px var(--primary);
}
#process-2410 .cs-pipe img {
  filter: brightness(0) invert(1);
}

/* --- Badge --- */
#process-2410 .cs-step-badge {
  color: var(--secondary);
  background: var(--primary);
  box-shadow: 0 0 0 2px var(--secondary), 0 6px 16px rgba(0, 0, 0, 0.271);
}
#process-2410 .cs-h3 {
  color: var(--primary);
}
#process-2410 .cs-item-text {
  color: var(--primary);
}
/*-- -------------------------- -->
<---    Side By Side Reverse    -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbsr-2296 {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: var(--secondaryLight);
  }
  #sbsr-2296 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 44rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 4vw, 4rem);
  }
  #sbsr-2296 .cs-content {
    /* set text align to center if content needs to be centrally aligned */
    text-align: left;
    width: 100%;
    max-width: 36.625rem;
    display: flex;
    flex-direction: column;
    /* aligns content to the left, set to center to centrally align */
    align-items: flex-start;
  }
  #sbsr-2296 .cs-title {
    max-width: 30ch;
  }
  #sbsr-2296 .cs-text {
    margin-bottom: 1rem;
  }
  #sbsr-2296 .cs-text:last-of-type {
    margin-bottom: 1.5rem;
  }
  #sbsr-2296 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    padding: 0 1.5rem;
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #sbsr-2296 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    border-radius: 0.25rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #sbsr-2296 .cs-button-solid:hover:before {
    width: 100%;
  }
  #sbsr-2296 .cs-h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5em;
    margin: 0;
    color: var(--headerColor);
  }
  #sbsr-2296 .cs-ul {
    margin: 0.75rem 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #sbsr-2296 .cs-li {
    font-size: 1rem;
    line-height: 1.5em;
    list-style: none;
    /* 20px - 24px */
    padding-left: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--bodyTextColor);
    position: relative;
  }
  #sbsr-2296 .cs-li strong {
    color: var(--headerColor);
  }
  #sbsr-2296 .cs-li::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    margin-top: 0.5rem;
    background-color: var(--primary);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(45deg);
  }
  #sbsr-2296 .cs-image-group {
    /* scales the whole section down and ties the font size to the vw and stops at 75% of the vale of 1em, changes at desktop */
    font-size: min(1.98vw, 0.802rem);
    /* everything inside this box is in ems so we can scale it all down proportionally with a font size */
    width: 46.125em;
    height: 38.75em;
    order: -1;
    position: relative;
    z-index: 1;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #sbsr-2296 .cs-picture {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-sizing: border-box;
    display: block;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.493);
  }
  #sbsr-2296 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    border-radius: 16px;
  }
  #sbsr-2296 .cs-picture-wrapper1 {
    width: 25.8125em;
    height: 28.5625em;
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  #sbsr-2296 .cs-picture-wrapper1:hover {
    transform: translateY(-8px) scale(1.03);
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  }

  #sbsr-2296 .cs-picture-wrapper2 {
    width: 25.8125em;
    height: 24.8125em;
    display: flex;
    flex-direction: column-reverse;
    gap: 1em;
    position: absolute;
    top: 3.25em;
    right: 0;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  #sbsr-2296 .cs-picture-wrapper2:hover {
    transform: translateY(-8px) scale(1.03);
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  }

  #sbsr-2296 .cs-picture-wrapper3 {
    width: 25.75em;
    height: 35%;

    display: flex;
    flex-direction: column;
    gap: 1em;
    position: absolute;
    bottom: 90px;
    left: 9.25em;

    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  #sbsr-2296 .cs-picture-wrapper3:hover {
    transform: translateY(-8px) scale(1.03);
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  }
  #sbsr-2296 .cs-tag {
    /* 14px - 24px */
    font-size: clamp(0.875rem, 1.5vw, 1.5rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    color: var(--headerColor);
    display: block;
    flex: none;
  }
  #sbsr-2296 .cs-arrow {
    width: 9.25em;
    height: auto;
    position: absolute;
  }
  #sbsr-2296 .cs-arrow-left {
    bottom: 12.5625em;
    left: 4.5em;
    transform: rotate(-120deg);
  }
  #sbsr-2296 .cs-arrow-right {
    right: 7.125em;
    bottom: 11.0625em;
    transform: rotate(300deg);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbsr-2296 .cs-container {
    max-width: 80rem;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbsr-2296 .cs-container {
    flex-direction: row;
    align-items: stretch;
  }
  #sbsr-2296 .cs-image-group {
    font-size: min(1.1vw, 1rem);
    height: auto;
    min-height: 38.75em;
    order: initial;
    flex: none;
  }
  #sbsr-2296 .cs-picture-wrapper1 {
    height: auto;
    bottom: 10.1875em;
  }
  #sbsr-2296 .cs-picture-wrapper2 {
    height: auto;
    bottom: 10.625em;
  }
  #sbsr-2296 .cs-picture-wrapper3 .cs-picture {
    height: 15.5625em;
  }
}
@media only screen and (max-width: 768px) {
  #sbsr-2296 .cs-picture-wrapper3 img {
    height: 100%;
  }
}
@media only screen and (max-width: 430px) {
  #sbsr-2296 .cs-picture-wrapper3 {
    bottom: 40px;
  }
}
/*-- -------------------------- -->
<---        Side By Side        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-2295 {
    padding: var(--sectionPadding);
    background-color: var(--secondaryLight);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #sbs-2295 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 44rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 4vw, 4rem);
  }
  #sbs-2295 .cs-image-group {
    /* scales the whole section down and ties the font size to the vw and stops at 75% of the vale of 1em, changes at desktop */
    font-size: min(1.98vw, 0.826rem);
    /* everything inside this box is in ems so we can scale it all down proportionally with a font size */
    width: 46.125em;
    height: 36.125em;
    order: -1;
    position: relative;
    z-index: 1;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #sbs-2295 .cs-picture {
    width: 100%;
    height: 100%;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.493);
    display: block;
    border-radius: 12px;
  }
  #sbs-2295 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    border-radius: 12px;
  }
  #sbs-2295 .cs-picture-wrapper1 {
    width: 25.75em;
    height: 28.5625em;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  #sbs-2295 .cs-picture-wrapper1:hover {
    transform: translateY(-8px) scale(1.03);
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  }

  #sbs-2295 .cs-picture-wrapper2 {
    width: 25.8125em;
    height: 29.625em;
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
    position: absolute;
    right: 50px;
    bottom: 0;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  #sbs-2295 .cs-picture-wrapper2:hover {
    transform: translateY(-8px) scale(1.03);
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  }
  #sbs-2295 .cs-picture-wrapper2 img {
    object-position: left;
  }
  #sbs-2295 .cs-tag {
    /* 14px - 24px */
    font-size: clamp(0.875rem, 1.4vw, 1.5rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    color: var(--headerColor);
  }
  #sbs-2295 .cs-arrow {
    width: 9.25em;
    height: 3.375em;
    position: absolute;
    top: 15.125em;
    left: 15.9375em;
    transform: rotate(30deg);
  }
  #sbs-2295 .cs-content {
    /* set text align to center if content needs to be centrally aligned */
    text-align: left;
    width: 100%;
    max-width: 36.625rem;
    display: flex;
    flex-direction: column;
    /* aligns content to the left, set to center to centrally align */
    align-items: flex-start;
  }
  #sbs-2295 .cs-title {
    max-width: 30ch;
  }
  #sbs-2295 .cs-text {
    margin-bottom: 1rem;
  }
  #sbs-2295 .cs-text:last-of-type {
    margin-bottom: 1.5rem;
  }
  #sbs-2295 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    padding: 0 1.5rem;
    background-color: var(--primary);
    color: var(--headerColor);
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #sbs-2295 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    border-radius: 0.25rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #sbs-2295 .cs-button-solid:hover:before {
    width: 100%;
  }
  #sbs-2295 .cs-h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5em;
    margin: 0;
    color: var(--headerColor);
  }
  #sbs-2295 .cs-ul {
    margin: 0.75rem 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #sbs-2295 .cs-li {
    font-size: 1rem;
    line-height: 1.5em;
    list-style: none;
    /* 20px - 24px */
    padding-left: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--bodyTextColor);
    position: relative;
  }
  #sbs-2295 .cs-li strong {
    color: #1a1a1a;
  }
  #sbs-2295 .cs-li::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    margin-top: 0.5rem;
    background-color: var(--primary);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(45deg);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-2295 .cs-container {
    max-width: 80rem;
  }
  #sbs-2295 .cs-image-group {
    order: initial;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-2295 .cs-container {
    flex-direction: row;
    align-items: stretch;
  }
  #sbs-2295 .cs-image-group {
    font-size: min(1.03vw, 1rem);
    height: auto;
  }
  #sbs-2295 .cs-picture-wrapper1 {
    height: auto;
    bottom: 7.5625em;
  }
  #sbs-2295 .cs-picture-wrapper2 {
    height: auto;
    top: 6.5em;
  }
}
@media only screen and (max-width: 768px) {
  #sbs-2295 .cs-picture-wrapper2 {
    right: 0;
  }
}
/* ---------- CTA (vänster titel, höger knappar) ---------- */
#case-cta-906 {
  background: var(--primary);
  color: var(--bodyTextColorWhite);
  padding: clamp(2.5rem, 5vw, 4rem) 1rem;
}

#case-cta-906 .cs-container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

/* ---- Titel ---- */
#case-cta-906 .cs-title {
  color: var(--bodyTextColorWhite);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0;
  min-width: 65%;
}

/* ---- Knappar ---- */
#case-cta-906 .cs-button-box {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

#case-cta-906 .cs-button-solid {
  background: #fff;
  color: var(--primary);
  border-radius: 0.5rem;
  padding: 0.9rem 1.25rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

#case-cta-906 .cs-button-solid:hover {
  background: var(--accentDetail);
  color: #fff;
}

#case-cta-906 .cs-button-outline {
  border: 2px solid #fff;
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.8rem 1.15rem;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

#case-cta-906 .cs-button-outline:hover {
  background: #fff;
  color: var(--primary);
}

/* ---- Desktop: Vänster titel, höger knappar ---- */
@media (min-width: 900px) {
  #case-cta-906 .cs-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  #case-cta-906 .cs-title {
    flex: 1;
    text-align: left;
  }

  #case-cta-906 .cs-button-box {
    flex: 1;
    justify-content: flex-end;
  }
}
