.about-renata-section {
  display: flex;
  flex-direction: row;
  position: relative;

  align-items: center;
  justify-content: center;

  padding: 4rem 2rem;

  background: url("../assets/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--color1);
}

.card-content {
  display: flex;
  flex-direction: row;

  width: 100%;
  max-width: 900px;

  align-items: center;
  gap: 2rem;
}

.card-image {
  display: flex;

  justify-content: center;
  align-items: center;

  border-radius: 1.25rem;

  filter: drop-shadow(0px 2px 16px rgba(255, 255, 255, 0.1))
    drop-shadow(4px 4px 10px rgba(255, 255, 255, 0.05));
}

.card-image img {
  height: 100%;
  border-radius: 1.25rem;
}

.card-bio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-bio h1 {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
}
.card-bio p {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
}
.card-bio span {
  color: var(--color3);
  font-size: 1.6rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .card-content {
    flex-direction: column;
  }

  .card-image img {
    width: 100%;
  }

  .card-bio h1 {
    text-align: center;
  }
}
