.opportunities {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.opportunity {
background-color: var(--light-gray);
  border-radius: 24px;
  padding: 20px 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.opportunity_descr {
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}

.opportunity_title {
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 133.333% */
}
