/* Section: Celebre CTA */

.celebre-cta-section {
  margin-top: calc(-1 * var(--space-xxl));
}

.celebre-cta {
  --celebre-cta-bg-position: right 18%;

  position: relative;
  width: 100%;
  min-height: 336px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-bottom: 0;

  background-color: var(--off-white);
}

.celebre-cta__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--celebre-cta-bg-position);
}

.celebre-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(251, 251, 251, 1) 0%,
    rgba(251, 251, 251, 0.98) 28%,
    rgba(251, 251, 251, 0.94) 45%,
    rgba(251, 251, 251, 0.72) 58%,
    rgba(251, 251, 251, 0.25) 72%,
    rgba(251, 251, 251, 0) 85%
  );
}

.celebre-cta-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: var(--space-xl) 6vw;
  min-width: 0;
}

.celebre-cta-content {
  width: min(460px, 100%);
  max-width: 100%;
  text-align: right;
}

.celebre-cta-title {
  font-family: var(--font-display);
  font-size: var(--font-size-section);
  line-height: 1.4;
  font-weight: 400;
  color: var(--dark);
  margin: 0 0 var(--space-md) 0;
  padding-top: 56px;
  overflow-wrap: break-word;
}

.celebre-cta-title-hand {
  font-family: var(--font-hand);
  font-size: var(--font-size-display);
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
  vertical-align: -20px;
  padding-left: 5px;
}

.celebre-cta-text {
  font-size: var(--font-size-sm);
  line-height: 1.75;
  color: var(--dark);
  margin: 0;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .celebre-cta-section {
    overflow: hidden;
    width: 100%;
  }

  .celebre-cta {
    --celebre-cta-bg-position: calc(100% + 120px) 12%;

    min-height: 43.4vh;
    align-items: flex-end;
  }

  .celebre-cta::before {
    background: linear-gradient(
      to top,
      rgba(251, 251, 251, 1) 0%,
      rgba(251, 251, 251, 0.97) 32%,
      rgba(251, 251, 251, 0.92) 48%,
      rgba(251, 251, 251, 0.55) 62%,
      rgba(251, 251, 251, 0) 78%
    );
  }

  .celebre-cta-inner {
    padding: var(--space-md) var(--container-padding) var(--space-lg);
  }

  .celebre-cta-content {
    width: 100%;
    text-align: center;
  }

  .celebre-cta-title {
    font-size: var(--font-size-h6);
    padding-top: 210px;
  }

  .celebre-cta-title-hand {
    font-size: var(--font-size-hand-md);
  }
}
