.about {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--base-200);
}

.about-wrapper {
  width: 80%;
  margin: 0 auto;
}

.about-intro {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: flex-start;
  gap: 3rem;
  padding: 1.5rem 0 8rem 0;
  color: var(--base-500);
}

.about-title {
  max-width: 900px;
}

.about-services {
  display: flex;
  gap: 3rem;
  padding: 4rem 0 6rem;
}

.about-services-left {
  position: sticky;
  top: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: flex-start;
  flex-shrink: 0;
  gap: 3rem;
  width: min(400px, 40%);
  height: 100svh;
  padding: 3rem 0;
}

.about-services-image {
  width: 140px;
  height: 180px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 0.375rem;
}

.about-services-copy {
  max-width: 430px;
}

.about-services-right {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6rem;
  padding: 3rem 0;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.about-service-card {
  display: grid;
  align-content: space-between;
  gap: 3rem;
  aspect-ratio: 5 / 7;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.375rem;
}

.about-service-card p.md {
  max-width: 280px;
}

@media (max-width: 1000px) {
  .about-wrapper {
    width: 100%;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: auto;
    padding: 3rem 0;
  }

  .about-services {
    flex-direction: column;
  }

  .about-services-left {
    position: static;
    gap: 6rem;
    width: 100%;
    height: max-content;
  }
}

/* Was an <h5> and two <h6>s; they are the section's headings now. */
.about-title {
  font-size: clamp(3rem, 6vw, 6rem);
}

.about-services-left-header h3,
.about-services-right h3 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}
