/*-- -------------------------- -->
<---     Employee Filters      -->
<--- -------------------------- -*/

/* Mobile - 0rem */
@media only screen and (min-width: 0rem) {
  /* HEADER */
  .filter-header {
    width: 100%;
    max-width: 39.375rem;

    display: flex;
    justify-content: flex-start;
    align-self: flex-start;

    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 600;
    color: var(--headerColor);
  }

  #employee-count {
    width: 100%;
    max-width: 39.375rem;
    align-self: flex-start;

    font-size: clamp(0.835rem, 1.5vw, 0.9rem);
    color: rgb(121, 121, 121);
    padding-top: 0.5rem;
  }

  /* WRAPPER */
  .filter-scroll-wrapper {
    position: relative;
    width: 100%;
    max-width: 39.375rem;
    align-self: flex-start;
  }

  /* FILTER BUTTONS */
  .filter-buttons {
    width: 100%;
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.75rem 0.25rem;

    scroll-snap-type: x mandatory;
  }
  .filter-buttons::-webkit-scrollbar {
    display: none;
  }

  .filter-buttons button {
    flex: 0 0 auto;

    padding: 0.55rem 1rem;

    background: #fff;
    color: var(--primary);

    font-size: 0.8rem;
    font-weight: 600;

    border: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);

    scroll-snap-align: start;
  }
  .custom-select {
    position: relative;
    width: 100%;
  }

  .select-selected {
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 0.875rem;

    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;

    background: #fff;
    color: var(--primary);

    font-weight: 600;
    font-size: 0.9rem;

    cursor: pointer;
  }

  .select-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    background: #fff;
    border-radius: 8px;
    margin-top: 0.4rem;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);

    list-style: none;
    padding: 0.4rem;
    margin: 0;

    display: none;
    z-index: 10;
  }

  .select-options li {
    padding: 0.6rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
  }

  .select-options li:hover {
    background: rgba(0, 0, 0, 0.05);
  }

  .select-options li.active {
    background: var(--primary);
    color: #fff;
  }

  /* open state */
  .custom-select.open .select-options {
    display: block;
  }
  .select-selected::after {
    content: "▾";
    margin-left: auto;
    font-size: 0.8rem;
  }
  .select-options {
    transition: all 0.2s ease;
  }
  .filter-select-wrap {
    position: relative;
    width: 100%;
    max-width: 39.375rem;
    align-self: flex-start;
    padding: 0.5rem 0 0 0;
  }

  .filter-select-wrap select {
    width: 100%;
    height: 44px;
    border: 0.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    background: #fff;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: "Source Sans 3", sans-serif;
    padding: 0 2.5rem 0 0.875rem;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23060a31' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
  }

  /* dölj dropdown på tablet+ */
  .filter-select-wrap {
    display: block;
  }

  .filter-buttons button.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .filter-buttons button.active {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }

  /* TEXT TOGGLE */
  .desktop-text {
    display: none;
  }

  .mobile-text {
    display: inline;
  }

  /* =========================
     SCROLL INDICATORS
  ========================= */

  .scroll-indicator {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;
    transition: opacity 0.25s ease;
  }

  /* vänster */
  .scroll-indicator.left {
    left: -15px;
  }

  /* höger */
  .scroll-indicator.right {
    right: -15px;
  }

  /* PIL KNAPP */
  .scroll-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;

    background: var(--primary);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: bold;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

    cursor: pointer;

    transition: all 0.2s ease;
  }

  .scroll-btn:active {
    transform: scale(0.9);
  }

  .scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
  }
  .filter-scroll-wrapper {
    display: none; /* göm pills på mobil */
  }
}

/* Tablet - 48rem */
@media only screen and (min-width: 48rem) {
  .filter-buttons {
    justify-content: flex-start;
    overflow: visible;
    gap: 0.75rem;
  }

  .filter-buttons button {
    font-size: 0.875rem;
    padding: 0.6rem 1.3rem;
  }

  .filter-buttons button:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-1px);
  }

  /* dölj scroll arrows på större skärmar */
  .scroll-indicator {
    display: none;
  }
  .filter-select-wrap {
    display: none;
  }
  .filter-scroll-wrapper {
    display: block; /* visa pills igen */
  }
}

/* Desktop - 64rem */
@media only screen and (min-width: 64rem) {
  .filter-buttons {
    gap: 1rem;
    width: 100%;
    padding: 1rem 0rem;
  }

  .filter-buttons button {
    font-size: 0.9rem;
    padding: 0.65rem 1.4rem;
    cursor: pointer;
    font-family: inherit;
  }

  .desktop-text {
    display: inline;
  }

  .mobile-text {
    display: none;
  }
}
/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-1362 {
    padding: var(--sectionPadding);
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: var(--secondaryLight);
  }
  #sbs-1362 .cs-topper-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  .cs-topper {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1rem 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
    position: relative;
  }
  .cs-topper:before {
    /* decorative line */
    content: "";
    /* 16px - 32px */
    width: clamp(1rem, 3vw, 2rem);
    height: 2px;
    background: var(--accentDetail);
    opacity: 1;
    position: relative;
    display: block;
  }
  #sbs-1362 .cs-intro-title {
    font-size: 1.5rem;
    line-height: 1.3em;
    text-align: center;
    font-weight: 700;
    max-width: 55ch;
    margin: 0 0 2rem 0;
    color: var(--headerColor);
  }
  #sbs-1362 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #sbs-1362 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }

  #sbs-1362 .cs-topper {
    color: var(--primary);
  }
  #sbs-1362 .cs-title {
    /* 23 characters wide including spaces */
    max-width: 26ch;
  }
  #sbs-1362 .cs-text {
    margin-bottom: 1rem;
  }
  #sbs-1362 .cs-text:last-of-type {
    margin-bottom: 1.5rem;
  }
  #sbs-1362 .cs-card-group {
    width: 100%;
    max-width: 39.375rem;
    margin: 0 0 1.5rem 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    align-items: center;
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #sbs-1362 .cs-item {
    list-style: none;
    /* 16px - 24px */
    padding: clamp(1rem, 3vw, 1.5rem);
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    background-color: var(--primary);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    box-shadow: var(--primary) 0px 0px 22px;
  }
  #sbs-1362 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
  }
  #sbs-1362 .cs-h3-icon {
    width: 2rem;
    height: auto;
    display: block;
  }
  #sbs-1362 .cs-item-text {
    font-size: 0.875rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--secondary);
  }
  #sbs-1362 .cs-ul {
    width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #sbs-1362 .cs-li {
    font-size: var(--bodyFontSize);
    list-style: none;
    line-height: 1.5em;
    width: 100%;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    /* push icon top the top so if the list item goes to two lines the icon stays at the top */
    align-items: flex-start;
    gap: 0.5rem;
  }
  #sbs-1362 .cs-icon {
    width: 1.5rem;
    height: auto;
    /* adds extra space between the icon and top of parent so it's more centered */
    margin-top: 1px;
    display: block;
  }
  #sbs-1362 .cs-image-group {
    width: 100%;
    max-width: 36.625rem;
    /* Changes to auto at desktop */
    height: 32.5rem;
    /* 32px - 48px */
    border-radius: clamp(2rem, 4vw, 3rem);
    /* clips the corners of the children around the border radius */
    overflow: hidden;
    position: relative;
    box-shadow: var(--primary) 0px 0px 42px;
  }
  #sbs-1362 .cs-background {
    width: 100%;
    height: 100%;
    /* makes it cover the parent dimensions */
    object-fit: cover;
    display: block;
  }
  #sbs-1362 .cs-background img {
    /* makes it cover the parent like a backgorund image */
    object-fit: cover;
    display: block;
  }
  #sbs-1362 .cs-box {
    text-align: left;
    width: 100%;
    max-width: 19rem;
    padding: 2rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    background-color: var(--primary);
    /* 48px - 80px */
    border: 1px solid var(--secondary);
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    position: absolute;
    /* 12px - 20px */
    right: clamp(0.75rem, 1.9vw, 1.5rem);
    /* 12px - 20px */
    bottom: clamp(0.75rem, 1.9vw, 1.5rem);
  }
  #sbs-1362 .cs-box-icon {
    width: 3.75rem;
    height: auto;
    display: block;
  }
  #sbs-1362 .cs-desc {
    font-size: 1.25rem;
    line-height: 1.2em;
    text-align: inherit;
    font-weight: 700;
    width: 100%;
    margin: 0;
    color: var(--bodyTextColorWhite);
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-1362 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  #sbs-1362 .cs-image-group {
    height: auto;
  }
}
/* Large Desktop 1600px */
@media only screen and (max-width: 430px) {
  #sbs-1362 .cs-background img {
    /* makes it cover the parent like a backgorund image */
    object-position: calc(-50px);
  }
}

/* SPECIAL MEDIA QUERY FOR THE TEXT UNDER "VARFÖR VÄLJA VÅRA VENTILATIONSLÖSNINGAR?" */

/* Show on desktop/tablet */
@media (min-width: 768px) {
  #sbs-1362 .desktop-text {
    display: block;
  }
  #sbs-1362 .mobile-text {
    display: none;
  }
}

/* Show on phones only */
@media (max-width: 767px) {
  #sbs-1362 .desktop-text {
    display: none;
  }
  #sbs-1362 .mobile-text {
    display: block;
  }
}

/*-- -------------------------- -->
<---       Meet The Team        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #meet-2337 {
    padding: var(--sectionPadding);
    padding-top: 2rem;
    overflow: hidden;
    position: relative;
    background-color: var(--secondaryLight);
  }
  #meet-2337 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
  }
  #meet-2337 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #meet-2337 .cs-title {
    max-width: 18ch;
    margin-bottom: 0;
  }
  #meet-2337 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
  }
  #meet-2337 .cs-item {
    text-align: center;
    list-style: none;
    width: 100%;
    margin: 0;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding-bottom: 1.26rem;
    display: flex;
    align-items: flex-end;
    gap: 1.26rem;
    grid-column: span 12;
    grid-row: span 1;
    position: relative;
    z-index: 1;
    transition: background-color 0.3s;
  }
  #meet-2337 .cs-item:before {
    content: "";
    width: 0%;
    height: 4px;
    background: var(--primary);
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition:
      width 0.3s,
      opacity 0.3s;
  }
  #meet-2337 .cs-item:after {
    content: "";
    width: 0%;
    height: 4px;
    background: var(--primary);
    opacity: 0;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    transition:
      width 0.3s,
      opacity 0.3s;
  }

  /* Hover borders disabled on touch; re-enabled for hover devices below */
  #meet-2337 .cs-picture {
    width: 35.7%;
    max-width: 10.63rem;
    /* Fixed height for consistent alignment (5% bigger) */
    height: clamp(8.925rem, 37.8vw, 12.6rem);
    display: block;
    flex: none;
    position: relative;
    z-index: 1;
  }
  #meet-2337 .cs-picture img {
    width: 100%;
    height: 100%;
    /* makes sure the image covers the container while maintaining aspect ratio */
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center top;
  }
  #meet-2337 .cs-flex {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    /* Let content determine height naturally (5% bigger) */
    min-height: clamp(8.925rem, 37.8vw, 12.6rem);
    /* 33.6px - 84px (5% bigger) */
    gap: clamp(1.05rem, 2.52vw, 2.625rem);
  }
  #meet-2337 .cs-info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  #meet-2337 #meet-2337 .cs-icon {
    width: 1.25rem;
    height: auto;
  }
  #meet-2337 .cs-header {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.3625rem);
    font-weight: bold;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0 0 0.25rem 0;
    color: var(--headerColor);
  }
  #meet-2337 .cs-job {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    max-width: 28.125rem;

    padding: 0;
    color: var(--bodyTextColor);
    display: block;
  }
  #meet-2337 .cs-social-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  #meet-2337 .cs-social {
    font-size: 1rem;
    text-decoration: none;
    color: #585b5d;
    padding-right: 1rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  #meet-2337 .cs-social:before {
    /* background color */
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0.05;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition:
      opacity 0.3s,
      background-color 0.3s;
  }
  #meet-2337 .cs-wrapper {
    width: 2.25rem;
    height: 2.25rem;
    margin-right: 1rem;
    border-right: 1px solid var(--secondaryLight);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  #meet-2337 .cs-icon {
    width: 1.25rem;
    height: auto;
    display: block;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #meet-2337 .cs-container {
    max-width: 80rem;
  }
  #meet-2337 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
  #meet-2337 .cs-card-group {
    overflow: hidden;
    gap: 1.25rem;
    position: relative;

    z-index: 1;
  }
  #meet-2337 .cs-item {
    padding-top: 1.32rem;
    padding-bottom: 1.32rem;
    gap: 1.32rem;
    grid-column: span 6;
    position: relative;
    z-index: 1;
  }

  #meet-2337 .cs-picture {
    width: 37.5%;
    max-width: 11.16rem;
    height: clamp(9.37rem, 39.7vw, 13.23rem);
  }
  #meet-2337 .cs-flex {
    min-height: clamp(9.37rem, 39.7vw, 13.23rem);
    gap: clamp(1.1rem, 2.65vw, 2.76rem);
  }
  /* Hover interactions moved to hover-capable media query */
}
/* Desktop - 1300px */
@media only screen and (min-width: 64rem) {
  #meet-2337 .cs-item {
    grid-column: span 4;
  }
}
/* Enable hover effects only on devices that actually support hover */
@media only screen and (min-width: 64rem) and (hover: hover) and (pointer: fine) {
  #meet-2337 .cs-item:hover:before,
  #meet-2337 .cs-item:hover:after {
    width: 100%;
    opacity: 1;
  }
}
@media only screen and (min-width: 64rem) and (hover: hover) and (pointer: fine) {
  #meet-2337 .cs-item:hover .cs-link {
    transform: translateY(0);
  }
  #meet-2337 .cs-item:hover .cs-item-text {
    opacity: 1;
    visibility: visible;
  }
  #meet-2337 .cs-item:hover .cs-icon-wrapper {
    transform: scale(0);
  }
  #meet-2337 .cs-social:hover {
    color: #fff;
  }
  #meet-2337 .cs-social:hover:before {
    opacity: 1;
    background-color: var(--primary);
  }
  #meet-2337 .cs-social:hover .cs-icon {
    filter: invert(1) brightness(1000%);
  }
}

/* Email hover icon swap (no markup changes required) */
/* Default: prepare a hidden copy icon layered over the email icon */
#meet-2337 .cs-social[href^="mailto:"] .cs-wrapper {
  position: relative;
}
#meet-2337 .cs-social[href^="mailto:"] .cs-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/img/icons/copy-icon.svg") center/1.25rem 1.25rem no-repeat;
  opacity: 0;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  pointer-events: none;
}

/* On hover/focus (desktop hover-capable): show copy icon, hide email icon */
@media only screen and (min-width: 64rem) and (hover: hover) and (pointer: fine) {
  #meet-2337 .cs-social[href^="mailto:"]:hover .cs-wrapper::after,
  #meet-2337 .cs-social[href^="mailto:"]:focus-visible .cs-wrapper::after {
    opacity: 1;
    transform: scale(1);
    filter: invert(1) brightness(1000%);
  }
  #meet-2337 .cs-social[href^="mailto:"]:hover .cs-icon,
  #meet-2337 .cs-social[href^="mailto:"]:focus-visible .cs-icon {
    opacity: 0;
  }
}
@media only screen and (max-width: 430px) {
  #meet-2337 .cs-picture {
    width: 37.5%;
    max-width: 11.16rem;
    height: clamp(9.37rem, 39.7vw, 13.23rem);
  }
  #meet-2337 .cs-picture img {
    object-fit: contain;
  }
  #meet-2337 .cs-item {
    padding-top: 21.17px;
    padding-bottom: 1.32rem;
    gap: 1.32rem;
  }
  #meet-2337 .cs-flex {
    min-height: clamp(9.37rem, 39.7vw, 13.23rem);
    gap: clamp(1.1rem, 2.65vw, 2.76rem);
  }
}
/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-1693 {
    padding: 1.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    background-color: #292c4b;
    z-index: 1;
  }
  #cta-1693 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #cta-1693 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
    gap: 1.5rem;
    position: relative;
  }

  #cta-1693 .cs-title {
    max-width: 35ch;
    margin: 0;
    color: white;
    font-size: clamp(1.8375rem, 3.6vw, 2.7625rem);
  }
  #cta-1693 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    margin: 0;
    /* 32px - 48px */
    margin-top: 5px;
    padding: 0 clamp(2rem, 4vw, 3rem);
    display: inline-block;
    position: relative;
    z-index: 1;
    background-color: white;
    color: #000;
    border-radius: 0.5rem;
  }
  #cta-1693 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #d6a64a;
    opacity: 1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
    border-radius: 0.42rem;
  }
  #cta-1693 .cs-button-solid:hover:before {
    width: 100%;
  }
  #cta-1693 .cs-button-solid:hover {
    color: #ffffff;
  }
  #cta-1693 .cs-wrapper {
    width: 100%;
    max-width: 120rem;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    /* prevents the mouse from interacting with it */
    pointer-events: none;
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 375px) {
  #cta-1693 {
    padding: 2rem 1.25rem; /* reduce side padding so content feels wider */
  }
  #cta-1693 .cs-container {
    max-width: 100%; /* ensure full available width */
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cta-1693 {
    padding: 2.5rem 2.5rem;
  }
  #cta-1693 .cs-content {
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
  }
  #cta-1693 .cs-content::after {
    left: 0;
    transform: none;
    width: 100%;
  }
  #cta-1693 .cs-graphic-1 {
    left: -7.8125rem;
  }
  #cta-1693 .cs-graphic-2 {
    right: -7.8125rem;
  }
}
@media only screen and (min-width: 64rem) {
  #cta-1693 {
    padding: 5rem 5rem;
  }
}
