.about-overview {
  position: relative;
}

.about-overview > .row {
  position: relative;
  z-index: 1;
}

.about-overview-text {
  color: var(--color-muted-foreground);
  font-size: 15px;
  line-height: 1.72;
  max-width: 700px;
}

.about-overview-text p {
  margin-bottom: 1rem;
  font-size: 14px;
}

.about-overview-text p:last-child {
  margin-bottom: 0;
}

.about-overview-img-wrapper {
  min-height: 360px;
}

.about-overview-img-wrapper img {
  filter: drop-shadow(var(--bs-box-shadow));
  height: auto;
  object-fit: contain;
  width: 100%;
  max-width: 520px;
  border-radius: var(--bs-border-radius-lg);
}

.about-overview-section-head {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-overview-section-head h2 {
  color: var(--color-background-dark);
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.about-overview-brand {
  background: var(--bs-white);
  border: 1.5px solid var(--bs-color-border);
  border-radius: 7px;
  box-shadow: var(--bs-box-shadow-sm);
  color: var(--color-background-dark);
  padding: clamp(1rem, 2vw, 1.35rem);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.about-overview-brand:hover {
  box-shadow: var(--bs-box-shadow);
}

.about-overview-brand-logo {
  align-items: center;
  display: flex;
  min-height: 112px;
}

.about-overview-brand-logo img {
  display: block;
  height: auto;
  max-height: 92px;
  object-fit: contain;
  width: 150px;
}

.about-overview-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: var(--color-muted-foreground);
}

.about-overview-brand sup {
  font-size: 0.68em;
}

.about-overview-metric {
  align-items: center;
  background: var(--bs-white);
  border: 1px solid rgb(1 31 61 / 10%);
  border-radius: 7px;
  box-shadow: var(--bs-box-shadow-sm);
  color: var(--color-background-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 142px;
  padding: 1.25rem 1rem;
  text-align: center;
}

.about-overview-metric i {
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.about-overview-metric strong {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.about-overview-metric span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 0.35rem;
  max-width: 120px;
}

@media (width < 992px) {
  .about-overview-img-wrapper {
    margin-inline: auto;
    max-width: 520px;
    min-height: 300px;
  }

  .about-overview-brand-logo img {
    width: 128px;
  }
}

@media (width < 768px) {
  .about-overview-img-wrapper {
    min-height: 245px;
  }

  .about-overview-brand-logo {
    border-bottom: 1px solid rgb(1 31 61 / 10%);
    border-right: 0;
    min-height: auto;
    padding: 0 0 0.85rem;
  }

  @media (width < 480px) {
    .about-overview-metric {
      min-height: 118px;
    }
  }
}
