/* 01 - About Hero */

.about-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient( circle at 88% 15%, rgba(36, 87, 166, 0.12), transparent 34% ), #ffffff;
}

.about-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.about-heading {
  max-width: 52rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.about-copy {
  max-width: 46rem;
  line-height: 1.7;
}

.about-copy-secondary {
  max-width: 44rem;
  line-height: 1.7;
}

.about-actions .btn {
  white-space: nowrap;
}

.about-portrait-wrapper {
  max-width: 28rem;
}

.about-portrait {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Add optional portrait decoration */

.about-portrait-wrapper::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  right: -1.25rem;
  width: 70%;
  height: 70%;
  border-radius: 1.5rem;
  background-color: rgba(36, 87, 166, 0.1);
  z-index: -1;
}

/* Add responsive CSS */

@media (max-width: 991.98px) {
  .about-portrait-wrapper {
    max-width: 32rem;
  }
}

@media (max-width: 575.98px) {
  .about-heading {
    font-size: 2.35rem;
  }
}

@media (max-width: 575.98px) {
  .about-copy {
    font-size: 1.05rem;
  }
}

@media (max-width: 575.98px) {
  .about-actions .btn {
    width: 100%;
  }
}

/* 02 - Professional perspective */

.about-perspective-section {
  background-color: var(--site-light);
}

.about-perspective-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.about-perspective-heading {
  max-width: 27rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.about-perspective-lead {
  max-width: 44rem;
  color: var(--site-dark);
  line-height: 1.65;
}

.about-perspective-copy {
  max-width: 44rem;
  line-height: 1.7;
}

/* Add the optional accent line */

@media (min-width: 992px) {
  .about-perspective-heading-column {
    padding-left: 1.5rem;
    border-left: 4px solid #2457a6;
  }
}

