/* sections/students-say.css (Figma: What our students say) */

.c-students {
  padding: 0;
  background: #fff;
}

.c-students__split {
  display: grid;
  grid-template-columns: 1fr;
}

.c-students__left {
  background: var(--color-gray-50); /* Figma: Neutral Tonos/Gray 5 */
}

.c-students__copy {
  padding: 80px 0;
}

.c-students__title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: var(--fw-900);
  font-size: 47.77px; /* Figma */
  line-height: 49px;  /* Figma */
  letter-spacing: var(--ls-h1);
  color: var(--color-blue);
  text-transform: none;
}

.c-students__subtitle {
  margin: 18px 0 0;
  font-family: var(--font-sans);
  font-weight: var(--fw-700);
  font-size: 18px; /* Figma */
  line-height: 1.1;
  color: var(--color-blue);
}

.c-students__body {
  margin: 18px 0 0;
  font-family: var(--font-sans);
  font-size: var(--fs-14);
  line-height: var(--lh-22);
  color: var(--color-black);
  max-width: 46ch;
}

.c-students__media {
  width: 100%;
  min-height: 420px;
  position: relative;
  overflow: visible; /* pessoa ultrapassa o quadrado */
}

.c-students__orange {
  position: absolute;
  inset: 0;
  background: var(--color-orange);
  z-index: 0;
}

.c-students__rays {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.c-students__person {
  position: absolute;
  right: 0;
  height: 110%;
  bottom: 0;
  width: auto;
  max-width: 130%;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 1024px) {
  .c-students__split {
    grid-template-columns: 1fr 1fr;
  }

  .c-students__copy {
    padding: 120px 0 120px;
  }

  .c-students__media {
    min-height: 501px; /* Figma rectangle height ~501 */
  }

  .c-students__right {
    display: block;
  }

  .c-students__person {
    height: 660px;
    /* left: 0px; */
  }
}

