.homepage {
  padding: 21rem 0 8rem;
}

.homepage-intro {
  display: grid;
  font-size: 2.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  line-height: 1.28;
}

.homepage-intro__column { min-width: 0; }
.homepage-intro p + p { margin-top: 3.2rem; }

.homepage-cards {
  display: grid;
  gap: 7rem;
  margin-top: 10rem;
}

.homepage-item { margin: 0; }

.homepage-card {
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 62.5rem;
  overflow: hidden;
  padding: 4.5rem 3.5rem;
  position: relative;
  text-decoration: none;
  transform-origin: center center;
}

.homepage-card:focus,
.homepage-card:hover {
  color: #000;
  text-decoration: none;
}

.homepage-card--yellow { background: #fffd00; }
.homepage-card--green { background: #35ed98; }

.homepage-card--yellow::after {
  border-bottom: 7rem solid #000;
  border-left: 7rem solid transparent;
  content: "";
  height: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
}

.homepage-card__title {
  font-size: clamp(6rem, 8.2vw, 11rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.2;
}

.homepage-item__description {
  font-size: 2.2rem;
  line-height: 1.35;
  margin-top: 2.7rem;
}

@media (min-width: 992px) {
  .homepage-intro__column:first-child:empty + .homepage-intro__column { grid-column: 2; }
}

@media (max-width: 991px) {
  .homepage { padding-top: 16rem; }
  .homepage-card { min-height: 50rem; }
}

@media (max-width: 767px) {
  .homepage { padding: 12rem 0 4rem; }
  .homepage-intro { display: block; font-size: 2.5rem; line-height: 1.34; }
  .homepage-intro__column:empty { display: none; }
  .homepage-intro__column + .homepage-intro__column { margin-top: 3rem; }
  .homepage-intro p + p { margin-top: 3.6rem; }
  .homepage-cards { gap: 5rem; margin-top: 7rem; }
  .homepage-card { min-height: 0; padding: 2rem; }
  .homepage-card:not(.homepage-card--image) { aspect-ratio: 1 / .78; }
  .homepage-card__title { font-size: clamp(4.8rem, 14vw, 6.6rem); line-height: 1.12; }
  .homepage-card--yellow::after { border-bottom-width: 4rem; border-left-width: 4rem; }
  .homepage-item__description { font-size: 2.1rem; margin-top: 1.8rem; }
}
