/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.text-right-block {
  background-color: #E5DFDA;
}
.text-right-block .heading-link {
  font-size: 2.2rem;
  line-height: 2.9rem;
  font-weight: 500;
  display: block;
  margin: 0 0 1.6rem;
}
.text-right-block .text-grid {
  margin: 4.4rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.text-right-block .text-grid .block-link {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
  margin: 3.2rem 0 0;
  color: #000034;
  font-weight: 600;
  transition: color 0.2s ease-in-out;
}
.text-right-block .text-grid .block-link svg rect {
  transition: stroke 0.2s ease-in-out;
}
.text-right-block .text-grid .block-link:hover {
  color: #F69A09;
}
.text-right-block .text-grid .block-link:hover svg rect {
  stroke: #F69A09;
}

@media (max-width: 768px) {
  .text-right-block .heading-link {
    font-size: 1.8rem;
    line-height: 2.3rem;
    margin: 0 0 0.3rem;
  }
  .text-right-block .text-grid {
    margin: 0.85rem 0 0;
    grid-template-columns: 1fr;
  }
  .text-right-block .text-grid .block-link {
    margin: 1.8rem 0 0;
  }
  .text-right-block .text-grid .block-link svg {
    width: 2.8rem;
    height: 2.7rem;
  }
}