.about {
  padding: var(--section-padding-y-after-hero) 0 var(--section-padding-y);
  background-color: var(--bg-dark);
}

.about__grid {
  align-items: center;
}

.about__content {
  padding-right: 40px;
}

.about__title {
  margin-bottom: 32px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.about__text {
  margin-bottom: 40px;
}

.about__text p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--font-body-weight);
  line-height: 1.5;
  color: var(--text-primary);
}

.about__text p + p {
  margin-top: 16px;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about__feature {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 16px 24px 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about__feature:nth-child(even) {
  padding-right: 0;
  padding-left: 24px;
}

.about__feature-num {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--font-body-weight);
  color: var(--accent);
}

.about__feature-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--font-body-weight);
  line-height: 1.3;
  color: var(--text-primary);
}

.about__visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}
