.hero04-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.hero04-box > img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;

  filter: saturate(0.5);
}
.hero04-box > p {
  font-size: 1.5rem;
}
.hero04-box > p > span {
  font-weight: 600;
}

/* team */
.team04-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  justify-content: center;
  align-items: center;
}

.person-box {
  width: 100%;

  display: grid;
  grid-template-columns: calc(50% - 5rem) 50%;
  gap: 5rem;
  justify-content: center;
  align-items: center;
}

.person-box > img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;

  filter: saturate(0.5);
}

.person-box-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: start;
  align-items: start;
}

.person-box-content > p > span {
  font-weight: 600;
}

.person-box-content > p.quote {
  font-size: 2.5rem;
  font-weight: 200;
}
.person-box-content > p.quote > span {
  font-weight: 600;
  font-style: italic;
}

/* info */

.info04-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;

  text-align: center;
}
.info04-text {
  font-size: 2rem;
}
.info04-text > span {
  font-weight: 600;
}
.info04-heading {
  font-size: 3rem;
  font-weight: 600;

  width: 100%;
  padding: 2rem 0;
  border-top: 1px solid var(--clr-border);
}
.info04-brands {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 5rem;
  justify-content: center;
  align-items: center;
}
.info04-brands > img {
  height: 100px;
}

/* responsive */
@media (max-width: 768px) {
  .hero04-box > p {
    font-size: 1.2rem;
  }

  .person-box {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: start;
    align-items: start;
  }
  .person-box-content {
    gap: 0.5rem;
  }
  .person-box-content > p.quote {
    font-size: 1.5rem;
  }

  /* info */

  .info04-text {
    font-size: 1.2rem;
  }

  .info04-heading {
    font-size: 1.5rem;

    padding: 1rem 0;
  }
  .info04-brands {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  .info04-brands > img {
    height: unset;
    max-height: 150px;
    width: 100%;
    object-fit: contain;
  }
}
