.about-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 13;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.about-modal--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.about-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.25);
  backdrop-filter: blur(4px);
}

.about-modal__dialog {
  position: relative;
  width: min(880px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: var(--white-100);
  border-radius: 24px;
  border: 1px solid var(--new-grey, #BCB8AE);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.18);
  padding: clamp(24px, 4vw, 48px);
  z-index: 1;
}

.about-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--new-grey, #BCB8AE);
  border-radius: 999px;
  background: var(--white-100);
  color: var(--black-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.about-modal__close svg {
  width: 18px;
  height: 18px;
}

.about-modal__body {
  display: grid;
  gap: 24px;
}

.about-modal__content .social-links {
  flex-wrap: wrap;
}

.about-modal__content .client-logos {
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .about-modal__dialog {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    border-radius: 18px;
    padding: 24px;
  }

  .about-modal__close {
    top: 12px;
    right: 12px;
  }
}
