.story-key-results {
  background: linear-gradient(90deg, #f6f7fb 7.37%, #ffffff 98.63%);
  padding: 35px 24px;
  border-left: 4px solid #3b5cde;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.story-key-results .title {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #a0a3af;
}

.story-key-results .content {
  row-gap: 30px;
  column-gap: 1px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.story-key-results .content .key-result {
  max-width: 250px;
  width: fit-content;
}

.story-key-results .content .key-result .key-value {
  font-weight: 600;
  font-size: 34px;
  line-height: 42px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #3b5cde;
  margin-bottom: 10px;
}

.story-key-results .content .key-result .key-label {
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #202437;
}

@media (max-width: 800px) {
  .story-key-results {
    border-top: 4px solid #3b5cde;
    border-left: none;
    padding: 30px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #f6f7fb 0%, #ffffff 100%);
  }

  .story-key-results .title {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 150%;
  }

  .story-key-results .content {
    flex-direction: column;
    gap: 30px;
  }

  .story-key-results .content .key-result {
    width: 100%;
  }

  .story-key-results .content .key-result .key-value {
    font-family: Manrope;
    font-weight: 600;
    font-size: 28px;
  }

  .story-key-results .content .key-result .key-label {
    font-family: Manrope;
    font-size: 13px;
    line-height: 150%;
  }
} 