/* "Let's Build Something Together" contact CTA - About page, Figma node 1191:4601 */

.contact-cta {
  padding: 64px 0;
}

.contact-cta__panel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 64px;
  background: var(--grey-pure-white);
  border: 1px solid var(--primary-blue);
  border-radius: 40px;
  box-shadow: 0px 4px 32px 0px rgba(0, 89, 154, 0.24); /* no matching Figma token */
  padding: 64px 80px;
  overflow: hidden;
}

/* Rectangle 9659 - diagonal wash from the top-left corner to the bottom-right corner, filled below/left of the line */
.contact-cta__panel::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: rgba(228, 234, 255, 0.48); /* no matching Figma token */
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  pointer-events: none;
}

.contact-cta__text,
.contact-cta__map {
  position: relative;
  z-index: 1;
}

.contact-cta__text {
  flex: 1 1 497px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-cta__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-cta__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--grey-pure-black);
}

.contact-cta__desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey-medium-dark-grey);
}

.contact-cta__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-cta__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--grey-medium-dark-grey);
  border-radius: 10px;
  padding: 10px 20px 10px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--grey-pure-black);
}

.contact-cta__chip img {
  width: 24px;
  height: 24px;
}

.contact-cta__address {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-cta__address img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact-cta__address-title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--grey-pure-black);
  margin-bottom: 6px;
}

.contact-cta__address-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey-medium-dark-grey);
}

.contact-cta__map {
  flex: 0 0 567px;
  width: 567px;
  height: 461px;
  border-radius: 24px;
  overflow: hidden;
  background: #d2d2d2; /* placeholder tone behind the map while it loads */
}

.contact-cta__map img,
.contact-cta__map .map-embed {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.contact-cta__map .map-embed {
  border: 0;
}

@media (max-width: 1180px) {
  .contact-cta__panel {
    gap: 32px;
    padding: 48px;
  }
}

@media (max-width: 1023px) {
  .contact-cta__panel {
    flex-direction: column;
    border-radius: 24px;
  }

  .contact-cta__map {
    width: 100%;
    height: 320px;
  }
}

@media (max-width: 639px) {
  .contact-cta {
    padding: 40px 0;
  }

  .contact-cta__panel {
    padding: 32px 24px;
  }

  .contact-cta__title {
    font-size: 28px;
  }

  .contact-cta__chips {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-cta__chip {
    justify-content: center;
  }
}
