.op-info-card {
  display: grid;
  gap: 24px 16px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;

  &-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  &-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  &-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  &-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  &-label {
    font-size: 20;
    font-weight: 600;
    color: #999999;
    line-height: 20px;
  }

  &-value {
    font-size: 18px;
    color: #333333;
    line-height: 22px;
    font-weight: 400;
  }
}
