.about-split {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 42px);
  align-items: center;
}

.about-image-card {
  min-height: 460px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.45), transparent 28%),
    linear-gradient(135deg, var(--yellow), var(--red));
  border: 3px solid var(--black);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.about-image-card::before,
.about-image-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.about-image-card::before {
  width: 240px;
  height: 240px;
  background: rgba(255,255,255,.12);
  top: -60px;
  right: -60px;
}

.about-image-card::after {
  width: 180px;
  height: 180px;
  background: rgba(0,0,0,.08);
  bottom: -40px;
  left: -40px;
}

.about-photo-card > img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

.about-floating-logo {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: clamp(92px, 12vw, 120px);
  height: clamp(92px, 12vw, 120px);
  border-radius: 50%;
  background: white;
  padding: 0;
  border: 3px solid var(--black);
  box-shadow: 8px 8px 0 rgba(29,29,29,.2);
  z-index: 3;
  overflow: hidden;
}

.about-floating-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-split h2 {
  max-width: 720px;
}

.about-split p {
  max-width: 760px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.about-highlights span {
  background: var(--yellow);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  border: 2px solid var(--black);
}

/* Tablet */
@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-image-card,
  .about-photo-card > img {
    min-height: 420px;
  }
}

/* Mobile */
@media (max-width: 650px) {
  .about-split {
    gap: 26px;
  }

  .about-image-card {
    min-height: 340px;
    border-radius: 24px;
  }

  .about-photo-card > img {
    min-height: 340px;
  }

  .about-floating-logo {
    right: 16px;
    bottom: 16px;
    width: 86px;
    height: 86px;
    box-shadow: 5px 5px 0 rgba(29,29,29,.2);
  }

  .about-highlights {
    gap: 10px;
  }

  .about-highlights span {
    width: 100%;
    text-align: center;
  }
}