.about {
  padding: 0 0 100px;
}

.about__wrapper {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.about__text h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.8px;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.about__text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: var(--blue);
}

.about__text p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 16px;
}

.about__text b {
  color: var(--navy);
  font-weight: 700;
}

.about__illustration img {
  width: 100%;
  height: auto;
  max-width: 380px;
  margin: 0 auto;
}
