.urble-section-1,
.urble-section-1b,
.urble-section-1c,
.urble-section-1d,
.urble-section-1e,
.urble-section-2,
.urble-section-2b,
.urble-section-2c,
.urble-section-2d,
.urble-section-2e,
.urble-section-2f,
.urble-section-2g,
.urble-section-3,
.urble-section-4,
.urble-section-5,
.urble-section-6,
.urble-section-7,
.urble-section-8 {
  display: flex;
  flex-direction: column;

  .urble-section-blocks {
    position: relative;
    margin: auto;
    width: 1080px;
    display: flex;
  }
}

.urble-section-1 {
  position: relative;

  .urble-section-blocks {
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: end;
    align-items: center;
    max-width: 100%;

    .urble-section_image {
      margin-top: -164px;
      margin-inline-start: -425px;
      border-bottom-left-radius: 256px;
      border-bottom-right-radius: 256px;
    }

    .urble-section-content {
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-width: 100%;

      h1 {
        width: 594px;
        max-width: 100%;
      }

      .urble-section-content-text {
        width: 401px;
        max-width: 100%;
        color: var(--_Prim-Color-dark-100-Brand);
      }
    }
  }
}

.urble-section-1b {
  z-index: 2;
  margin-top: -250px;
  margin-bottom: 0;
  background: var(--urble-linear-gradient-light-greenish);
  overflow: hidden;

  .urble-section-blocks {
    max-width: 1240px;
    margin-top: 350px;
    width: 100%;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 32px;
  }

  .urble-reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    padding: 0 16px;
  }

  .urble-reviews-heading {
    max-width: 864px;

    h2 {
      margin: 14px 0 16px;
      color: var(--_Prim-Color-dark-100-Brand);
      font-size: 96px;
      line-height: 96px;
      font-weight: 700;
    }

    p {
      max-width: 580px;
      margin: 0;
      color: var(--_Prim-Color-dark-300);
      font-size: 18px;
      line-height: 1.5;
    }
  }

  .urble-reviews-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--urble-color-surface-affirmative-default);
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    .material-symbols-rounded {
      font-size: 19px;
    }
  }

  .urble-reviews-controls {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
  }

  .urble-reviews-scroll-hint {
    margin-inline-end: 4px;
    color: var(--_Prim-Color-dark-300);
    font-size: 14px;
    font-weight: 500;
  }

  .urble-reviews-control {
    width: 46px;
    height: 46px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(30, 32, 34, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    color: var(--_Prim-Color-dark-100-Brand);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;

    &:hover:not(:disabled) {
      border-color: var(--urble-color-surface-affirmative-default);
      background: var(--urble-color-surface-affirmative-default);
      color: var(--_Prim-Color-light-000-White);
      transform: translateY(-2px);
    }

    &:focus-visible {
      outline: 3px solid rgba(34, 181, 145, 0.28);
      outline-offset: 3px;
    }

    &:disabled {
      opacity: 0.35;
      cursor: default;
    }

    .material-symbols-rounded {
      font-size: 22px;
    }
  }

  .urble-reviews-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 378px);
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    padding: 4px 16px 24px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;

    &:focus-visible {
      outline: 3px solid rgba(34, 181, 145, 0.25);
      outline-offset: 3px;
      border-radius: 24px;
    }

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .urble-review-card {
    min-height: 292px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    padding: 28px;
    border: 1px solid rgba(30, 32, 34, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 32px rgba(30, 32, 34, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;

    &:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 38px rgba(30, 32, 34, 0.12);
    }

    blockquote {
      flex: 1;
      margin: 20px 0 28px;
      color: var(--_Prim-Color-dark-100-Brand);
      font-size: 18px;
      line-height: 1.5;
      font-weight: 500;
    }

    footer {
      display: flex;
      align-items: center;
      gap: 12px;
    }
  }

  .urble-review-stars {
    color: #e2aa14;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 3px;
  }

  .urble-review-avatar {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 50%;
    background: #dff4ed;
    object-fit: cover;
  }

  .urble-review-person {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;

    strong {
      color: var(--_Prim-Color-dark-100-Brand);
      font-size: 15px;
      line-height: 1.4;
      font-weight: 700;
    }

    time {
      color: var(--_Prim-Color-dark-300);
      font-size: 13px;
    }
  }
}

.urble-reviews-section + .urble-inflation-section {
  padding-top: 40px;
}

@media (max-width: 1120px) {
  .urble-section-1b {
    .urble-section-blocks {
      gap: 32px;
      padding-bottom: 24px;
    }

    .urble-reviews-header {
      align-items: center;
      padding: 0;
    }

    .urble-reviews-heading {
      h2 {
        font-size: 32px;
        line-height: 32px;
        text-align: start;
      }
    }
  }
}

@media (max-width: 640px) {
  .urble-section-1b {
    .urble-section-blocks {
      gap: 28px;
      padding-bottom: 16px;
    }

    .urble-reviews-header {
      align-items: flex-start;
      flex-direction: column;
      gap: 20px;
    }

    .urble-reviews-heading {
      h2 {
        margin: 12px 0 14px;
        text-align: start;
      }

      p {
        font-size: 16px;
      }
    }

    .urble-reviews-controls {
      width: 100%;
    }

    .urble-reviews-scroll-hint {
      margin-inline-end: auto;
    }

    .urble-reviews-control {
      width: 42px;
      height: 42px;
    }

    .urble-reviews-rail {
      grid-auto-columns: calc(100vw - 64px);
      gap: 14px;
      margin-inline: -16px;
      width: calc(100% + 32px);
      padding-inline: 16px;
      scroll-padding-inline: 16px;
    }

    .urble-review-card {
      min-height: 280px;
      padding: 24px;
      border-radius: 24px;

      blockquote {
        margin: 18px 0 24px;
        font-size: 17px;
      }
    }
  }

  .urble-reviews-section + .urble-inflation-section {
    padding-top: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .urble-section-1b {
    .urble-reviews-rail {
      scroll-behavior: auto;
    }

    .urble-reviews-control,
    .urble-review-card {
      transition: none;
    }
  }
}

.urble-section-1c {
  .urble-section-blocks {
    max-width: 1072px;
    width: 100%;
    margin-top: 64px;
    margin-bottom: 128px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;

    .urble-section-content {
      display: flex;
      flex-direction: column;
      max-width: 700px;

      h2 {
        font-size: 48px;
        line-height: 48px;
        font-weight: 700;
        text-align: center;

        span {
          font-family: inherit;
          background: linear-gradient(43deg, #22b591 64%, #d0e02a 124%);
          background-clip: text;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
        }
      }

      .urble-section-content-text {
        font-weight: 400;
        color: var(--_Prim-Color-dark-100-Brand);
      }
    }
  }
}

.urble-section-1d {
  padding-bottom: 64px;
  background-color: var(--_Prim-Color-green-50);
  padding-top: 64px;

  .urble-section-blocks {
    max-width: 1583px;
    width: 100%;
    flex-direction: column;
    gap: 32px;
  }

  .urble-section-block-1 {
    h1 {
      width: 857px;
      max-width: 100%;
      margin: auto;
      text-align: center;
    }
  }

  .urble-section-block-2 {
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: center;
  }

  .urble-card {
    position: relative;
    overflow: hidden;
    height: 612px;
    padding: 0;
    background: transparent;

    .urble-card-content {
      height: 100%;
      margin: 42px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 16px;
      font-weight: 700;

      .urble-card-title {
        z-index: 1;
        font-size: 24px;
        line-height: 24px;
      }

      .urble-card-text {
        z-index: 1;
        color: var(--_Prim-Color-light-000-White);
      }

      .urble-link_button {
        z-index: 1;
      }

      .urble-link_button__transparent {
        background: transparent;
        border: none;
        color: var(--_Prim-Color-light-000-White);
      }
    }

    img {
      position: absolute;
    }
  }
}

.urble-section-1e {
  margin-bottom: 64px;
  padding-top: 128px;
  padding-bottom: 128px;
  position: relative;

  .urble-section-blocks {
    max-width: 1072px;
    width: 100%;
    flex-direction: row;
    gap: 32px;

    .urble-section-content {
      display: flex;
      flex-direction: column;
      width: 555px;
      max-width: 100%;

      .urble-section-content-text {
        width: 296px;
        max-width: 100%;
        color: var(--_Prim-Color-dark-100-Brand);
      }
    }

    .urble-section-image {
      position: relative;

      .urble-section-image-part-1 {
        position: absolute;
        z-index: 3;
        left: -160px;
      }
    }
  }

  .urble-section-image-part-2 {
    position: absolute;
    left: 0;
    top: 408px;
    z-index: 3;
  }

  .urble-section-image-part-3 {
    position: absolute;
    top: 242px;
    z-index: 3;
    right: 34px;
  }

  .urble-section-image-part-4 {
    position: absolute;
    width: 68px;
    height: 68px;
    z-index: 4;
    background: var(--urble-linear-gradient);
    border-radius: 600px;
    top: 386px;
    left: 64px;
  }

  .urble-section-image-part-5 {
    position: absolute;
    width: 124px;
    height: 124px;
    z-index: 4;
    background: var(--urble-linear-gradient);
    border-radius: 600px;
    top: 517px;
    left: 363px;
  }

  .urble-section-image-part-6 {
    position: absolute;
    width: 44px;
    height: 44px;
    z-index: 4;
    background: var(--urble-linear-gradient);
    border-radius: 600px;
    top: 617px;
    left: 794px;
  }

  .urble-section-image-part-7 {
    position: absolute;
    width: 68px;
    height: 68px;
    z-index: 4;
    background: var(--urble-linear-gradient);
    border-radius: 600px;
    top: 265px;
    right: 334px;
  }
}

.urble-section-2 {
  position: relative;
  z-index: 2;
  background: var(--_Prim-Color-dark-100-Brand);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 32px;
  padding-top: 192px;
  padding-bottom: 64px;

  .urble-section-blocks {
    flex-direction: row;
    justify-content: space-between;
  }

  .urble-section-block-1 {
    .urble-section-content {
      display: flex;
      flex-direction: column;
      gap: 32px;

      h1 {
        color: var(--_Prim-Color-light-000-White);
        max-width: 371px;
      }

      .urble-section-content-text {
        color: var(--_Prim-Color-light-000-White);
        max-width: 241px;
        font-size: 20px;
        font-weight: 700;
        line-height: 28px;
      }

      .urble-download {
        img {
          height: 40px;
          width: 134.86px;
        }
      }
    }
  }

  .urble-section-block-2 {
    max-width: 502px;

    ol {
      color: var(--_Prim-Color-light-000-White);
      font-size: 16px;
      line-height: 22.4px;

      display: flex;
      flex-direction: column;
      gap: 32px;
      counter-reset: list-counter;
      list-style: none;
      padding: 0;

      li {
        counter-increment: list-counter;
        margin-bottom: 10px;
        position: relative;
        padding-left: 82px;
        /* number width + padding*/
      }

      li::before {
        content: counter(list-counter) '. ';
        position: absolute;
        left: 0;
        line-height: 48px;
        font-size: 48px;
        font-weight: 700;
        color: var(--_Prim-Color-light-000-White);
      }
    }
  }
}

.urble-section-2b {
  .urble-section-blocks {
    width: 1069px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 64px;
    padding-bottom: 64px;

    h1 {
      font-size: 48px;
      line-height: 48px;
      padding: 16px;
    }
  }
}

.urble-section-2c {
  padding-top: 64px;
  padding-bottom: 64px;

  .urble-section-blocks {
    width: 1255px;
    max-width: 100%;
    height: 1470px;
    display: flex;
    flex-direction: column;

    h2 {
      font-size: 48px;
      line-height: 48px;
      font-weight: 700;
      color: var(--_Prim-Color-dark-100-Brand);
    }

    h3 {
      font-family: Quicksand;
      font-size: 30px;
      line-height: 30px;
      font-weight: 700;
      color: var(--_Prim-Color-dark-100-Brand);
    }

    .urble-section-block-1 {
      position: relative;
    }

    .urble-card {
      position: absolute;
      box-shadow: var(--urble-box-shadow);
    }

    .urble-card-1 {
      left: 16%;
      width: 344px;
      height: fit-content;
      background: var(--urble-color-ab);
    }

    .urble-card-2 {
      right: 0;
      width: 309px;
      height: 552px;
      background: var(--urble-color-surface-brand-low-emphasis);

      h3 {
        margin-top: 128px;
        text-align: center;
      }

      .urble-card-image-1 {
        position: absolute;
        left: -32px;
        box-shadow: var(--urble-box-shadow);
        border-radius: 8px;
      }

      .urble-card-image-2 {
        position: absolute;
        top: 264px;
        left: -32px;
        border-radius: 8px;
        box-shadow: var(--urble-box-shadow);
      }

      .urble-card-image-3 {
        position: absolute;
        top: 236px;
        left: -81px;
      }

      .urble-card-image-4 {
        position: absolute;
        top: 64px;
        left: 160px;
      }
    }

    .urble-card-3 {
      width: 344px;
      height: 330px;
      left: 10%;
      top: 210px;

      .urble-card-image {
        position: absolute;
        left: -64px;
        bottom: 16px;
      }
    }

    .urble-card-4 {
      width: 344px;
      height: fit-content;
      right: 10%;
      top: 632px;
      background: var(--urble-color-surface-affirmative-default);

      h2 {
        color: var(--_Prim-Color-light-000-White);
        text-align: end;
      }
    }

    .urble-card-5 {
      height: 599px;
      width: 344px;
      top: 600px;

      .urble-card-image {
        bottom: 0;
        left: -28px;
        width: 393px;
        height: 426px;
        object-fit: contain;
        position: absolute;
      }
    }

    .urble-card-6 {
      min-width: 393px;
      height: 476px;
      background: var(--urble-color-surface-brand-low-emphasis);
      text-align: end;
      left: 35%;
      top: 900px;

      .urble-card-image {
        bottom: -64px;
        left: -16px;
        position: absolute;
      }
    }

    .urble-card-7 {
      top: 900px;
      right: 0;
      background: var(--urble-color-surface-affirmative-low-emphasis);
      height: fit-content;
      width: 344px;

      h3 {
        text-align: start;
      }

      .urble-card-image {
        overflow: visible;
        width: 393px;
        margin-left: -32px;
      }
    }

    .urble-app-home-img {
      width: 416px;
      margin: auto;
      z-index: 8;
      margin-top: 80px;
    }
  }
}

.urble-section-2d {
  padding-bottom: 96px;

  .urble-section-blocks {
    width: 1080px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;

    h1 {
      margin: auto;
      text-align: center;
    }

    .urble-cards {
      display: flex;
      flex-direction: row;
      gap: 32px;
      justify-content: space-between;

      .urble-card {
        width: 344px;
        height: 500px;
        background: var(--urble-color-surface-affirmative-low-emphasis);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;

        h1 {
          margin: 0;
          text-align: left;
          color: var(--urble-linear-gradient-light-yellowish);
          opacity: 0.25;
        }

        img {
          margin: auto;
        }

        h2 {
          text-align: center;
        }

        .urble-get-app-wrapper {
          position: relative;
          align-self: center;
        }

        /* The illustration keeps its full canvas, but its top band is now empty artwork —
           the real store badges and the QR code are laid over exactly that band. */
        .urble-download {
          position: absolute;
          top: 0;
          left: 50%;
          z-index: 2;
          transform: translateX(-50%);
          align-items: center;
          column-gap: 16px;
          row-gap: 0;
          grid-template: 'badges qr' 112px / 135px 112px;
          /* The component's own `max-width: 100%` measures against the illustration below it,
             which is narrower than badges + QR: the box would be clamped to the illustration
             and the grid would spill out to the right, so the block reads off-centre. */
          max-width: none;

          img {
            margin: 0;
          }

          .urble-download__badges > a > img {
            width: 135px !important;
            height: 40px !important;
          }

          .urble-download-qr__image {
            width: 96px !important;
            height: 96px !important;
          }

          /* The card's own "App herunterladen" heading already says this. */
          .urble-download-qr__title {
            display: none;
          }
        }

        /* Scaled down and pushed past the badge + QR block, so the two read as separate
           blocks — the image's own transparent top band is not enough of a gap. */
        .urble-get-the-app-img {
          position: relative;
          z-index: 1;
          width: 224px;
          margin-top: 32px;
        }

        /* Follows the illustration down, and small enough to still clear the heading below. */
        .urble-app-home-img {
          position: absolute;
          top: 144px;
          right: -16px;
          width: 72px;
        }
      }
    }
  }
}

.urble-section-2e {
  background: var(--_Prim-Color-dark-100-Brand);
  padding-top: 64px;
  padding-bottom: 64px;

  .urble-section-blocks {
    width: 612px;
    max-width: 100%;

    .urble-section-content {
      display: flex;
      flex-direction: column;
      gap: 32px;

      h1 {
        color: var(--_Prim-Color-light-000-White);
        text-align: center;
      }

      .urble-section-content-text {
        color: var(--_Prim-Color-light-000-White);
        width: 241px;
        margin: auto;
      }

      .urble-buttons {
        display: flex;
        flex-direction: row;
        gap: 32px;
        justify-content: center;

        span {
          font-weight: 700;
        }

        .urble-button-1 {
          background: var(--_Prim-Color-light-000-White);
          color: var(--_Prim-Color-dark-100-Brand);
        }

        .urble-button-2 {
          background: var(--urble-linear-gradient);
          color: var(--_Prim-Color-light-000-White);
        }
      }
    }
  }
}

.urble-section-2f {
  padding-top: 64px;
  padding-bottom: 64px;

  .urble-section-blocks {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 1054px;
    max-width: 100%;

    .urble-section-content {
      width: 638px;
      max-width: 100%;
      display: flex;
      flex-direction: column;
      gap: 16px;

      .urble-section-content-text {
        font-family: Quicksand;
        font-weight: 700;
        font-size: 30px;
        line-height: 30px;
        color: var(--_Prim-Color-dark-100-Brand);
        margin-bottom: 16px;
        margin-top: 16px;
      }

      img {
        max-width: 134px;
      }
    }

    .urble-section-content-image {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 32px;

      .urble-card {
        background: var(--_Prim-Color-dark-100-Brand);
        width: 305px;
        height: 200px;

        img {
          width: 200px;
          margin: auto;
        }

        h3 {
          font-family: Roboto;
          font-size: 20px;
          font-weight: 700;
          line-height: 28px;
          text-align: center;
          color: var(--_Prim-Color-light-000-White);
        }
      }
    }
  }
}

.urble-section-2g {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 32px;
  padding-top: 64px;
  padding-bottom: 128px;
  margin: auto;

  .urble-section-blocks {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 1080px;
    max-width: 100%;
    gap: 30px;
  }

  .urble-section-block-1,
  .urble-section-block-2 {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
  }

  .urble-section-block-1 {
    max-width: 401px;

    .urble-section-content {
      flex-direction: column;
      justify-content: center;

      .urble-section-content-text {
        width: 416px;
        max-width: 100%;
      }
    }
  }

  .urble-section-block-2 {
    img {
      width: 362px;
    }
  }

  .urble-mobile {
    position: absolute;
    right: 285px;
    top: 64px;
    min-width: 241px;
    overflow: hidden;

    img {
      position: absolute;
    }

    .urble-mobile-header {
      z-index: 2;
    }

    .urble-mobile-footer {
      z-index: 2;
      bottom: 0;
      left: -24px;
    }
  }
}

.urble-section-3 {
  position: relative;
  z-index: 2;
  background: var(--_Prim-Color-green-50);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 32px;
  padding-top: 64px;
  padding-bottom: 64px;
  margin: auto;

  .urble-section-blocks {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 30px;
  }

  h1 {
    text-align: end;
    max-width: 340px;
  }

  .urble-section-block-1,
  .urble-section-block-2 {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
  }

  .urble-fur-alle-image {
    position: absolute;
    z-index: -1;
    bottom: -64px;
    left: -270px;
  }
}

.urble-section-4 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 32px;
  padding-top: 64px;
  padding-bottom: 64px;
  margin: auto;

  .urble-section-blocks {
    justify-content: space-between;

    .urble-section-block-1 {
      align-content: center;
    }
  }

  .urble-section-content {
    max-width: 418px;
    display: flex;
    flex-direction: column;
  }

  .urble-card {
    min-width: 500px;
    box-shadow: var(--urble-box-shadow);
  }
}

.urble-section-5 {
  padding-bottom: 64px;

  .urble-section-block-1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;

    img {
      margin-inline-start: -426px;
    }
  }

  .urble-section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 528px;
  }
}

.urble-section-6 {
  position: relative;
  z-index: 2;
  background: var(--_Prim-Color-green-50);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 32px;
  padding-top: 64px;
  padding-bottom: 64px;
  margin: auto;

  .urble-section-blocks {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 30px;
  }

  .urble-section-block-1,
  .urble-section-block-2 {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
  }

  .urble-section-block-1 {
    max-width: 401px;

    .urble-section-content {
      flex-direction: column;
      justify-content: center;
    }
  }

  .urble-mobile {
    position: absolute;
    right: 380px;
    top: 64px;
  }
}

.urble-section-7 {
  height: 642px;

  .urble-section-content {
    display: flex;
    flex-direction: column;
    max-width: 378px;
    gap: 32px;
    padding-left: 96px;

    h1 {
      color: var(--_Prim-Color-light-000-White);
    }
  }

  img {
    position: absolute;
    top: -190px;
    right: -412px;
    z-index: -2;
    /* -2 is needed otherwise text underline will be hidden behind */
  }

  .urble-mobile {
    position: absolute;
    right: 64px;
    top: -96px;
  }
}

.urble-section-8 {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding-top: 64px;
  padding-bottom: 64px;
  margin: auto;

  img {
    position: absolute;
    left: 160px;
  }

  .urble-section-block-1 {
    margin: auto;

    .urble-card {
      background: var(--_Prim-Color-light-100);
      width: 307px;
    }
  }

  .urble-section-block-2 {
    .urble-card {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 528px;

      background: var(--_Prim-Color-dark-100-Brand);
      color: var(--_Prim-Color-light-000-White);
      gap: 24px;
      padding: 48px;

      h2 {
        color: var(--_Prim-Color-light-000-White);
        font-size: 48px;
        font-weight: 700;
      }

      .urble-card-text {
        color: var(--_Prim-Color-light-000-White);
      }

      .urble-link_button {
        background: var(--_Prim-Color-light-000-White);
        color: var(--_Prim-Color-dark-100-Brand);
      }
    }
  }
}

